/* ==========================================
   Premium Chamet Agency Stylesheet
   Modern, High-End Design System
   ========================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #D946EF;
    --accent: #FFD700;
    --accent-light: #FDE68A;

    /* Background Colors */
    --bg-dark: #0A0A0F;
    --bg-darker: #060608;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-glass: rgba(139, 92, 246, 0.1);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #1A1A2E 100%);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Animated Background Orbs */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    opacity: 0.2;
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-subtitle strong {
    color: var(--accent);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 24px;
    background: var(--bg-glass);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-cities {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-cities span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a1a4a 0%, #1a1a2e 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #FF3B3B;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.earnings-popup {
    position: absolute;
    top: 30%;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    animation: popIn 2s infinite;
}

.popup-icon {
    font-size: 1.2rem;
}

.popup-amount {
    font-weight: 700;
    color: var(--accent);
}

@keyframes popIn {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.host-avatar {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, transparent 100%);
    border-radius: 20px;
}

.viewer-count {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    font-size: 0.9rem;
}

.viewer-icon {
    font-size: 1rem;
}

/* Floating Coins */
.floating-coin {
    position: absolute;
    font-size: 2rem;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    right: -40px;
    animation-delay: 0s;
}

.coin-2 {
    top: 50%;
    left: -50px;
    animation-delay: -1s;
}

.coin-3 {
    bottom: 20%;
    right: -30px;
    animation-delay: -2s;
}

@keyframes floatCoin {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits {
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-glow);
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.benefit-card:hover .card-glow {
    opacity: 1;
}

.benefit-card.featured {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    font-size: 2rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

/* ==========================================
   Earnings Section
   ========================================== */
.earnings {
    background: var(--bg-darker);
}

.earnings-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}

.earnings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.earnings-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.earnings-table tbody tr {
    background: var(--bg-card);
    transition: all var(--transition-base);
}

.earnings-table tbody tr:hover {
    transform: translateX(8px);
}

.earnings-table tbody tr.highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(217, 70, 239, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.earnings-table tbody td {
    padding: 20px 24px;
    font-size: 1rem;
}

.earnings-table tbody td:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.earnings-table tbody td:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.earnings-table .earning {
    font-weight: 700;
    color: var(--accent);
}

.level-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.level-badge.starter {
    background: rgba(107, 114, 128, 0.2);
    color: #9CA3AF;
}

.level-badge.bronze {
    background: rgba(205, 127, 50, 0.2);
    color: #CD7F32;
}

.level-badge.silver {
    background: rgba(192, 192, 192, 0.2);
    color: #C0C0C0;
}

.level-badge.gold {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.level-badge.diamond {
    background: rgba(185, 242, 255, 0.2);
    color: #B9F2FF;
}

.earnings-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
}

.note-icon {
    font-size: 1.5rem;
}

.earnings-note p {
    color: var(--text-secondary);
}

/* ==========================================
   Calculator Section
   ========================================== */
.calculator {
    background: transparent;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-info {
    text-align: left;
}

.calculator-info .section-badge,
.calculator-info .section-title,
.calculator-info .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.calculator-features {
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 0.75rem;
    color: white;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.calc-icon {
    font-size: 1.5rem;
}

.calc-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.calc-body {
    padding: 32px;
}

.input-group {
    margin-bottom: 32px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.slider-container {
    position: relative;
    height: 8px;
    margin-bottom: 16px;
}

.slider-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    transition: transform var(--transition-fast);
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.beans-display {
    text-align: center;
    padding: 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
}

#beansValue {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.beans-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.result-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.result-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.result-card.daily .result-value {
    color: var(--accent);
}

.result-card.weekly .result-value {
    color: var(--primary-light);
}

.result-card.monthly .result-value {
    color: var(--secondary);
}

.calc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.calc-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.calc-cta .arrow {
    transition: transform var(--transition-fast);
}

.calc-cta:hover .arrow {
    transform: translateX(4px);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    background: var(--bg-darker);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.earning-badge {
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    background: transparent;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: transparent;
}

.cta-card {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(217, 70, 239, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   Animations
   ========================================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-info {
        text-align: center;
    }

    .calculator-info .section-badge,
    .calculator-info .section-title,
    .calculator-info .section-subtitle {
        text-align: center;
    }

    .calculator-features {
        display: flex;
        justify-content: center;
        gap: 24px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .calculator-features {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   Conversion Info Card
   ========================================== */
.conversion-info {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.conversion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(217, 70, 239, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-xl);
    text-align: center;
}

.conv-icon {
    font-size: 2.5rem;
}

.conv-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.conv-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.conv-value.highlight {
    color: var(--accent);
    font-size: 2.2rem;
}

.conv-equal {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.conv-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================
   Special Offers Section
   ========================================== */
.special-offers {
    margin-top: 60px;
    margin-bottom: 40px;
}

.offers-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offer-card {
    position: relative;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-glow);
}

.offer-card.hot {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.offer-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.offer-card p strong {
    color: var(--accent);
}

/* ==========================================
   Enhanced Earnings Table Rows
   ========================================== */
.earnings-table tbody tr.highlight-premium {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border: 1px solid rgba(217, 70, 239, 0.4);
}

.earnings-table tbody tr.highlight-diamond {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.level-badge.platinum {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    color: #E879F9;
}

font-size: 2rem;
}

.hero-buttons {
    flex-direction: column;
}

.btn {
    width: 100%;
}

.cta-card {
    padding: 40px 24px;
}

.calculator-features {
    flex-direction: column;
    align-items: center;
}
}

/* ==========================================
   Conversion Info Card
   ========================================== */
.conversion-info {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.conversion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(217, 70, 239, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-xl);
    text-align: center;
}

.conv-icon {
    font-size: 2.5rem;
}

.conv-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.conv-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.conv-value.highlight {
    color: var(--accent);
    font-size: 2.2rem;
}

.conv-equal {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.conv-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================
   Special Offers Section
   ========================================== */
.special-offers {
    margin-top: 60px;
    margin-bottom: 40px;
}

.offers-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offer-card {
    position: relative;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-glow);
}

.offer-card.hot {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.offer-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.offer-card p strong {
    color: var(--accent);
}

/* ==========================================
   Enhanced Earnings Table Rows
   ========================================== */
.earnings-table tbody tr.highlight-premium {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border: 1px solid rgba(217, 70, 239, 0.4);
}

.earnings-table tbody tr.highlight-diamond {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.level-badge.platinum {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    color: #E879F9;
}

.earnings-table .gift {
    color: #10B981;
    font-weight: 600;
}

/* ==========================================
   Responsive: Special Offers
   ========================================== */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .conversion-card {
        padding: 24px 30px;
    }

    .conv-value {
        font-size: 1.4rem;
    }

    .conv-value.highlight {
        font-size: 1.8rem;
    }
}

/* ==========================================
   Hero Image Styles
   ========================================== */
.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.hero-host-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    animation: float 6s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF0000;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.live-badge .live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.popup-animated {
    position: absolute;
    bottom: 80px;
    right: 20px;
    animation: popIn 3s ease-in-out infinite;
}

@keyframes popIn {

    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 0.8;
    }
}

.viewer-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(139, 92, 246, 0.05) 50%, var(--bg-dark) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================
   Video Section
   ========================================== */
.video-section {
    margin-top: 40px;
}

.video-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h4 {
    padding: 20px 20px 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.video-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================
   Testimonial Avatar with Image
   ========================================== */
.testimonial-author .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   Enhanced Animations
   ========================================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.5s;
    z-index: 1;
}

.gallery-item:hover::before {
    left: 100%;
}

/* Floating Animation Enhancement */
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating-coin {
    animation: floatSlow 4s ease-in-out infinite;
}

.floating-coin.coin-2 {
    animation-delay: 0.5s;
}

.floating-coin.coin-3 {
    animation-delay: 1s;
}

/* ==========================================
   Responsive: Gallery & Video
   ========================================== */
@media (max-width: 992px) {
    .hero-image-wrapper {
        width: 350px;
        height: 430px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        width: 300px;
        height: 380px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}

.gallery-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================
   Video Section
   ========================================== */
.video-section {
    margin-top: 40px;
}

.video-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h4 {
    padding: 20px 20px 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.video-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================
   Testimonial Avatar with Image
   ========================================== */
.testimonial-author .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   Enhanced Animations
   ========================================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.5s;
    z-index: 1;
}

.gallery-item:hover::before {
    left: 100%;
}

/* Floating Animation Enhancement */
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating-coin {
    animation: floatSlow 4s ease-in-out infinite;
}

.floating-coin.coin-2 {
    animation-delay: 0.5s;
}

.floating-coin.coin-3 {
    animation-delay: 1s;
}

/* ==========================================
   Responsive: Gallery & Video
   ========================================== */
@media (max-width: 992px) {
    .hero-image-wrapper {
        width: 350px;
        height: 430px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        width: 300px;
        height: 380px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        width: 280px;
        height: 350px;
    }

    .live-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .viewer-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .video-title {
        font-size: 1.4rem;
    }
}

/* ==========================================
   Earnings Joy Image
   ========================================== */
.earnings-joy-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.earnings-joy-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary);
    box-shadow: var(--shadow-glow), 0 0 60px rgba(139, 92, 246, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.earnings-joy-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

.joy-emoji {
    font-size: 1.3rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==========================================
   Gallery Two Column Layout
   ========================================== */
.gallery-grid.gallery-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.gallery-grid.gallery-two .gallery-item {
    aspect-ratio: 4/3;
}

@media (max-width: 768px) {
    .earnings-joy-image {
        width: 220px;
        height: 220px;
    }

    .earnings-joy-text {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .gallery-grid.gallery-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .earnings-joy-image {
        width: 180px;
        height: 180px;
    }

    .earnings-joy-text {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* Spacing Fixes */
.hero { flex-direction: row; }
@media (max-width: 1024px) { .hero { flex-direction: column !important; text-align: center; gap: 30px; padding: 100px 24px 40px !important; } .hero-visual { display: none !important; } }
.gallery { padding: 60px 0; }
.gallery-grid.gallery-two { gap: 20px; }
