
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-gold: #D4AF37;
    --gold-light: #F4D03F;
    --deep-navy: #0A1128;
    --dark-blue: #1A1F3A;
    --emerald-green: #10B981;
    --accent-red: #EF4444;
    --glass-bg: rgba(26, 31, 58, 0.85);
    --glass-border: rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #E5E7EB;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0F172A 50%, var(--dark-blue) 100%);
}

/* Three.js Canvas */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Video Background Container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.85) 100%);
    z-index: 1;
}

/* Content Layer */
.content-layer {
    position: relative;
    z-index: 10;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 0.7rem 0;
    background: rgba(10, 17, 40, 0.98);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    animation: logo-glow 3s ease-in-out infinite;
    letter-spacing: 1px;
}

.crown-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px var(--royal-gold));
    animation: float 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-gold), var(--gold-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--royal-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 3rem 5rem;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.hero-content {
    max-width: 1600px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1.2s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--royal-gold);
    border-radius: 50px;
    color: var(--royal-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--royal-gold) 40%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #B8BCC8;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald-green);
    font-family: 'Orbitron', sans-serif;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-top: 0.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--gold-light) 100%);
    color: #000000;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--royal-gold);
    border: 2px solid var(--royal-gold);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

/* 3D Visual Container */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-3d-canvas {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.visual-overlay-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1642790551116-18e150f248e5?w=800&h=800&fit=crop') center/cover;
    border-radius: 30px;
    opacity: 0.12;
    z-index: 0;
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.3);
}

/* Section Styles */
section {
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--royal-gold);
    border-radius: 50px;
    color: var(--royal-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #9CA3AF;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
    
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-15px);
    border-color: var(--royal-gold);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.3);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Video Section */
.video-showcase {
    position: relative;
    margin: 5rem 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.video-showcase video {
    width: 100%;
    height: auto;
    display: block;
}

.video-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: opacity 0.3s ease;
}

.video-showcase:hover .video-showcase-overlay {
    opacity: 1;
}

/* About Section with Image */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(212, 175, 55, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #D1D5DB;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(30px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-gold), var(--emerald-green));
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: #9CA3AF;
    font-size: 1rem;
}

/* Features Section with Images */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    position: relative;
    perspective: 1000px;
}

.feature-image {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-description {
    color: #9CA3AF;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonial Section with Video */
.testimonial-section {
    background: var(--glass-bg);
    border-radius: 30px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--royal-gold);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--royal-gold);
}

/* Membership Section */
.membership-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 3px solid var(--royal-gold);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(30px);
    box-shadow: 0 30px 100px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.membership-content {
    position: relative;
    z-index: 1;
}

.membership-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.membership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--royal-gold);
    text-align: center;
    margin: 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
}

.price-label {
    text-align: center;
    color: #9CA3AF;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
    margin: 2.5rem 0;
}

.benefits-list li {
    padding: 1.3rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--emerald-green);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.benefits-list li::before {
    content: '✓';
    color: var(--emerald-green);
    font-weight: 900;
    font-size: 1.5rem;
}

/* Income Section with Images */
.income-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.income-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(30px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.income-card-image {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.income-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.income-percentage {
    font-size: 4rem;
    font-weight: 900;
    color: var(--emerald-green);
    margin: 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
}

.income-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.income-description {
    color: #9CA3AF;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Binary Plan Section */
.binary-structure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.binary-side h3 {
    font-size: 2rem;
    color: var(--royal-gold);
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.level-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.8rem;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(30px);
    transition: all 0.3s ease;
}

.level-item:hover {
    border-color: var(--royal-gold);
    transform: translateX(15px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.level-name {
    font-weight: 700;
    color: #E5E7EB;
    font-size: 1.1rem;
}

.level-percentage {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--emerald-green);
    font-family: 'Orbitron', sans-serif;
}

.binary-note {
    grid-column: 1 / -1;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(16, 185, 129, 0.9));
    
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Disclaimer */
.disclaimer {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer p {
    color: #D1D5DB;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: rgba(10, 17, 40, 0.98);
    border-top: 2px solid var(--glass-border);
    padding: 4rem 3rem 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--royal-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    display: block;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--royal-gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6B7280;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--royal-gold));
    }
    50% {
        filter: drop-shadow(0 0 25px var(--royal-gold));
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-rotate {
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 1s ease;
}

.reveal-rotate.visible {
    opacity: 1;
    transform: rotateY(0deg);
}

/* Smooth transitions for all interactive elements */
.glass-card,
.feature-card,
.stat-card,
.income-card,
.level-item,
.gallery-item,
.btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover states */
.glass-card:hover {
    box-shadow: 0 30px 100px rgba(212, 175, 55, 0.4);
}

.feature-icon {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Glow effect on hover */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

.btn-primary:hover {
    animation: glow 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .binary-structure {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .income-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--royal-gold);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 100px;
    height: 100px;
    border: 5px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--royal-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}