﻿:root {
    --primary: #00E785;
    --primary-dark: #00c472;
    --accent: #00D4FF;
    --dark-bg: #0a0e17;
    --dark-card: #111827;
    --dark-card-hover: #1a2332;
    --dark-border: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #00E785 0%, #00D4FF 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    --shadow-glow: 0 0 40px rgba(0, 231, 133, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-brand span {
    -webkit-text-fill-color: var(--text-primary);
}
.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.btn-whatsapp-nav {
    background: var(--gradient-primary);
    color: #000 !important;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 231, 133, 0.3);
}
.navbar-toggler {
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,231,133,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.hero-bg-gradient-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 231, 133, 0.1);
    border: 1px solid rgba(0, 231, 133, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.btn-primary-custom {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 231, 133, 0.3);
    color: #000;
}
.btn-outline-custom {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border: 2px solid var(--dark-border);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
}
.hero-stat {
    text-align: left;
}
.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.hero-visual {
    position: relative;
}
.hero-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 231, 133, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}
.hero-card-title {
    font-weight: 600;
    font-size: 1.1rem;
}
.hero-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.hero-feature-list li:last-child {
    border-bottom: none;
}
.hero-feature-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}
.floating-badge {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge-1 {
    top: 10%;
    right: -15%;
    animation-delay: 0s;
}
.floating-badge-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 2s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== SECTION COMMON ===== */
.section-padding {
    padding: 100px 0;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 231, 133, 0.08);
    border: 1px solid rgba(0, 231, 133, 0.15);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}
.section-subtitle.centered {
    margin: 0 auto;
}

/* ===== MARQUEE / PARTNERS ===== */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
}
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.marquee-item:hover {
    opacity: 1;
}
.marquee-item i {
    font-size: 1.5rem;
    color: var(--primary);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== BETTING OPTIONS ===== */
.betting-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.betting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.betting-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 231, 133, 0.3);
    box-shadow: var(--shadow-glow);
}
.betting-card:hover::before {
    transform: scaleX(1);
}
.betting-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 231, 133, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}
.betting-card:hover .betting-card-icon {
    background: rgba(0, 231, 133, 0.15);
    transform: scale(1.1);
}
.betting-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.betting-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1220 50%, var(--dark-bg) 100%);
}
.why-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.why-card:hover {
    border-color: rgba(0, 231, 133, 0.3);
    transform: translateX(5px);
}
.why-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(0, 231, 133, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}
.why-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ===== FEATURES CHECKLIST ===== */
.features-section {
    position: relative;
}
.features-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,231,133,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.feature-box {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}
.feature-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.05rem;
}
.feature-check-list li:last-child {
    border-bottom: none;
}
.feature-check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(0, 231, 133, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ===== STATS BANNER ===== */
.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}
.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0,0,0,0.7);
    margin-top: 0.3rem;
}

/* ===== HOW IT WORKS ===== */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-number {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto 1.5rem;
    position: relative;
}
.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--dark-border);
}
.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}
.step-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 231, 133, 0.3);
    box-shadow: var(--shadow-glow);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a2332, #0d1220);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.blog-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, var(--dark-card));
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-tag {
    display: inline-block;
    background: rgba(0, 231, 133, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card-body h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}
.blog-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}
.blog-link:hover {
    gap: 0.8rem;
    color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-box {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 34px;
    z-index: -1;
    opacity: 0.2;
}
.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #070a10;
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 30px;
}
.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid var(--dark-border);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}
.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-out infinite;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.whatsapp-float a:hover + .whatsapp-tooltip,
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== DEALER BANNER ===== */
.dealer-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 30%, #1a0a0a 60%, #0a0e17 100%);
    overflow: hidden;
}
.dealer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 231, 133, 0.05) 0%, transparent 60%);
}
.dealer-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 231, 133, 0.1);
    border: 1px solid rgba(0, 231, 133, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.dealer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.dealer-phone {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.dealer-disclaimer {
    color: #d4a017;
    font-size: 0.9rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #e040a0 0%, #c026d3 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(224, 64, 160, 0.35);
    color: #fff;
}
.dealer-cards-deco {
    position: absolute;
    bottom: 0;
    opacity: 0.08;
    font-size: 8rem;
    color: #fff;
}
.dealer-cards-deco.left { left: 5%; }
.dealer-cards-deco.right { right: 5%; }

@media (max-width: 767px) {
    .dealer-title { font-size: 1.8rem; letter-spacing: 1px; }
    .dealer-phone { font-size: 2.5rem; letter-spacing: 2px; }
    .dealer-banner { padding: 50px 0; }
}

/* ===== ACCOUNT TYPES ===== */
.account-types-section {
    background: linear-gradient(180deg, #0d1220 0%, var(--dark-bg) 100%);
}
.account-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.account-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.account-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 231, 133, 0.3);
    box-shadow: var(--shadow-glow);
}
.account-card:hover::after {
    transform: scaleX(1);
}
.account-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}
.account-card:hover .account-card-icon {
    transform: scale(1.1) rotate(5deg);
}
.account-icon-gold {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}
.account-icon-cyan {
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent);
}
.account-icon-pink {
    background: rgba(236, 72, 153, 0.12);
    color: #ec4899;
}
.account-icon-green {
    background: rgba(0, 231, 133, 0.12);
    color: var(--primary);
}
.account-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.account-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 0.6rem;
    margin-bottom: 0;
}

/* ===== LIVE PLATFORM ===== */
.platform-section {
    position: relative;
    overflow: hidden;
}
.platform-mockup {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.mockup-header {
    background: linear-gradient(135deg, #1a2332 0%, #111827 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--dark-border);
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-url {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.mockup-body {
    padding: 1.5rem;
}
.game-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.game-banner {
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.game-banner-sports {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2439 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.game-banner-aviator {
    background: linear-gradient(135deg, #3b1a4f 0%, #1a0a2e 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
}
.game-banner-roulette {
    background: linear-gradient(135deg, #2d1a1a 0%, #1a0f0f 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.game-banner i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.game-banner span {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.race-schedule {
    margin-bottom: 1rem;
}
.race-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.race-header i {
    color: var(--primary);
}
.race-times {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.race-time-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    text-align: center;
    font-size: 0.78rem;
    flex: 1;
    min-width: 80px;
}
.race-time-chip strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.85rem;
}
.race-time-chip span {
    color: var(--text-muted);
    font-size: 0.72rem;
}
.sport-tabs {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.sport-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 0.5rem 0.9rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
}
.sport-tab.active-tab {
    background: rgba(0, 231, 133, 0.12);
    border-color: rgba(0, 231, 133, 0.3);
    color: var(--primary);
}
.sport-tab i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.provider-logos {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
}
.provider-logo {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.platform-stat-badge {
    position: absolute;
    bottom: 30%;
    right: -5%;
    background: var(--primary);
    color: #000;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 231, 133, 0.3);
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite;
}
.platform-stat-badge .stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}
.platform-stat-badge .stat-desc {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.8;
}
@media (max-width: 767px) {
    .game-banners { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .game-banner { padding: 1rem 0.5rem; }
    .game-banner i { font-size: 1.4rem; }
    .game-banner span { font-size: 0.7rem; }
    .platform-stat-badge { position: relative; right: auto; bottom: auto; margin-top: 1rem; display: inline-block; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-visual { margin-top: 3rem; }
    .floating-badge { display: none; }
    .step-connector { display: none; }
    .cta-box { padding: 3rem 1.5rem; }
    .cta-box h2 { font-size: 2rem; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .section-padding { padding: 60px 0; }
    .hero-section { padding: 100px 0 60px; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .hero-stat-value { font-size: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .feature-box { padding: 2rem 1.5rem; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float a { width: 52px; height: 52px; font-size: 1.5rem; }
    .navbar-collapse {
        background: var(--dark-card);
        border-radius: 16px;
        margin-top: 0.5rem;
        padding: 1rem;
        border: 1px solid var(--dark-border);
    }
}
