/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    vertical-align: middle;
}

:root {
    /* Couleurs de marque ZEUS PASCAL — palette FinTech premium */
    --primary: #123B9C;
    --primary-dark: #1E4FD6;
    --secondary: #1E4FD6;
    --dark: #07080D;
    --accent: #FF9600;
    --dark-light: #0B0D14;
    --dark-lighter: #14161f;
    --text: #ffffff;
    --text-gray: #b0b0c0;
    --gradient-1: linear-gradient(135deg, #1E4FD6 0%, #123B9C 100%);
    --gradient-2: linear-gradient(135deg, #123B9C 0%, #1E4FD6 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 16px 32px -20px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 24px 40px -18px rgba(0, 0, 0, 0.55);

    /* Design tokens (brief §27) mappés sur les mêmes couleurs de marque */
    --background: var(--dark);
    --background-secondary: var(--dark-light);
    --primary-blue: var(--primary);
    --primary-blue-light: var(--secondary);
    --accent-yellow: var(--accent);
    --text-primary: var(--text);
    --text-secondary: var(--text-gray);
    --border: rgba(255, 255, 255, 0.1);
    --card-background: rgba(255, 255, 255, 0.04);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s ease;

    /* Nuances secondaires — approfondissent la palette navy/orange */
    --navy-deep: #060A18;
    --amber: #FFB238;

    /* Typographie */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --fs-1: clamp(34px, 4.8vw, 48px);
    --fs-2: clamp(22px, 3vw, 24px);
    --fs-3: clamp(19px, 2.1vw, 21px);
    --fs-4: 16px;
    --fs-5: 16px;

    /* Motif signature — trait angulaire évoquant la foudre, utilisé comme séparateur */
    --divider-bolt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 L18 10 L26 2 L34 18 L42 2 L50 18 L58 10 L100 10' stroke='%23FF9600' stroke-width='2' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-5);
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3,
.nav-logo,
.footer-brand .logo-text,
.hero-title,
.section-title,
.step-flow-item h3,
.feature-title,
.download-step h3,
.video-card-title,
.accordion-trigger,
.video-modal-title {
    font-family: var(--font-display);
}

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

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   BOUTONS
   =================================== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost,
.btn-telegram,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    position: relative;
    background: var(--gradient-1);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(30, 79, 214, 0.35);
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 140%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 79, 214, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-yellow);
}

.btn-outline:hover {
    background: rgba(255, 150, 0, 0.1);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 18px;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-telegram {
    background: linear-gradient(135deg, #34a1e8 0%, #1c6db3 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 161, 232, 0.3);
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 161, 232, 0.4);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 8, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(7, 8, 13, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.pascal-yellow {
    color: var(--accent-yellow);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--accent-yellow);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 12px 22px;
    font-size: 14px;
}

.nav-cta-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition);
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 130px 20px 70px;
    background: var(--background);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 40%, rgba(255, 150, 0, 0.16) 0%, transparent 50%),
        radial-gradient(circle at 20% 25%, rgba(30, 79, 214, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(18, 59, 156, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 13, 0.1) 0%, rgba(7, 8, 13, 0.5) 70%, var(--background) 100%);
    pointer-events: none;
}

/* Motif signature — éclair stylisé en fond du hero */
.hero::after {
    content: "";
    position: absolute;
    top: -5%;
    right: -4%;
    width: 600px;
    height: 850px;
    max-width: 55vw;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='none'%3E%3Cpath d='M120 0 L40 220 L90 220 L60 400 L180 140 L110 140 Z' fill='%23FF9600'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    transform: rotate(6deg);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 150, 0, 0.1);
    border: 1px solid rgba(255, 150, 0, 0.35);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    margin-bottom: 22px;
    box-shadow: 0 4px 20px rgba(255, 150, 0, 0.12);
    backdrop-filter: blur(8px);
}

.badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: 0 0 0 0 rgba(255, 150, 0, 0.7);
    animation: pulseGlow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    flex-shrink: 0;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 150, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 150, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 150, 0, 0);
    }
}

.hero-brand-xbet {
    color: var(--accent-yellow);
    font-weight: 800;
}

.hero-bonus-text {
    color: #ffffff;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-title .title-accent {
    background: linear-gradient(135deg, #FF9600 0%, #FFB74D 50%, #FFE082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 150, 0, 0.35));
}

.hero-subtitle {
    font-size: 15px;
    letter-spacing: 0.2px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-cta-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-cta-hint .icon {
    width: 15px;
    height: 15px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.hero-hint-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 150, 0, 0.6);
    transition: color var(--transition), text-decoration-color var(--transition);
}

.hero-hint-link:hover {
    color: var(--accent-yellow);
    text-decoration-color: var(--accent-yellow);
}

.xbet-cta-group {
    margin-bottom: 40px;
}

.hero-promo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 10px 14px 10px 18px;
    background: linear-gradient(135deg, rgba(255, 150, 0, 0.08) 0%, rgba(20, 24, 38, 0.9) 100%);
    border: 1px dashed rgba(255, 150, 0, 0.45);
    border-radius: 14px;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 150, 0, 0.08);
    backdrop-filter: blur(12px);
}

.promo-chip-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.promo-chip-code {
    color: var(--accent-yellow);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-promo-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 150, 0, 0.15);
    border: 1px solid rgba(255, 150, 0, 0.4);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.promo-copy-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-yellow);
    transition: transform 0.2s ease;
}

.hero-promo-copy:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #07080D;
    box-shadow: 0 4px 14px rgba(255, 150, 0, 0.4);
}

.hero-promo-copy:hover .promo-copy-icon {
    color: #07080D;
}

.hero-promo-copy.copied {
    background: #10B981;
    border-color: #10B981;
    color: #ffffff;
}

.hero-promo-copy.copied .promo-copy-icon {
    color: #ffffff;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-trust-item .trust-icon {
    width: 15px;
    height: 15px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.hero-trust-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-visual-glow {
    position: absolute;
    width: 320px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 150, 0, 0.2) 0%, rgba(30, 79, 214, 0.25) 45%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 540px;
    border-radius: 42px;
    background: #090b14;
    border: 7px solid #1c2033;
    box-shadow:
        0 25px 60px -15px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 40px rgba(30, 79, 214, 0.25);
    padding: 8px;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 18px;
    background: #000000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.phone-mockup-tilt {
    box-shadow:
        0 30px 70px -15px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 60px 10px rgba(255, 150, 0, 0.22);
    transform: rotate(-4deg);
    animation: phoneFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes phoneFloat {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-4deg) translateY(-12px); }
}

.hero-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    background: rgba(11, 14, 24, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 150, 0, 0.1);
    animation: cardFloat 5s ease-in-out infinite;
    white-space: nowrap;
    pointer-events: auto;
}

.floating-card .icon {
    width: 15px;
    height: 15px;
    color: var(--accent-yellow);
}

.floating-card-1 {
    top: 14%;
    left: -10px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 28%;
    left: -28px;
    animation-delay: 1.2s;
}

.floating-card-3 {
    top: 28%;
    right: -20px;
    animation-delay: 2.4s;
}

.floating-card-4 {
    bottom: 12%;
    right: -10px;
    animation-delay: 3.6s;
}

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

.phone-mockup-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.phone-screen-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 4;
}

/* ===================================
   SECTIONS COMMUNES
   =================================== */
section {
    padding: 72px 20px;
    scroll-margin-top: 90px;
}

.section-alt {
    background: var(--background-secondary);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-header-left {
    text-align: left;
    margin: 0 0 40px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: var(--fs-2);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: var(--fs-4);
    color: var(--text-secondary);
}

/* ===================================
   COMMENT ÇA MARCHE
   =================================== */
.steps-flow {
    display: flex;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.step-flow-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.step-flow-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(30, 79, 214, 0.35);
}

.step-flow-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-flow-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-flow-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--border), var(--accent-yellow) 50%, var(--border));
}

/* ===================================
   FONCTIONNALITÉS APPLICATION
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 24px 20px;
    background: var(--card-background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 150, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-card-hover), 0 0 25px rgba(30, 79, 214, 0.2);
}

/* Les deux premières fonctionnalités (Dépôt / Retrait) sont mises en avant */
/* Composition asymétrique en bento — une tuile héro, un duo, un trio, une bannière */
.feature-card:nth-child(1) {
    grid-column: span 4;
    padding: 40px 32px;
    background: var(--navy-deep);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
}

.feature-card:nth-child(1) .feature-icon .icon {
    width: 32px;
    height: 32px;
}

.feature-card:nth-child(1) .feature-title {
    font-size: 20px;
}

.feature-card:nth-child(2) {
    grid-column: span 2;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    grid-column: span 2;
}

.feature-card:nth-child(6) {
    grid-column: span 6;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.feature-card:nth-child(6) .feature-icon {
    margin-bottom: 0;
}

.feature-unconfirmed {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 3px 10px;
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-icon .icon {
    width: 26px;
    height: 26px;
    color: var(--accent-yellow);
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===================================
   SHOWCASE (téléphone principal + secondaires)
   =================================== */
.showcase-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.showcase-phone {
    position: relative;
}

.showcase-phone-frame {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    border: 6px solid var(--dark-lighter);
    overflow: hidden;
    background: var(--background-secondary);
    box-shadow: var(--shadow-lg);
}

.showcase-phone img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.showcase-phone-main {
    width: 260px;
    height: 540px;
    z-index: 2;
}

.showcase-phone-main .showcase-phone-frame {
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55);
}

.showcase-phone-secondary {
    width: 170px;
    height: 356px;
    z-index: 1;
    opacity: 0.8;
    filter: brightness(0.7) saturate(0.9);
    transition: opacity var(--transition), filter var(--transition);
}

.showcase-phone-secondary:hover {
    opacity: 1;
    filter: none;
}

.showcase-phone-left {
    transform: rotate(-8deg);
    margin-right: -34px;
}

.showcase-phone-right {
    transform: rotate(8deg);
    margin-left: -34px;
}

.showcase-tag {
    position: absolute;
    padding: 7px 14px;
    background: rgba(7, 8, 13, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 3;
}

.showcase-tag-bottom {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.showcase-tag-top-right {
    top: -34px;
    right: -20px;
    color: var(--accent-yellow);
    border-color: rgba(255, 150, 0, 0.4);
}

.showcase-tag-bottom-left {
    bottom: -34px;
    left: -20px;
    color: var(--accent-yellow);
    border-color: rgba(255, 150, 0, 0.4);
}

/* ===================================
   TÉLÉCHARGEMENT
   =================================== */
.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.download-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.download-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.download-step h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.download-step p {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-visual {
    display: flex;
    justify-content: center;
}

/* ===================================
   TABS
   =================================== */
.tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.tab-list button {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.tab-list button:hover {
    color: var(--text-primary);
}

.tab-list button.active {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

.tab-list button:focus-visible,
.accordion-trigger:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    color: var(--text-secondary);
    padding: 48px 24px;
    background: var(--card-background);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
}

.empty-state .icon {
    width: 30px;
    height: 30px;
    color: var(--accent-yellow);
}

.empty-state p {
    font-size: 14px;
    font-weight: 600;
}

/* ===================================
   VIDÉOS
   =================================== */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.video-card {
    display: flex;
    flex-direction: column;
    flex: 0 1 260px;
    text-align: left;
    background: var(--card-background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    color: inherit;
    font: inherit;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 150, 0, 0.4);
    box-shadow: var(--shadow-card-hover);
}

.video-card-thumb {
    position: relative;
    height: 150px;
    background: var(--gradient-2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-card-play .icon {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.video-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
}

.video-card-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-yellow);
}

.video-card-title {
    font-size: 15px;
    font-weight: 700;
}

.video-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Modal vidéo */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 8, 13, 0.9);
}

.video-modal.open {
    display: flex;
}

.video-modal-content {
    width: 100%;
    max-width: 860px;
    background: var(--background-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.video-modal-title {
    font-size: 15px;
    font-weight: 700;
}

.video-modal-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.video-modal-body {
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-body iframe,
.video-modal-body video {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   SECTION 1XBET (secondaire)
   =================================== */
.xbet-section {
    position: relative;
    background: var(--navy-deep);
}

.xbet-logo {
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(255, 150, 0, 0.25));
}

.promo-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 460px;
    margin: 0 auto 40px;
    padding: 16px 20px;
    background: var(--card-background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.promo-compact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2px;
}

.promo-compact-code {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

.promo-compact-btn {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.promo-compact-btn:hover,
.promo-compact-btn.copied {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* ===================================
   COMMUNAUTÉ & RÉSEAUX VIP
   =================================== */
.section-community {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: var(--background-secondary);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
}

.community-card {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: rgba(14, 18, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.community-card:hover {
    transform: translateY(-6px);
}

.community-card-whatsapp {
    border-color: rgba(37, 211, 102, 0.25);
}

.community-card-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 24px 60px -15px rgba(37, 211, 102, 0.25);
}

.community-card-telegram {
    border-color: rgba(52, 161, 232, 0.25);
}

.community-card-telegram:hover {
    border-color: rgba(52, 161, 232, 0.6);
    box-shadow: 0 24px 60px -15px rgba(52, 161, 232, 0.25);
}

.community-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    top: -50px;
    right: -50px;
    opacity: 0.15;
    transition: opacity var(--transition);
}

.community-card:hover .community-card-glow {
    opacity: 0.35;
}

.community-glow-whatsapp {
    background: #25D366;
}

.community-glow-telegram {
    background: #34a1e8;
}

.community-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.community-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.badge-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25D366;
}

.badge-telegram {
    background: rgba(52, 161, 232, 0.12);
    border: 1px solid rgba(52, 161, 232, 0.35);
    color: #34a1e8;
}

.pulse-green {
    background: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulseGreen 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-blue {
    background: #34a1e8;
    box-shadow: 0 0 0 0 rgba(52, 161, 232, 0.7);
    animation: pulseBlue 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(52, 161, 232, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(52, 161, 232, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 161, 232, 0); }
}

.community-icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bubble-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.bubble-telegram {
    background: rgba(52, 161, 232, 0.15);
    color: #34a1e8;
    box-shadow: 0 4px 20px rgba(52, 161, 232, 0.2);
}

.community-icon {
    width: 26px;
    height: 26px;
}

.community-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: var(--font-display);
}

.community-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
}

.community-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.community-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.community-feat-item .feat-check {
    width: 16px;
    height: 16px;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.community-card-btn {
    width: 100%;
    margin-top: auto;
    font-size: 15px;
    padding: 16px 24px;
}

/* ===================================
   BOOKMAKERS (secondaire)
   =================================== */
.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.bookmaker-card {
    position: relative;
    text-align: center;
    padding: 24px 18px;
    background: var(--card-background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.bookmaker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 79, 214, 0.4);
    box-shadow: var(--shadow-card-hover);
}

.bookmaker-card-primary {
    background: var(--navy-deep);
    border-color: rgba(255, 150, 0, 0.4);
    box-shadow: 0 20px 40px -22px rgba(255, 150, 0, 0.35);
}

.bookmaker-card-primary:hover {
    border-color: rgba(255, 150, 0, 0.6);
}

.bookmaker-card-primary .bookmaker-card-badge {
    color: var(--dark);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.bookmaker-card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

.bookmaker-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.bookmaker-card-bonus {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.bookmaker-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.bookmaker-card-btn:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* ===================================
   FAQ
   =================================== */
.accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card-background);
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
}

.accordion-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--accent-yellow);
    transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 20px 30px;
    background: var(--background-secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-community-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-community-buttons .btn-telegram,
.footer-community-buttons .btn-whatsapp {
    padding: 10px 18px;
    font-size: 13px;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
        max-width: 640px;
    }

    .hero-content {
        order: 1; /* Content first */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-promo-chip {
        justify-content: space-between;
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .hero-visual {
        order: 2; /* Phone after CTA */
        margin-top: 10px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-visual-glow {
        width: 280px;
        height: 400px;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .hero-floating-cards {
        position: absolute;
        inset: 0;
        max-width: 360px;
        margin: 0 auto;
    }

    .floating-card-1 {
        top: 12%;
        left: -10px;
    }

    .floating-card-2 {
        bottom: 25%;
        left: -20px;
    }

    .floating-card-3 {
        top: 25%;
        right: -15px;
    }

    .floating-card-4 {
        bottom: 10%;
        right: -10px;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-step {
        text-align: left;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        grid-column: span 2;
    }

    .feature-card:nth-child(6) {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 56px 20px;
    }

    .showcase-phone-secondary {
        display: none;
    }

    .showcase-phone-main {
        width: 220px;
        height: 460px;
    }

    .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-flow-item {
        max-width: 320px;
    }

    .step-flow-connector {
        width: 2px;
        height: 32px;
        margin-top: 0;
        background: linear-gradient(180deg, var(--border), var(--accent-yellow) 50%, var(--border));
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: rgba(7, 8, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: left var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-cta-mobile {
        display: inline-flex;
    }

    /* HERO MOBILE DESIGN — Optimisé smartphone / 1st Screen Conversion */
    .hero {
        padding: 78px 16px 36px;
        overflow-x: clip;
    }

    .hero-badge {
        font-size: 10.5px;
        padding: 5px 12px;
        gap: 6px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(21px, 6.2vw, 28px);
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 380px;
    }

    .hero-bonus-text {
        display: inline-block;
        background: linear-gradient(135deg, rgba(255, 150, 0, 0.2) 0%, rgba(255, 150, 0, 0.08) 100%);
        border: 1px solid rgba(255, 150, 0, 0.45);
        color: #FFB238;
        padding: 1px 7px;
        border-radius: 6px;
        font-weight: 800;
    }

    .hero-promo-chip {
        width: 100%;
        max-width: 360px;
        padding: 9px 12px 9px 16px;
        margin-bottom: 14px;
        box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 150, 0, 0.12);
    }

    .promo-chip-code {
        font-size: 17px;
        letter-spacing: 1.5px;
    }

    .hero-promo-copy {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 360px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .hero-cta-group .btn-primary {
        width: 100%;
        height: 50px;
        padding: 14px 20px;
        font-size: 15.5px;
        font-weight: 800;
        border-radius: 12px;
        justify-content: center;
    }

    .hero-cta-group .btn-secondary {
        width: 100%;
        padding: 11px 18px;
        font-size: 13px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        color: var(--text-secondary);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition);
    }

    .hero-cta-group .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.25);
    }

    .hero-cta-hint {
        font-size: 12px;
        margin-bottom: 14px;
        justify-content: center;
        text-align: center;
    }

    .hero-trust-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px 10px;
        flex-wrap: wrap;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 30px;
        padding: 7px 14px;
        max-width: 360px;
        margin: 0 auto 10px;
        backdrop-filter: blur(8px);
    }

    .hero-trust-item {
        font-size: 11px;
        font-weight: 600;
    }

    .hero-trust-item .trust-icon {
        width: 13px;
        height: 13px;
    }

    .hero-visual {
        margin-top: 18px;
    }

    .phone-mockup {
        width: 205px;
        height: 420px;
        border-radius: 34px;
        border-width: 6px;
        padding: 6px;
    }

    .phone-notch {
        width: 56px;
        height: 14px;
        top: 10px;
    }

    .phone-mockup-screen {
        border-radius: 24px;
    }

    .phone-mockup-tilt {
        transform: rotate(-2deg);
        box-shadow:
            0 20px 50px -10px rgba(0, 0, 0, 0.85),
            0 0 0 1px rgba(255, 255, 255, 0.12),
            0 0 40px 5px rgba(255, 150, 0, 0.18);
        animation: phoneFloatMobile 5s ease-in-out infinite;
    }

    @keyframes phoneFloatMobile {
        0%, 100% { transform: rotate(-2deg) translateY(0); }
        50% { transform: rotate(-2deg) translateY(-8px); }
    }

    .hero-floating-cards {
        max-width: 290px;
    }

    .floating-card {
        padding: 6px 10px;
        font-size: 10.5px;
        border-radius: 10px;
        gap: 6px;
    }

    .floating-card .icon {
        width: 13px;
        height: 13px;
    }

    .floating-card-1 {
        top: 10%;
        left: -10px;
    }

    .floating-card-2 {
        bottom: 22%;
        left: -12px;
    }

    .floating-card-3 {
        display: none;
    }

    .floating-card-4 {
        bottom: 10%;
        right: -10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-community-buttons {
        align-items: center;
    }

    .promo-compact {
        flex-direction: column;
        text-align: center;
    }

    .promo-compact-btn {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 72px 12px 30px;
    }

    .hero-badge {
        font-size: 9.5px;
        padding: 4px 10px;
    }

    .hero-title {
        font-size: 21px;
        line-height: 1.14;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.45;
    }

    .hero-cta-group,
    .hero-promo-chip,
    .hero-trust-bar {
        max-width: 100%;
    }

    .phone-mockup {
        width: 190px;
        height: 390px;
        border-radius: 30px;
        border-width: 5px;
        padding: 5px;
    }

    .phone-notch {
        width: 50px;
        height: 12px;
        top: 8px;
    }

    .phone-mockup-screen {
        border-radius: 20px;
    }

    .hero-floating-cards {
        max-width: 265px;
    }

    .floating-card {
        padding: 5px 8px;
        font-size: 9.5px;
    }

    .floating-card-1 {
        top: 8%;
        left: -6px;
    }

    .floating-card-2 {
        bottom: 18%;
        left: -6px;
    }

    .floating-card-4 {
        bottom: 8%;
        right: -6px;
    }

    .video-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        grid-column: span 1;
    }

    .feature-card:nth-child(6) {
        flex-direction: column;
        text-align: center;
    }

    .bookmakers-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MOBILE STICKY CONVERSION DOCK
   =================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 8, 13, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.65);
    transform: translateY(115%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
    }
}

.mobile-sticky-bar.is-visible {
    transform: translateY(0);
}

.mobile-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.mobile-sticky-promo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgba(255, 150, 0, 0.12);
    border: 1px dashed rgba(255, 150, 0, 0.45);
    border-radius: 10px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-sticky-promo:active,
.mobile-sticky-promo.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
}

.mobile-sticky-promo-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.mobile-sticky-promo-code {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    line-height: 1.1;
}

.mobile-sticky-promo.copied .mobile-sticky-promo-code {
    color: #10B981;
}

.mobile-sticky-cta {
    flex: 1;
    padding: 12px 18px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(30, 79, 214, 0.4);
}

