/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #070f78;
    --electric-blue: #1a237e;
    --bright-navy: #3f51b5;
    --light-navy: #e8eaf6;
    --vibrant-cyan: #00bcd4;
    --bright-purple: #9c27b0;
    --accent-orange: #ff9800;
    --accent-green: #4caf50;
    --accent-pink: #e91e63;
    --accent-gold: #ffc107;
    --accent-red: #f44336;
    --text-white: #ffffff;
    --text-dark: #263238;
    --text-gray: #546e7a;
    --text-light: #90a4ae;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    --gradient-secondary: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    --gradient-success: linear-gradient(135deg, var(--accent-green), var(--vibrant-cyan));
    --gradient-premium: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    --gradient-referral: linear-gradient(135deg, var(--bright-purple), var(--accent-pink));
    --gradient-streak: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    --gradient-light: linear-gradient(135deg, var(--bg-white), var(--light-navy));
    --gradient-bright: linear-gradient(45deg, var(--vibrant-cyan), var(--primary-blue), var(--bright-purple));
    --shadow-blue: 0 4px 20px rgba(7, 15, 120, 0.3);
    --shadow-orange: 0 4px 20px rgba(255, 152, 0, 0.3);
    --shadow-green: 0 4px 20px rgba(76, 175, 80, 0.3);
    --shadow-purple: 0 4px 20px rgba(156, 39, 176, 0.3);
    --shadow-red: 0 4px 20px rgba(244, 67, 54, 0.3);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 15s infinite linear;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; color: var(--accent-gold); }
.floating-icon:nth-child(2) { top: 20%; right: 15%; color: var(--accent-green); }
.floating-icon:nth-child(3) { top: 60%; left: 5%; color: var(--accent-orange); }
.floating-icon:nth-child(4) { bottom: 30%; right: 10%; color: var(--bright-purple); }
.floating-icon:nth-child(5) { bottom: 10%; left: 20%; color: var(--accent-pink); }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.1; }
    25% { transform: translateY(-15px) rotate(90deg) scale(1.1); opacity: 0.2; }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.2); opacity: 0.3; }
    75% { transform: translateY(-15px) rotate(270deg) scale(1.1); opacity: 0.2; }
    100% { transform: translateY(0px) rotate(360deg) scale(1); opacity: 0.1; }
}

/* Background Geometric Animations */
.animated-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-pink));
    border-radius: 50%;
    opacity: 0.05;
    animation: moveCircle1 20s infinite ease-in-out;
}

.animated-bg::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--vibrant-cyan), var(--bright-purple));
    border-radius: 50%;
    opacity: 0.05;
    animation: moveCircle2 25s infinite ease-in-out;
}

@keyframes moveCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -50px) scale(1.2); }
    50% { transform: translate(200px, 50px) scale(0.8); }
    75% { transform: translate(50px, 100px) scale(1.1); }
}

@keyframes moveCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-150px, -100px) scale(1.3); }
    66% { transform: translate(-50px, 80px) scale(0.9); }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(33, 150, 243, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: var(--light-navy);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--gradient-light);
    padding: 2rem 0;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-success);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-green);
    animation: pulse-badge 3s ease-in-out infinite;
}

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

.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-neon);
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.2rem;
    background: var(--bg-white);
    border: 2px solid var(--light-navy);
    border-radius: 20px;
    min-width: 130px;
    box-shadow: var(--shadow-blue);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)); }
}

.rotating-slogan {
    position: relative;
    height: 60px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.slogan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-gray);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.slogan.active {
    opacity: 1;
    transform: translateY(0);
}

.rotating-cta {
    position: relative;
    height: 60px;
    margin-top: 2rem;
}

.cta-btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
    transition: all 0.8s ease;
    box-shadow: var(--shadow-neon);
}

.cta-btn.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.cta-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border: 2px solid var(--light-navy);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.step-item:hover {
    background: var(--light-navy);
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: var(--light-navy);
    border-top: 3px solid var(--accent-green);
    border-bottom: 3px solid var(--accent-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-white);
    border: 2px solid var(--accent-green);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-green);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.5);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.8rem;
}

.stat-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 900;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--bg-white);
    border: 2px solid var(--light-navy);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-blue);
}

/* Smart Card Background Colors */
.category-card:nth-child(1) {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
    border-color: #1976d2;
}

.category-card:nth-child(2) {
    background: linear-gradient(135deg, #e8f5e8, #ffffff);
    border-color: #388e3c;
}

.category-card:nth-child(3) {
    background: linear-gradient(135deg, #ffebee, #ffffff);
    border-color: #d32f2f;
}

.category-card:nth-child(4) {
    background: linear-gradient(135deg, #f3e5f5, #ffffff);
    border-color: #7b1fa2;
}

.category-card:nth-child(5) {
    background: linear-gradient(135deg, #fff3e0, #ffffff);
    border-color: #f57c00;
}

.category-card:nth-child(6) {
    background: linear-gradient(135deg, #fce4ec, #ffffff);
    border-color: #c2185b;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.15), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 35px rgba(33, 150, 243, 0.4);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

/* Realistic Icon Colors */
.category-card:nth-child(1) .card-icon { color: #1976d2; } /* Click - Blue */
.category-card:nth-child(2) .card-icon { color: #388e3c; } /* Chat - Green */
.category-card:nth-child(3) .card-icon { color: #d32f2f; } /* Video - Red */
.category-card:nth-child(4) .card-icon { color: #7b1fa2; } /* Games - Purple */
.category-card:nth-child(5) .card-icon { color: #f57c00; } /* Streaks - Orange */
.category-card:nth-child(6) .card-icon { color: #c2185b; } /* Referral - Pink */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.category-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.join-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Refer and Earn Section */
.refer-earn {
    padding: 80px 0;
    background: var(--gradient-referral);
    position: relative;
    color: white;
}

.refer-earn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.refer-earn .container {
    position: relative;
    z-index: 2;
}

.refer-earn .section-title {
    color: white;
}

.refer-earn .section-title::after {
    background: white;
}

.refer-earn .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.referral-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.referral-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.referral-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.referral-card:nth-child(1) .referral-icon { color: var(--accent-green); }
.referral-card:nth-child(2) .referral-icon { color: var(--accent-gold); }
.referral-card:nth-child(3) .referral-icon { color: var(--bright-purple); }

.referral-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.referral-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.referral-bonus {
    background: var(--gradient-premium);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}


/* Daily Streaks Section */
.daily-streaks {
    padding: 80px 0;
    background: var(--gradient-streak);
    position: relative;
    color: white;
}

.daily-streaks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.daily-streaks .container {
    position: relative;
    z-index: 2;
}

.daily-streaks .section-title {
    color: white;
}

.daily-streaks .section-title::after {
    background: white;
}

.daily-streaks .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.streak-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.streak-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.streak-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.streak-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.streak-info-card:nth-child(1) .streak-icon { color: var(--accent-red); }
.streak-info-card:nth-child(2) .streak-icon { color: var(--accent-gold); }
.streak-info-card:nth-child(3) .streak-icon { color: var(--bright-purple); }

.streak-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.streak-info-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-navy);
    border-top: 3px solid var(--bright-purple);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    border: 2px solid var(--bright-purple);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-purple);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--bright-purple);
    box-shadow: 0 10px 35px rgba(156, 39, 176, 0.4);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.testimonial-content p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--light-navy);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-navy);
}

.faq-question h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--gradient-secondary);
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-navy);
}

.email-form input::placeholder {
    color: rgba(10, 22, 40, 0.6);
}

.email-form button {
    padding: 15px 30px;
    background: var(--gradient-dark);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.email-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--light-navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-block {
    text-align: center;
    padding: 2.5rem;
    border-radius: 25px;
    background: var(--bg-white);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.feature-block:hover {
    background: var(--light-navy);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(33, 150, 243, 0.4);
}

.feature-icon {
    font-size: 3rem;
    color: var(--vibrant-cyan);
    margin-bottom: 1.5rem;
}

.feature-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-block p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    padding: 50px 0 20px;
    border-top: 3px solid var(--primary-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    font-family: 'Orbitron', monospace;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-about p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-social h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 41px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    transform: scale(1.15);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-blue);
    color: var(--text-light);
    font-size: 1rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    z-index: 1000;
}

.floating-btn {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: float-btn 3s ease-in-out infinite;
}

.whatsapp {
    background: #25d366;
    right: 30px;
    position: fixed;
    bottom: 100px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.telegram {
    background: #0088cc;
    left: 30px;
    position: fixed;
    bottom: 100px;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes float-btn {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
/* Mobile Navigation Styles */
.nav-link.active {
    color: var(--primary-blue);
    background: var(--light-navy);
}

@media (max-width: 768px) {
    .referral-stats {
        grid-template-columns: 1fr;
    }
    
    .streak-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .streak-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp {
        bottom: 80px;
        right: 20px;
    }
    
    .telegram {
        bottom: 80px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .feature-block {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
}
