/* ========================================
   LOTERIAS POPULAR - CSS Completo
   Paleta: #f29246 (Laranja Premium)
======================================== */

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

:root {
    --primary: #f29246;
    --primary-light: #f9a966;
    --primary-dark: #d97d32;
    --primary-rgb: 242, 146, 70;

    --gold: #d4a853;
    --gold-light: #e8c479;

    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-elevated: #1a1a24;

    --text-white: #ffffff;
    --text-gray: #9a9aaa;
    --text-muted: #5a5a6a;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BOTÕES
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.3);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000;
}

.btn-xl { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-header {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.85rem;
}

.btn-card-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-white);
    width: 100%;
    margin-top: 16px;
}

.btn-card-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-card-gold {
    background: var(--gradient-gold);
    color: #000;
    width: 100%;
    margin-top: 16px;
}

.btn-banner {
    background: #fff;
    color: var(--primary-dark);
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-disabled:hover {
    transform: none;
}

.badge-soon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    padding: 4px 8px;
    border-radius: 20px;
}

/* ========================================
   HEADER
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo span { color: var(--primary); }

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover { color: var(--text-white); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO - CENTRALIZADO
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
}

.hero-center { max-width: 800px; position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-center > p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    animation: float 4s ease-in-out infinite;
}

.float-stat i {
    font-size: 1.5rem;
    color: var(--primary);
}

.float-stat strong {
    display: block;
    font-size: 1.1rem;
}

.float-stat span {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.float-stat-1 { top: 25%; left: 5%; animation-delay: 0s; }
.float-stat-2 { top: 60%; right: 5%; animation-delay: 1s; }
.float-stat-3 { bottom: 20%; left: 10%; animation-delay: 2s; }

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ========================================
   TICKER BANNER
======================================== */
.ticker-banner {
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

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

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 120px 0;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Odds Showcase Card */
.about-visual {
    display: flex;
    justify-content: center;
}

.odds-showcase {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

/* Animated border */
.odds-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 200%;
    animation: borderGlow 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.showcase-header {
    margin-bottom: 24px;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(var(--primary-rgb), 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover {
    transform: translateY(-4px);
    background: rgba(var(--primary-rgb), 0.08);
}

.showcase-item.gold {
    background: rgba(212, 168, 83, 0.08);
}

.showcase-item.gold::before {
    background: linear-gradient(135deg, transparent, rgba(212, 168, 83, 0.4), transparent);
}

.showcase-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 12px;
}

.showcase-item.gold .showcase-icon {
    background: var(--gradient-gold);
}

.showcase-name {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.showcase-mult {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.showcase-item.gold .showcase-mult {
    color: var(--gold);
}

.showcase-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   STEPS - TIMELINE
======================================== */
.steps-section {
    padding: 120px 0;
    background: var(--bg-card);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header-center p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), rgba(var(--primary-rgb), 0.1));
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   PROMO SECTION - Layout Split
======================================== */
.promo-section {
    padding: 120px 0;
    background: var(--bg-card);
}

.promo-split {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

/* Controls - Left Side */
.promo-controls {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255,255,255,0.05);
}

.control-group {
    margin-bottom: 28px;
}

.control-group:last-of-type {
    margin-bottom: 32px;
}

.control-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.value-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.value-btn {
    padding: 14px 8px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-btn:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    color: var(--text-white);
}

.value-btn.active {
    background: rgba(var(--primary-rgb), 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated border for game buttons */
.game-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(var(--primary-rgb), 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-btn:hover::before,
.game-btn.active::before {
    opacity: 1;
}

.game-btn i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 24px;
}

.game-btn span:first-of-type {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.game-mult {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

.game-btn:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.game-btn.active {
    background: rgba(var(--primary-rgb), 0.12);
    border-color: var(--primary);
}

.game-btn.gold i,
.game-btn.gold .game-mult {
    color: var(--gold);
}

.game-btn.gold::before {
    background: linear-gradient(135deg, transparent, rgba(212, 168, 83, 0.4), transparent);
}

.game-btn.gold:hover,
.game-btn.gold.active {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold);
}

/* Prize Preview */
.promo-prize-preview {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.prize-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.prize-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Info Panel - Right Side */
.promo-info {
    position: relative;
    min-height: 500px;
}

.game-info {
    display: none;
    animation: slideIn 0.4s ease;
}

.game-info.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-elevated);
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: none;
}

.info-header.gold {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), var(--bg-elevated));
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.info-icon.gold {
    background: var(--gradient-gold);
}

.info-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.info-mult strong {
    color: var(--primary);
}

.info-mult.gold strong {
    color: var(--gold);
}

.info-badge {
    margin-left: auto;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-badge.gold {
    background: var(--gradient-gold);
    color: #000;
}

.info-body {
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: none;
}

.info-section {
    margin-bottom: 24px;
}

.info-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.info-section h4 i {
    color: var(--primary);
}

.info-section p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.info-section.highlight-gold {
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    padding: 16px;
}

.info-section.highlight-gold h4 i {
    color: var(--gold);
}

.info-example {
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.info-example.gold {
    background: rgba(212, 168, 83, 0.06);
    border-color: rgba(212, 168, 83, 0.15);
}

.example-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.info-example.gold .example-tag {
    color: var(--gold);
}

.info-example p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 6px;
}

.hl {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.hl.gold {
    background: rgba(212, 168, 83, 0.2);
    color: var(--gold);
}

.example-prize {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.example-prize strong {
    color: var(--primary);
    font-size: 1.15rem;
}

.example-prize.gold strong {
    color: var(--gold);
}

.game-info .btn {
    margin: 24px 28px 28px;
    width: calc(100% - 56px);
}

/* ========================================
   CALCULATOR SECTION
======================================== */
.calculator-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.calculator-card {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.05);
}

.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calc-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.calc-bet-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Playfair Display', serif;
}

.calc-bet-display span:first-child {
    font-size: 1rem;
    color: var(--text-gray);
}

.calc-bet-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.calc-slider-container {
    margin-bottom: 24px;
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-card);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
    transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.preset-btn {
    padding: 12px 8px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.preset-btn:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
    color: var(--text-white);
}

.preset-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: #fff;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.result-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.result-mult {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.result-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Gold variant for Milhar */
.result-card.gold {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.02));
    border-color: rgba(212, 168, 83, 0.2);
}

.result-card.gold .result-icon {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
}

.result-card.gold .result-value {
    color: var(--gold);
}

.result-card.gold:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 168, 83, 0.15);
}

/* Promo Reminder Banner */
.promo-reminder {
    margin-top: 40px;
}

.promo-reminder-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 16px;
    padding: 20px 28px;
}

.promo-reminder-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.promo-reminder-text {
    flex: 1;
}

.promo-reminder-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-white);
}

.promo-reminder-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.promo-reminder-text span {
    color: var(--primary);
    font-weight: 600;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ========================================
   REVIEWS
======================================== */
.reviews-section {
    padding: 120px 0;
}

.reviews-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.review-main {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 48px;
}

.review-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 24px;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 32px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
}

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

.review-prize {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--primary);
}

.reviews-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-small {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.review-small p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 16px;
}

.small-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.small-author .avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

/* ========================================
   BONUS
======================================== */
.bonus-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.bonus-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.9;
}

.bonus-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.bonus-content h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bonus-highlight {
    font-size: 4rem;
}

.bonus-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.bonus-perks {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.perk i { font-size: 1.1rem; }

/* ========================================
   FAQ
======================================== */
.faq-section {
    padding: 120px 0;
    background: var(--bg-card);
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.faq-question:hover { background: rgba(var(--primary-rgb), 0.05); }

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 200px; }

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 120px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.cta-box > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-item i { color: var(--primary); font-size: 1.2rem; }

/* ========================================
   FOOTER
======================================== */
footer {
    padding: 80px 0 40px;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a, .footer-contact a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   FIXED BANNER
======================================== */
.fixed-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-primary);
    padding: 14px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.banner-timer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.timer {
    display: flex;
    gap: 4px;
}

.timer span {
    background: rgba(0,0,0,0.3);
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* ========================================
   MODAL
======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
    color: var(--text-white);
}

.modal-game { display: none; }
.modal-game.active { display: block; }

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-header.gold .modal-icon { background: var(--gradient-gold); }

.modal-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.modal-icon.gold { background: var(--gradient-gold); color: #000; }

.modal-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-mult {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.modal-mult strong { color: var(--primary); }
.modal-mult.gold strong { color: var(--gold); }

.modal-info {
    margin-bottom: 20px;
}

.modal-info.highlight {
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.modal-info h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-info h4 i { color: var(--primary); }

.modal-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.modal-example {
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.modal-example.gold {
    background: rgba(212, 168, 83, 0.08);
    border-color: rgba(212, 168, 83, 0.2);
}

.example-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-example.gold .example-label { color: var(--gold); }

.modal-example p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.highlight {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.highlight.gold {
    background: rgba(212, 168, 83, 0.2);
    color: var(--gold);
}

.example-result {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    font-size: 0.95rem;
}

.example-result strong { color: var(--primary); font-size: 1.1rem; }
.example-result.gold strong { color: var(--gold); }

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .odds-grid { grid-template-columns: repeat(2, 1fr); }
    .calculator-wrapper { grid-template-columns: 1fr; }
    .calculator-results { grid-template-columns: repeat(2, 1fr); }
    .reviews-showcase { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .promo-split { grid-template-columns: 320px 1fr; gap: 50px; }
    .promo-controls { padding: 24px; }
    .game-btn { padding: 14px; }
    .game-btn-icon { width: 44px; height: 44px; }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-card);
        padding: 20px;
        gap: 16px;
    }

    nav ul.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .btn-header { display: none; }

    .hero h1 { font-size: 2.5rem; }
    .hero { min-height: auto; padding: 140px 0 80px; }
    .floating-stats { display: none; }

    .section-header-center h2, .about-content h2, .calculator-info h2, .cta-box h2 { font-size: 2rem; }

    .odds-grid { grid-template-columns: 1fr 1fr; }
    .faq-columns { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }

    .review-main { padding: 32px; }
    .review-text { font-size: 1.1rem; }
    .review-prize { margin-left: 0; margin-top: 16px; }

    .bonus-content h2 { font-size: 2rem; }
    .bonus-highlight { font-size: 3rem; }

    .banner-content { gap: 16px; }

    .timeline-line { left: 25px; }

    /* Calculator Mobile */
    .calculator-wrapper { gap: 30px; }
    .calculator-card { padding: 24px; }
    .calc-bet-value { font-size: 2rem; }
    .calculator-results { grid-template-columns: 1fr 1fr; gap: 16px; }
    .result-card { padding: 16px; }
    .result-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .result-value { font-size: 1.2rem; }
    .preset-buttons { grid-template-columns: repeat(5, 1fr); gap: 6px; }
    .preset-btn { padding: 10px 6px; font-size: 0.8rem; }

    /* Promo Reminder Mobile */
    .promo-reminder-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    .promo-reminder-text p { font-size: 0.85rem; }

    /* Promo Section Mobile */
    .promo-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .promo-controls {
        position: static;
        padding: 20px;
    }
    .value-buttons {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    .value-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .game-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .game-btn {
        padding: 12px;
        flex-direction: row;
        gap: 12px;
    }
    .game-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .game-btn-text {
        text-align: left;
    }
    .game-info {
        padding: 24px;
    }
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .info-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    .info-prize {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 2rem; }
    .odds-grid { grid-template-columns: 1fr; }
    .calc-value { font-size: 1.5rem; min-width: 90px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-trust { flex-direction: column; gap: 16px; }
    .bonus-perks { flex-direction: column; gap: 12px; }

    /* Calculator Small */
    .calculator-results { grid-template-columns: 1fr; }
    .result-card { flex-direction: row; }
    .preset-buttons { grid-template-columns: repeat(3, 1fr); }

    /* Promo Section Small */
    .value-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    .game-buttons {
        grid-template-columns: 1fr;
    }
    .game-btn {
        flex-direction: row;
        justify-content: flex-start;
    }
    .prize-preview {
        flex-direction: column;
        gap: 8px;
    }
    .info-body {
        padding: 20px;
    }
    .info-section h4 {
        font-size: 0.95rem;
    }
    .info-section p, .info-section li {
        font-size: 0.9rem;
    }
}
