:root {
    --opera-red: #FF1B2D;
    --opera-dark: #0A0A0A;
    --opera-secondary: #1A1A1A;
    --opera-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-accent: #FF4757;
    --gradient-opera: linear-gradient(135deg, #FF1B2D, #FF4757);
    --gradient-dark: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    --glow-red: 0 0 30px rgba(255, 27, 45, 0.6);
    --glow-intense: 0 0 50px rgba(255, 27, 45, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --energy-glow: 0 0 40px rgba(255, 71, 87, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--opera-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background with Energy Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 27, 45, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(255, 71, 87, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 27, 45, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.8));
    z-index: -2;
    pointer-events: none;
    animation: energyPulse 8s ease-in-out infinite;
}

/* Animated Energy Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(255, 27, 45, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 27, 45, 0.25), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    z-index: -1;
    pointer-events: none;
    animation: particleFloat 15s linear infinite;
    opacity: 0.3;
}

@keyframes energyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-100px) translateX(50px); }
    66% { transform: translateY(-200px) translateX(-30px); }
    100% { transform: translateY(-300px) translateX(20px); }
}

/* Header with Gaming Aesthetic */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    background: var(--opera-glass);
    backdrop-filter: blur(25px);
    border: 2px solid var(--glass-border);
    border-top: none;
    box-shadow: var(--energy-glow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.header:hover::before {
    left: 100%;
}

.header:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(255, 27, 45, 0.6);
    border-color: rgba(255, 27, 45, 0.3);
}

.logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: -0.2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.opera-icon {
    width: 90px;
    height: 90px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 27, 45, 0.4)) opacity(0.9);
    margin-right: -1rem;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(255, 27, 45, 0.8);
}

.logo:hover .opera-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 27, 45, 0.8)) opacity(1);
}

.logo .gx-text {
    color: #FF1B2D;
    text-shadow: 
        0 0 3px rgba(255, 27, 45, 0.2),
        0 0 6px rgba(255, 27, 45, 0.15),
        0 0 9px rgba(255, 27, 45, 0.1);
    margin-left: 0.2rem;
    filter: drop-shadow(0 0 4px rgba(255, 27, 45, 0.15));
    animation: gxGlow 3s ease-in-out infinite alternate;
}

.logo:hover .gx-text {
    text-shadow: 
        0 0 5px rgba(255, 27, 45, 0.3),
        0 0 8px rgba(255, 27, 45, 0.2),
        0 0 12px rgba(255, 27, 45, 0.15);
    filter: drop-shadow(0 0 6px rgba(255, 27, 45, 0.25));
    animation-duration: 1.5s;
}

@keyframes gxGlow {
    0% {
        text-shadow: 
            0 0 3px rgba(255, 27, 45, 0.2),
            0 0 6px rgba(255, 27, 45, 0.15),
            0 0 9px rgba(255, 27, 45, 0.1);
    }
    100% {
        text-shadow: 
            0 0 4px rgba(255, 27, 45, 0.25),
            0 0 7px rgba(255, 27, 45, 0.18),
            0 0 10px rgba(255, 27, 45, 0.12);
    }
}

.btn-download-header {
    background: var(--gradient-opera);
    border: 2px solid var(--opera-red);
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.4s ease;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: var(--energy-glow);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.btn-download-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-download-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-intense);
    color: white;
    border-color: #FF4757;
}

.btn-download-header i {
    font-size: 1.1rem;
    order: -1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.btn-download-header:hover::before {
    left: 100%;
}

/* Hero Section with Cinematic Feel */
.main-content {
    padding: 120px 0 3rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-section {
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(2.8rem, 8vw, 5rem);
    background: var(--gradient-opera);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 27, 45, 0.5);
    filter: drop-shadow(0 0 30px rgba(255, 71, 87, 0.3));
    animation: titleGlow 4s ease-in-out infinite;
    position: relative;
    white-space: nowrap;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 71, 87, 0.3)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 27, 45, 0.6)); }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    line-height: 1.4;
}

/* Stats with Energy Design */
.stats-section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.stats-container {
    background: var(--opera-glass);
    backdrop-filter: blur(25px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--energy-glow);
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-opera);
    animation: energyFlow 3s ease-in-out infinite;
}

@keyframes energyFlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 3.5rem;
    background: var(--gradient-opera);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 30px rgba(255, 27, 45, 0.6);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FOMO Banner with Intense Energy */
.fomo-banner {
    background: var(--gradient-opera);
    padding: 1.2rem;
    text-align: center;
    margin: 0 0 2rem 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-intense);
    animation: none;
}

.fomo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: bannerSweep 4s ease-in-out infinite;
}

@keyframes bannerSweep {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.fomo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Features with Gaming Cards Design */
.features-section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.features-container {
    background: var(--opera-glass);
    backdrop-filter: blur(25px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    gap: 1rem;
    box-shadow: var(--energy-glow);
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.4s ease;
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-opera);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.feature-item:hover {
    background: rgba(255, 27, 45, 0.1);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 27, 45, 0.3);
    border-color: var(--opera-red);
}

.feature-item:hover::before {
    transform: translateX(0);
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--gradient-opera);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 27, 45, 0.5));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 27, 45, 0.8));
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Download Section with Epic Button */
.download-section {
    text-align: center;
    padding: 3rem 0 2rem 0;
}

.btn-download-main {
    background: var(--gradient-opera);
    border: 3px solid var(--opera-red);
    padding: 2rem 4rem;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glow-intense);
    position: relative;
    overflow: hidden;
}

.btn-download-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-download-main:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 27, 45, 0.8);
    color: white;
    border-color: #FF4757;
}

.btn-download-main:hover::before {
    left: 100%;
}

.btn-download-main i {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.join-text {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-top: 2rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.join-number {
    color: var(--text-accent);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 71, 87, 0.6);
}

/* Testimonials with Gaming Cards */
.testimonials-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.testimonials-container {
    background: var(--opera-glass);
    backdrop-filter: blur(25px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    gap: 1rem;
    box-shadow: var(--energy-glow);
}

.testimonial-card {
    flex: 1;
    text-align: center;
    padding: 1.8rem 1.2rem;
    transition: all 0.4s ease;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-opera);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 27, 45, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 27, 45, 0.2);
    border-color: var(--opera-red);
}

.testimonial-card:hover::before {
    transform: translateX(0);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: url('https://images.pexels.com/photos/220453/pexels-photo-220453.jpeg?auto=compress&cs=tinysrgb&w=120&h=120&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 27, 45, 0.4);
    border: 3px solid var(--opera-red);
    position: relative;
    overflow: hidden;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 27, 45, 0.2) 50%, transparent 70%);
    animation: avatarShine 3s ease-in-out infinite;
}

@keyframes avatarShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 600;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: 'Orbitron', monospace;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Social Media with Gaming Style */
.social-section {
    padding: 2rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s ease;
    background: var(--opera-glass);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-opera);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--opera-red);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(255, 27, 45, 0.4);
    background: rgba(255, 27, 45, 0.1);
}

.social-icon:hover::before {
    transform: translateX(0);
}

/* Footer with Gaming Aesthetic */
.footer {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    border-top: 2px solid var(--glass-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Email Popup Enhanced */
.email-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-container {
    background: var(--opera-glass);
    backdrop-filter: blur(25px);
    border: 3px solid var(--opera-red);
    border-radius: 25px;
    padding: 3rem;
    max-width: 32rem;
    width: 90%;
    box-shadow: 0 0 40px rgba(255, 27, 45, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 27, 45, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 71, 87, 0.02) 0%, transparent 50%),
        var(--opera-glass);
}

.popup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-opera);
    animation: energyFlow 3s ease-in-out infinite;
}

.popup-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    background: var(--gradient-opera);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 27, 45, 0.5);
    text-align: center;
    white-space: nowrap;
}

.popup-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 500;
}

.email-input-container {
    position: relative;
    margin-bottom: 2rem;
}

.email-input-container i {
    position: absolute;
    left: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 1;
}

.email-input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.2rem;
    background: var(--opera-glass);
    border: 2px solid rgba(255, 27, 45, 0.4);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 15px rgba(255, 27, 45, 0.2);
}

.email-input:focus {
    outline: none;
    border-color: var(--opera-red);
    box-shadow: 0 0 30px rgba(255, 27, 45, 0.6);
    background: rgba(255, 27, 45, 0.05);
}

.email-input-container:has(.email-input:focus) i {
    color: var(--opera-red);
    filter: drop-shadow(0 0 8px rgba(255, 27, 45, 0.8));
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-opera);
    padding: 1.3rem 2rem;
    border-radius: 12px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    backdrop-filter: blur(15px);
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 27, 45, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.btn-submit i {
    font-size: 1.4rem;
    order: 2;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 27, 45, 0.4);
}

.social-proof {
    color: #00D4AA;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.social-proof i {
    color: #00D4AA;
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.4));
}

.btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    color: var(--opera-red);
    background: rgba(255, 27, 45, 0.1);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
        line-height: 1;
    }
    
    .features-container,
    .testimonials-container,
    .stats-container {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .feature-item:not(:last-child),
    .testimonial-card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .btn-download-header {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }

    .btn-download-main {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .popup-container {
        padding: 2rem;
        margin: 1rem;
    }
}