/* ========================================
   RESET & BASE STYLES
======================================== */

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

:root {
    /* Colors */
    --color-gold: #FFD700;
    --color-gold-dark: #FFA500;
    --color-red: #E63946;
    --color-red-dark: #C5303D;
    --color-purple: #6A0572;
    --color-purple-dark: #4A0352;
    --color-black: #1A1A1D;
    --color-white: #FFFFFF;
    --color-green: #39FF14;
    --color-blue: #00D9FF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--color-black) 0%, var(--color-purple-dark) 50%, var(--color-red-dark) 100%);
    --gradient-card: linear-gradient(135deg, rgba(106, 5, 114, 0.3) 0%, rgba(230, 57, 70, 0.3) 100%);
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-glow-red: 0 0 20px rgba(230, 57, 70, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ========================================
   PARTICLES BACKGROUND
======================================== */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--gradient-hero);
}

/* ========================================
   HEADER
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 29, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid var(--color-gold);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header {
    background: var(--gradient-primary);
    color: var(--color-black);
    box-shadow: var(--shadow-glow);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-black);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-game {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    width: 100%;
    justify-content: center;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-red);
}

.btn-urgency {
    background: var(--gradient-primary);
    color: var(--color-black);
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.btn-final-cta {
    background: var(--gradient-primary);
    color: var(--color-black);
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

.btn-final-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 70px rgba(255, 215, 0, 1);
}

.btn-floating {
    background: var(--gradient-primary);
    color: var(--color-black);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    animation: bounce 2s infinite;
}

/* ========================================
   ANIMATIONS
======================================== */

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

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

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.badge-destaque {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.trust-badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-gold);
    font-weight: 600;
}

.badge-item i {
    color: var(--color-gold);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-character {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.5));
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* ========================================
   SECTION HEADERS
======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   GAMES SECTION
======================================== */

.games-section {
    padding: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.game-card {
    position: relative;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card-inner {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.game-card:hover .game-card-inner {
    box-shadow: var(--shadow-glow);
    border-color: var(--color-gold-dark);
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    z-index: 2;
}

.game-badge-hot {
    background: var(--color-red);
    color: var(--color-white);
}

.game-badge-new {
    background: var(--color-purple);
    color: var(--color-white);
}

.game-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.game-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-logo {
    margin-bottom: var(--spacing-md);
}

.game-logo img {
    max-width: 80%;
    height: auto;
}

.game-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    color: var(--color-gold);
}

.game-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.game-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.game-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.game-features i {
    color: var(--color-green);
    flex-shrink: 0;
}

/* ========================================
   BENEFITS SECTION
======================================== */

.benefits-section {
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.benefit-card-highlight {
    border: 2px solid var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-black);
    box-shadow: var(--shadow-glow);
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
}

.benefit-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.highlight-text {
    color: var(--color-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* ========================================
   SOCIAL PROOF SECTION
======================================== */

.social-proof-section {
    padding: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.3);
}

.winners-ticker {
    background: var(--color-purple-dark);
    border-top: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: var(--spacing-lg);
    animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.ticker-item i {
    color: var(--color-gold);
}

.ticker-item .amount {
    color: var(--color-green);
    font-weight: 700;
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-green);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    font-size: 3rem;
    color: var(--color-gold);
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.testimonial-stars {
    color: var(--color-gold);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-game {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */

.how-it-works-section {
    padding: var(--spacing-xl) 0;
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 4rem;
    color: var(--color-gold);
    margin: var(--spacing-md) 0;
}

.step-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-gold);
}

/* ========================================
   URGENCY SECTION
======================================== */

.urgency-section {
    padding: var(--spacing-xl) 0;
    background: rgba(230, 57, 70, 0.1);
}

.urgency-banner {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 3px solid var(--color-red);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: var(--shadow-glow-red);
    flex-wrap: wrap;
    justify-content: center;
}

.urgency-icon {
    font-size: 5rem;
    color: var(--color-red);
    animation: pulse 1s infinite;
}

.urgency-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.urgency-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: var(--color-red);
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.urgency-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-gold);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    min-width: 80px;
}

.timer-label {
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
}

.timer-separator {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-gold);
    align-self: center;
}

.urgency-scarcity {
    font-size: 1.125rem;
    color: var(--color-red);
    font-weight: 700;
}

/* ========================================
   SECURITY SECTION
======================================== */

.security-section {
    padding: var(--spacing-xl) 0;
}

.security-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-green);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    min-width: 150px;
}

.security-badge i {
    font-size: 2.5rem;
    color: var(--color-green);
}

.security-badge span {
    font-weight: 600;
    text-align: center;
}

.payment-methods {
    text-align: center;
}

.payment-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    min-width: 120px;
}

.payment-icon i {
    font-size: 3rem;
    color: var(--color-gold);
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-grid {
    display: grid;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    cursor: pointer;
    user-select: none;
}

.faq-question i:first-child {
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
}

.faq-toggle {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ========================================
   FINAL CTA SECTION
======================================== */

.final-cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.final-cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.final-cta-guarantee {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.benefit-mini {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-gold);
}

.benefit-mini i {
    color: var(--color-green);
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--color-black);
    border-top: 2px solid var(--color-gold);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    width: 100px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-red);
    font-weight: 700;
}

.footer-age-restriction i {
    font-size: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ========================================
   FLOATING CTA (MOBILE)
======================================== */

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-timeline {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .btn-large,
    .btn-urgency,
    .btn-final-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 400px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .timer-number {
        font-size: 2rem;
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    
    .floating-cta {
        display: block;
    }
    
    .header-content .btn-header {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge-item {
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .final-cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .urgency-title {
        font-size: 1.5rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
        min-width: 50px;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

