/* ==========================================
   CASINO ELITE - Premium Landing Page 2026
   Modern, Dark Theme with Gold Accents
   ========================================== */

/* CSS Variables */
body.no-scroll {
    overflow: hidden;
}

:root {
    /* Colors */
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #23233b;
    --bg-gradient: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);

    --gold: #ffd700;
    --gold-light: #fff0a8;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    --gold-glow: rgba(255, 215, 0, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #d1d1e0;
    --text-muted: #8a8aab;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    --elite-border: 1px solid rgba(255, 215, 0, 0.2);
    --elite-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);

    /* Spacing */
    --section-padding: 120px 0;
    --card-padding: 32px;
    --border-radius: 20px;
    --border-radius-lg: 32px;
    --border-radius-sm: 12px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Font */
    --font-primary: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* Elite Design Components */
.premium-card-elite {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 26, 0.95) 100%);
    border: var(--elite-border);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.premium-card-elite:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--elite-shadow);
}

.premium-card-elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.badge-elite {
    background: var(--gold-gradient);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.rank-card-grid {
    display: grid;
    grid-template-columns: auto 1.2fr 1fr auto;
    gap: 40px;
    align-items: center;
}

@media (max-width: 1024px) {
    .rank-card-grid {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .rank-card-bonus {
        grid-column: span 2;
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        padding: 15px 0 !important;
        margin: 10px 0;
    }

    .rank-card-actions {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .rank-card-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rank-card-info,
    .rank-card-bonus,
    .rank-card-actions {
        grid-column: span 1;
        justify-content: center;
        align-items: center;
    }

    .rank-card-logo {
        margin: 0 auto;
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

.section-top-padding {
    padding-top: 140px !important;
}

@media (max-width: 900px) {
    .section-top-padding {
        padding-top: 110px !important;
    }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #fff0a8 50%, #b8860b 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

.btn-primary i,
.btn-primary span {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.btn-primary:hover i,
.btn-primary:hover span {
    transform: translateX(4px);
}

@keyframes pulse-elite {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--gold);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 22px 48px;
    font-size: 1.25rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 1.25em;
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.9),
            transparent);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.glow-effect:hover::before {
    left: 150%;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    to {
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6);
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

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

.animate-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 54px;
    /* Space for urgency banner */
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 12px 0;
    background: rgba(10, 10, 18, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    top: 0;
    padding: 8px 0;
    background: rgba(10, 10, 18, 0.95);
    border-bottom-color: var(--gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.75rem;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Language Selector */
.lang-selector {
    position: relative;
    position: relative;
    /* margin-left: 16px; Removed for flex gap */
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.875rem;
}

.lang-btn:hover {
    border-color: var(--gold);
}

.lang-flag {
    font-size: 1.125rem;
}

.lang-code {
    font-weight: 600;
}

.lang-arrow {
    font-size: 0.625rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
}

.lang-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.lang-option:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.lang-option.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

.lang-option .lang-flag {
    font-size: 1.25rem;
}

/* ==========================================
   FLOATING CTA
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
}

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 15, 26, 0.4) 0%,
            var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite 2s;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-cta .btn-primary {
    padding: 20px 48px;
    font-size: 1.25rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-anim 1.5s ease-in-out infinite;
}

@keyframes scroll-anim {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

/* ==========================================
   URGENCY BANNER
   ========================================== */
.urgency-banner {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 100%);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 54px;
    z-index: 1100;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.urgency-icon {
    font-size: 1.5rem;
}

.urgency-text {
    font-weight: 500;
}

.countdown {
    font-weight: 800;
    font-family: monospace;
    font-size: 1.125rem;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

/* ==========================================
   SECTION STYLING
   ========================================== */
.casinos-section,
.bonus-section,
.features-section,
.comparison-section,
.testimonials-section,
.faq-section {
    padding: var(--section-padding);
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

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

.section-text {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================
   CASINO CARDS
   ========================================== */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.casino-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 24px;
    align-items: center;
    padding: var(--card-padding);
    background: var(--bg-card);
    border: var(--elite-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.casino-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.casino-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, var(--bg-card) 100%);
}

.casino-card.featured:hover {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    padding: 8px 18px;
    background: var(--purple-gradient);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-badge.top-pick {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.casino-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.casino-logo {
    width: 90px;
    height: 90px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 2px;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.logo-emoji {
    font-size: 2.5rem;
}

.casino-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.stars {
    color: var(--gold);
    letter-spacing: 1px;
}

.rating-score {
    font-weight: 700;
    color: var(--gold);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.casino-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 10px;
    background: var(--glass-bg);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tag-hot {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.casino-bonus {
    text-align: center;
    padding: 0 24px;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
}

.bonus-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.bonus-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bonus-plus {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.bonus-spins {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-light);
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.bonus-wager {
    font-weight: 600;
}

.casino-features {
    list-style: none;
    display: none;
}

.casino-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.check {
    color: var(--success);
    font-weight: 700;
}

.casino-payments {
    display: none;
    gap: 8px;
    margin-top: 12px;
}

.payment-method {
    padding: 4px 10px;
    background: var(--glass-bg);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    min-width: 220px;
}

.cta-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Featured Card Expanded Layout */
.casino-card.featured {
    grid-template-columns: 1fr;
    padding: 36px;
}

.casino-card.featured .casino-header {
    flex-wrap: wrap;
}

.casino-card.featured .casino-logo {
    width: 100px;
    height: 100px;
}

.casino-card.featured .casino-name {
    font-size: 1.5rem;
}

.casino-card.featured .casino-bonus {
    border: none;
    padding: 24px 0;
}

.casino-card.featured .bonus-value {
    font-size: 3rem;
}

.casino-card.featured .casino-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
    margin-bottom: 16px;
}

.casino-card.featured .casino-payments {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.casino-card.featured .casino-cta {
    max-width: 400px;
    margin: 0 auto;
}

/* ==========================================
   BONUS SECTION
   ========================================== */
.bonus-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.bonus-card {
    padding: var(--card-padding);
    background: var(--bg-card);
    border: var(--elite-border);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.bonus-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.bonus-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.link-arrow:hover {
    text-decoration: underline;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    background: var(--bg-dark);
}

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

.features-content {
    max-width: 560px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 16px 24px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.badge-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: #000;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */
.comparison-section {
    background: var(--bg-card);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table tbody tr {
    transition: var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-premium tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Phase 11: Blog Ecosystem Styles */
.blog-hub-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
        url('https://images.unsplash.com/photo-1518133910546-b6c2fb7d79e3?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Article Template Styles */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    padding: 60px 0;
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        order: 2;
    }
}

.article-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2,
.article-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.article-content p {
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.article-sidebar .sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.native-cta-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(88, 28, 135, 0.2));
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 640px) {
    .native-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

.cta-icon-large {
    font-size: 3rem;
}

.cta-text h4 {
    margin: 0 0 10px;
    color: #fff;
}

.cta-text p {
    margin: 0 0 20px;
    font-size: 0.9rem;
}

.featured-row {
    background: rgba(255, 215, 0, 0.03) !important;
}

.table-casino {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

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

.score {
    padding: 4px 10px;
    background: var(--glass-bg);
    border-radius: 4px;
    font-weight: 700;
}

.score.high {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    background: var(--bg-dark);
}

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

.testimonial-card {
    padding: var(--card-padding);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background: var(--bg-card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a12 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.final-cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.final-cta-buttons {
    margin-bottom: 24px;
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================
   TRUST SECTION
   ========================================== */
.trust-section {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge .badge-icon {
    font-size: 2rem;
}

.trust-badge span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ==========================================
   PREMIUM TRUST SECTION
   ========================================== */
.trust-premium-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0f1a 0%, #0d1525 50%, #0a0f1a 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.trust-premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.trust-premium-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.trust-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trust-premium-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.trust-premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0));
    -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.4s;
}

.trust-premium-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
}

.trust-premium-card:hover::before {
    opacity: 1;
}

.trust-premium-icon {
    position: relative;
    margin-bottom: 16px;
}

.trust-premium-icon span {
    font-size: 2.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.trust-premium-icon .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-premium-card:hover .icon-glow {
    opacity: 1;
}

.trust-premium-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.trust-premium-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

.trust-premium-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-premium-status .status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

@media (max-width: 1024px) {
    .trust-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-premium-section {
        padding: 60px 0;
    }

    .trust-premium-title {
        font-size: 1.5rem;
    }

    .trust-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-premium-card {
        padding: 20px 15px;
    }

    .trust-premium-icon span {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-premium-grid {
        grid-template-columns: 1fr;
    }

    .trust-premium-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 16px 20px;
    }

    .trust-premium-icon {
        margin-bottom: 0;
    }

    .trust-premium-content {
        flex: 1;
    }

    .trust-premium-status {
        margin-top: 0;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-card);
    padding: 80px 0 32px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 16px 0 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-disclaimer {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--border-radius-sm);
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-disclaimer a {
    color: #f87171;
}

.footer-copyright p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-image {
        order: -1;
        text-align: center;
    }

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

@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9998;
        padding: 40px;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        opacity: 0;
        transform: scale(1.1);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: scale(1);
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .nav-links a::before {
        content: attr(data-icon);
        font-size: 1.8rem;
    }

    .header .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 9999;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

    .casino-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .casino-bonus {
        border: none;
        padding: 0;
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        padding: 20px 0;
    }

    .casino-cta {
        min-width: 100%;
    }

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

    .comparison-table {
        font-size: 0.8125rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .floating-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --card-padding: 20px;
    }

    .urgency-banner {
        position: relative;
        height: auto;
        padding: 10px 0;
        z-index: 1001;
    }

    .header {
        position: sticky;
        top: 0;
        margin-top: 0;
    }

    .hero {
        padding-top: 40px;
        /* Adjust for no fixed header overlay acting same way */
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .bonus-amount {
        flex-wrap: wrap;
    }

    .bonus-value {
        font-size: 2rem;
    }

    .casino-card.featured .bonus-value {
        font-size: 2.5rem;
    }
}

/* ==========================================
   CONVERSION OPTIMIZATION STYLES
   ========================================== */

/* Live Winners Feed */
.live-winners {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1002;
    pointer-events: none;
}

.winner-toast {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
}

.winner-toast.active {
    transform: translateX(0);
    opacity: 1;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.875rem;
}

.winner-info {
    display: flex;
    flex-direction: column;
}

.winner-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.winner-amount {
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
}

/* Promo Badge */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.promo-badge:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.promo-code {
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.promo-copy-icon {
    font-size: 0.9rem;
    opacity: 0.7;
}

.promo-badge.copied::after {
    content: 'Copié !';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    animation: fadeInOut 1.5s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    20% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    80% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
}

/* Quick Selector */
.quick-selector {
    margin-top: 40px;
    text-align: center;
    animation: fadeInUp 1s ease 0.5s both;
}

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

.selector-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.selector-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.selector-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-emoji {
    font-size: 1.25rem;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    box-shadow: 0 0 10px 1px rgba(255, 215, 0, 0.3);
    animation: floatParticle var(--duration) linear infinite, twinkle 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .cta-wrapper {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .live-winners {
        top: auto;
        bottom: 80px;
        left: 10px;
        right: 10px;
    }

    .winner-toast {
        width: 100%;
        transform: translateY(120%);
    }

    .winner-toast.active {
        transform: translateY(0);
    }
}

/* ==========================================
   QUIZ SECTION
   ========================================== */
.quiz-section {
    padding: 60px 0;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.quiz-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: var(--elite-border);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quiz-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--purple-gradient);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.quiz-header h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quiz-opt {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.quiz-opt:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.result-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.result-content {
    display: none;
    animation: fadeInUp 0.8s ease;
}

.result-content.hidden {
    display: none;
}

.match-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid var(--gold);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.match-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.match-info h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.match-bonus {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 10px;
}

/* ==========================================
   SEO CONTENT & STICKY FOOTER
   ========================================== */
.seo-wiki-section {
    padding: 80px 0;
    background: #08080c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wiki-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.wiki-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wiki-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.wiki-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.wiki-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.wiki-main section {
    margin-bottom: 40px;
}

.wiki-main h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.wiki-main p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.wiki-list {
    list-style: none;
    padding-left: 0;
}

.wiki-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.wiki-list strong {
    color: white;
}

.wiki-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.sidebar-box h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box li {
    margin-bottom: 10px;
}

.sidebar-box a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-box a:hover {
    color: var(--gold);
}

.check-list li {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

    .wiki-sidebar {
        order: -1;
    }
}

.sticky-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-top: 1px solid var(--gold);
    z-index: 1000;
    display: none;
    /* JS will toggle this */
    animation: slideUp 0.3s ease;
}

.smf-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.smf-info {
    display: flex;
    flex-direction: column;
}

.smf-title {
    font-weight: 700;
    color: white;
}

.smf-bonus {
    color: var(--gold);
    font-weight: 800;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .match-card {
        flex-direction: column;
        text-align: center;
    }

    .final-cta-section {
        padding-bottom: 100px;
        /* Space for sticky footer */
    }
}

/* ==========================================
   HOME HUB EXPANSION
   ========================================== */
.latest-reviews-showcase {
    padding: 120px 0;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a14 0%, #050510 100%);
    position: relative;
    overflow: hidden;
}

.latest-reviews-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.2);
    }
}

.reviews-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.review-mini-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 40px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

.review-mini-card:nth-child(2) {
    animation-delay: 2s;
}

.review-mini-card:nth-child(3) {
    animation-delay: 4s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.review-mini-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            var(--gold) 0%,
            rgba(255, 215, 0, 0.5) 25%,
            transparent 50%,
            rgba(255, 215, 0, 0.5) 75%,
            var(--gold) 100%);
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.review-mini-card:hover::before {
    opacity: 1;
}

.review-mini-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mini-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.mini-score {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.mini-score::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.review-mini-card h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.review-mini-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-mini-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.read-more {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.review-mini-card:hover .read-more {
    gap: 12px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-corner-teaser {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bonus-corner-teaser::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 215, 0, 0.3) 50%,
            transparent 100%);
    transform: translateY(-50%);
}

.bonus-teaser-inner {
    background: linear-gradient(135deg,
            rgba(30, 30, 50, 0.8) 0%,
            rgba(10, 10, 20, 0.9) 100%);
    backdrop-filter: blur(30px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 32px;
    padding: 50px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 215, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-teaser-inner::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
            var(--gold) 0%,
            rgba(255, 215, 0, 0.3) 25%,
            transparent 50%,
            rgba(255, 215, 0, 0.3) 75%,
            var(--gold) 100%);
    background-size: 400% 400%;
    border-radius: 32px;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {

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

    50% {
        background-position: 100% 50%;
    }
}

.bonus-teaser-inner::after {
    content: '🎁';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15rem;
    opacity: 0.03;
    pointer-events: none;
    animation: floatBonus 6s ease-in-out infinite;
}

@keyframes floatBonus {

    0%,
    100% {
        transform: translateY(-50%) rotate(-5deg);
    }

    50% {
        transform: translateY(-55%) rotate(5deg);
    }
}

.bonus-teaser-inner:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 80px rgba(255, 215, 0, 0.2);
}

.bonus-tag {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.bonus-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: slideShine 3s infinite;
}

@keyframes slideShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.teaser-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin: 15px 0;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teaser-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

.teaser-content p strong {
    color: var(--gold);
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.teaser-cta .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.teaser-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .bonus-teaser-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .bonus-teaser-inner::after {
        font-size: 8rem;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }
}

/* ==========================================
   PREMIUM TRUST & SECURITY SECTION
   ========================================== */
.trust-elite-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a14 0%, #050510 100%);
    position: relative;
    overflow: hidden;
}

.trust-elite-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: trustPulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes trustPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.trust-elite-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.trust-title {
    font-size: 3rem;
    color: #fff;
    margin: 25px 0 15px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.trust-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.trust-elite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.trust-elite-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-elite-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.4) 0%,
            rgba(255, 215, 0, 0.4) 50%,
            rgba(16, 185, 129, 0.4) 100%);
    background-size: 200% 200%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderFlow 4s ease infinite;
}

@keyframes borderFlow {

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

    50% {
        background-position: 100% 50%;
    }
}

.trust-elite-card:hover::before {
    opacity: 1;
}

.trust-elite-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.25),
        0 0 40px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.trust-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.trust-elite-card:hover .trust-icon-bg {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    animation: iconPulseHover 1.5s ease-in-out infinite;
}

@keyframes iconPulseHover {

    0%,
    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.trust-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(16, 185, 129, 0.4));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(-5deg);
    }

    75% {
        transform: translateY(-4px) rotate(5deg);
    }
}

.trust-elite-card:hover .trust-icon {
    filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.6));
    animation: iconFloatHover 2s ease-in-out infinite;
}

@keyframes iconFloatHover {

    0%,
    100% {
        transform: translateY(-5px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-12px) rotate(8deg) scale(1.1);
    }
}

.trust-card-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.trust-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.trust-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.3) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.trust-elite-card:hover .trust-card-badge {
    background: var(--gold-gradient);
    border-color: var(--gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 2rem;
    }

    .trust-elite-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-elite-card {
        padding: 35px 25px;
    }
}

/* ==========================================
   ADVANCED FOOTER & NAVIGATION

   ========================================== */
.footer-new {
    background: #050510;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 80px 0 40px;
    margin-top: 100px;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.6;
    max-width: 400px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

.compliance-icons {
    display: flex;
    gap: 30px;
    opacity: 0.3;
    filter: grayscale(1);
    transition: opacity 0.3s ease;
}

.compliance-icons:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-top: 40px;
    /* Ajout d'air sous le header */
    font-size: 0.95rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs .current {
    color: var(--gold);
    font-weight: 600;
}

/* ==========================================
   REVIEW PAGES (ELITE DESIGN)
   ========================================== */
.review-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent),
        linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    border-bottom: var(--elite-border);
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    margin-top: 50px;
}

.review-score {
    background: var(--gold-gradient);
    color: #000;
    padding: 25px 40px;
    border-radius: var(--border-radius);
    display: inline-block;
    font-weight: 900;
    font-size: 2.5rem;
    box-shadow: 0 10px 40px var(--gold-glow);
    margin-bottom: 30px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 50px 0;
}

.pros,
.cons {
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pros {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pros:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);
}

.cons {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cons:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.4);
}

.sticky-sidebar {
    position: sticky;
    top: 120px;
}

.review-cta-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: var(--elite-border);
    box-shadow: var(--glass-shadow);
    text-align: center;
}

.review-cta-box img {
    filter: drop-shadow(0 0 15px var(--gold-glow));
}

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

    .pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   REVIEW INTERACTIVITY (QUICK BAR & FAQ)
   ========================================== */
.review-quick-bar {
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 18px 0;
    position: sticky;
    top: 60px;
    /* Ajusté pour coller sous le header une fois scrollé */
    z-index: 900;
    display: none;
    line-height: normal;
    margin-top: 110px;
    /* Evite d'être caché par le header fixed au chargement */
}

body.review-page-active .review-quick-bar {
    display: block;
}

.quick-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 48px;
    /* Hauteur fixe pour alignement parfait */
}

.quick-stat-item {
    display: flex;
    flex-direction: column;
}

.quick-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-stat-value {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-section {
    margin: 80px 0;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item-new {
    background: rgba(255, 255, 255, 0.04);
    border: var(--elite-border);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item-new:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.faq-question-new {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.faq-answer-new {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #aaa;
    line-height: 1.8;
}

.faq-item-new.active {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.04);
}

.faq-item-new.active .faq-answer-new {
    padding: 0 30px 30px;
    max-height: 300px;
}

.faq-question-new::after {
    content: '+';
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-item-new.active .faq-question-new::after {
    transform: rotate(45deg);
}

/* ==========================================
   BONUS COMPARISON TABLE
   ========================================== */
.comparison-section {
    margin: 100px 0;
}

.table-responsive {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: var(--elite-border);
    box-shadow: var(--glass-shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    text-align: left;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.table-casino-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.table-casino-logo {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-bonus-val {
    font-weight: 700;
    color: #fff;
}

.table-wager {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.code-badge-new {
    background: rgba(255, 255, 255, 0.07);
    border: 1px dashed var(--gold);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
}

.code-badge-new:hover {
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: scale(1.05);
}

/* FAQ Optimization */
.faq-section {
    padding: 80px 0;
    margin: 40px auto;
}

.faq-section h2 {
    text-align: center !important;
    width: 100%;
    margin-bottom: 50px;
}

.code-badge-new.copied {
    background: #00ff00;
    color: #000;
    border-style: solid;
}

/* Premium Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid var(--glass-border);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 215, 0, 0.05);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.user-avatar {
    width: 54px;
    height: 54px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.user-info h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verify-badge {
    background: #4ade80;
    color: #000;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.user-info h4 span.verify-badge {
    margin-left: 5px;
}

.user-info span {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-text {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Premium Review Components */
.pros-cons-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pros-box,
.cons-box {
    padding: 30px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-box {
    border-left: 4px solid #00ff00;
}

.cons-box {
    border-left: 4px solid #ff4444;
}

.pros-box h4,
.cons-box h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box li,
.cons-box li {
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
}

.pros-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff00;
}

.cons-box li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff4444;
}

.verdict-box-new {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
}

.verdict-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.verdict-score-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.score-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

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

.score-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
}

.rating-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    display: flex;
    gap: 2px;
}

/* Similar Casinos Section */
.similar-reviews-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.1);
}

.similar-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.similar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.similar-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.03);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.similar-card-logo {
    width: 50px;
    height: 50px;
    background: #000;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.similar-card-info h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.similar-card-info .score {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
}

.similar-card-link {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.similar-card:hover .similar-card-link {
    color: var(--gold);
    transform: translateX(5px);
}

/* Phase 10: Premium Bonus Hub Styles */
/* Phase 10 & 11: Premium Header Overrides */
.bonus-hub .header,
.blog-hub .header,
.blog-article .header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: fixed;
    top: 54px;
    /* Space for urgency banner */
    width: 100%;
    z-index: 1000;
}

.bonus-hero-premium,
.blog-hub-hero {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at center, rgba(88, 28, 135, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%),
        url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=2070&auto=format&fit=crop');
    /* Fallback luxury image if local fails */
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 60px;
    overflow: hidden;
}

/* Use the generated image if possible */
.bonus-hero-premium {
    background-image: radial-gradient(circle at center, rgba(88, 28, 135, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%),
        url('/Users/fran/.gemini/antigravity/brain/fa3caa87-36c5-45b8-a4e9-c281cf9173c1/premium_bonus_hero_bg_1769697901122.png');
}

.bonus-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 1;
}

.bonus-hero-content {
    position: relative;
    z-index: 2;
}

.bonus-filter-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.bonus-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card-luxury {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-card-luxury:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.luxury-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bonus-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.bonus-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    list-style-type: none;
}

.bonus-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.comparison-premium {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   PHASE 12: HOMEPAGE PREMIUM UX OVERHAUL
   ========================================================================== */

/* 1. Enhanced Hero Section */
.hero.premium-luxe {
    padding-top: 220px !important;
    padding-bottom: 150px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-luxury-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.luxury-float {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float-slow 25s infinite alternate ease-in-out;
}

.float-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 215, 0, 0.3);
    top: -150px;
    right: -150px;
}

.float-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.3);
    bottom: -100px;
    left: -150px;
    animation-delay: -5s;
}

.float-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.25);
    top: 30%;
    left: 50%;
    animation-delay: -12s;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(100px, 150px) rotate(20deg) scale(1.1);
    }
}

/* 2. Premium Casino Cards (Homepage) */
.premium-card-elite {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card-elite::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.premium-card-elite:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.15);
}

.premium-card-elite:hover::after {
    opacity: 1;
}

.premium-card-elite .card-header-luxury {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-card-elite .casino-logo-large {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    background: #000;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.premium-card-elite .bonus-highlight {
    padding: 30px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-card-elite .bonus-amount-luxury {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}

.premium-card-elite .bonus-label-luxury {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.premium-card-elite .features-luxury {
    padding: 30px;
    flex-grow: 1;
}

.premium-card-elite .feature-item-luxury {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.premium-card-elite .feature-item-luxury i {
    color: var(--gold);
    font-size: 1.2rem;
}

.premium-card-elite .card-actions-luxury {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-card-elite .card-actions-luxury .btn-outline {
    flex: 0 0 auto;
}

.premium-card-elite .card-actions-luxury .btn-primary {
    flex: 1;
}

/* 3. Expert Pick Indicator */
.expert-choice-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 10px 45px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* 5. Section Titles Luxe */
.luxury-heading {
    text-align: center;
    margin-bottom: 80px;
}

.luxury-heading .badge-gold {
    display: inline-block;
    margin-bottom: 20px;
}

.luxury-heading h2 {
    font-size: 4rem;
    font-weight: 900;
}

/* ==========================================
   SOCIAL PROOF BAR
   ========================================== */
.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.proof-item strong {
    color: var(--gold);
    font-weight: 800;
}

.proof-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.proof-icon {
    font-size: 1.1rem;
}

.proof-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   ANIMATED BONUS AMOUNT
   ========================================== */
.hero-title-animated {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.15;
}

.bonus-animated {
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    animation: bonus-pulse 2s ease-in-out infinite;
}

@keyframes bonus-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.bonus-animated::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    z-index: -1;
    animation: bonus-glow 2s ease-in-out infinite;
}

@keyframes bonus-glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ==========================================
   PERSONAL TIMER
   ========================================== */
.personal-timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(234, 88, 12, 0.15));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: #fca5a5;
    animation: timer-pulse 2s infinite;
}

@keyframes timer-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
}

.personal-timer strong {
    color: #fff;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

.timer-icon {
    font-size: 1.2rem;
}

/* ==========================================
   HERO MAIN CTA ENHANCED
   ========================================== */
.hero-main-cta {
    padding: 22px 48px !important;
    font-size: 1.2rem !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: cta-shine 3s infinite;
}

@keyframes cta-shine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

/* ==========================================
   FORTUNE WHEEL
   ========================================== */
.fortune-wheel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.fortune-wheel-modal {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: wheel-modal-appear 0.5s ease-out;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
}

@keyframes wheel-modal-appear {
    from {
        transform: scale(0.8) translateY(30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.wheel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.wheel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.wheel-header h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.wheel-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 30px auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#ffd700 0deg 45deg,
            #1e293b 45deg 90deg,
            #ffd700 90deg 135deg,
            #1e293b 135deg 180deg,
            #ffd700 180deg 225deg,
            #1e293b 225deg 270deg,
            #ffd700 270deg 315deg,
            #1e293b 315deg 360deg);
    border: 6px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel.spinning {
    transform: rotate(var(--rotation, 1800deg));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--gold);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.wheel-segments {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-segment {
    position: absolute;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.wheel-segment:nth-child(1) {
    transform: rotate(22.5deg) translateY(-100px);
}

.wheel-segment:nth-child(2) {
    transform: rotate(67.5deg) translateY(-100px);
}

.wheel-segment:nth-child(3) {
    transform: rotate(112.5deg) translateY(-100px);
}

.wheel-segment:nth-child(4) {
    transform: rotate(157.5deg) translateY(-100px);
}

.wheel-segment:nth-child(5) {
    transform: rotate(202.5deg) translateY(-100px);
}

.wheel-segment:nth-child(6) {
    transform: rotate(247.5deg) translateY(-100px);
}

.wheel-segment:nth-child(7) {
    transform: rotate(292.5deg) translateY(-100px);
}

.wheel-segment:nth-child(8) {
    transform: rotate(337.5deg) translateY(-100px);
}

.wheel-segment span {
    display: block;
    transform: rotate(90deg);
}

.spin-btn {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.spin-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.wheel-result {
    display: none;
    animation: result-appear 0.5s ease-out;
}

.wheel-result.active {
    display: block;
}

@keyframes result-appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-prize {
    font-size: 3rem;
    margin-bottom: 10px;
}

.result-text {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-proof-bar {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
    }

    .proof-divider {
        display: none;
    }

    .hero-title-animated {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .personal-timer {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .hero-main-cta {
        padding: 16px 32px !important;
        font-size: 1rem !important;
    }

    .fortune-wheel-modal {
        padding: 24px;
        margin: 16px;
    }

    .wheel-container {
        width: 220px;
        height: 220px;
    }

    .wheel-header h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   PREMIUM GAMIFIED QUIZ SECTION
   ========================================== */
.quiz-premium-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0f1a 0%, #131b2e 50%, #0a0f1a 100%);
    position: relative;
    overflow: hidden;
}

.quiz-premium-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.05);
}

/* Floating Decorations */
.quiz-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.quiz-decoration-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.quiz-decoration-2 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.quiz-decoration-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Header */
.quiz-premium-header {
    margin-bottom: 40px;
}

.quiz-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.quiz-premium-badge .badge-icon {
    font-size: 1.2rem;
}

.quiz-premium-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.quiz-premium-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.quiz-premium-subtitle strong {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Progress Bar */
.quiz-progress-container {
    max-width: 400px;
    margin: 30px auto 0;
}

.quiz-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.quiz-progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s;
}

.progress-step.active {
    background: var(--gold-gradient);
    border-color: var(--gold);
    color: #000;
}

/* Questions */
.quiz-question {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

/* Options Grid */
.quiz-premium-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-premium-options.two-cols {
    flex-direction: row;
    max-width: 700px;
}

.quiz-premium-opt {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    border-radius: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
}

.quiz-premium-opt:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.03));
    border-color: var(--gold);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
}

.quiz-premium-opt.featured {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
}

.quiz-premium-opt .opt-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    flex-shrink: 0;
}

.quiz-premium-opt .opt-content {
    flex: 1;
}

.quiz-premium-opt .opt-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.quiz-premium-opt .opt-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.quiz-premium-opt .opt-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-10px);
}

.quiz-premium-opt:hover .opt-arrow {
    opacity: 1;
    transform: translateX(0);
}

.quiz-premium-opt .opt-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Big Options for Step 3 */
.quiz-premium-opt.big {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    flex: 1;
}

.quiz-premium-opt.big:hover {
    transform: translateY(-8px);
}

.quiz-premium-opt .opt-icon-big {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Result Section */
.result-celebration {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.result-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 25px;
}

.result-match-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    max-width: 500px;
    text-align: left;
    position: relative;
}

.result-match-card .match-rank {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.9rem;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
}

.result-match-card .match-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.result-match-card .match-details h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
}

.result-match-card .match-details p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.result-match-card .match-score {
    color: #22c55e;
    font-size: 1.2rem;
}

.result-match-card .match-bonus-tag {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.quiz-cta {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quiz-premium-wrapper {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .quiz-premium-title {
        font-size: 1.8rem;
    }

    .quiz-question {
        font-size: 1.3rem;
    }

    .quiz-premium-options.two-cols {
        flex-direction: column;
    }

    .quiz-premium-opt {
        padding: 16px 20px;
    }

    .quiz-premium-opt .opt-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .result-match-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .quiz-decoration {
        display: none;
    }
}

/* ==========================================
   GLOBAL RESPONSIVE OVERRIDES
   Full mobile compatibility for all pages
   ========================================== */

/* Tablet and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

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

    .features-image {
        order: -1;
    }

    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {

    /* Force prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .lang-selector .lang-code {
        display: none;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }

    /* Section Headers */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Casino Cards */
    .casino-list {
        gap: 20px;
    }

    .casino-card {
        padding: 20px;
        border-radius: 16px;
    }

    .casino-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .casino-logo {
        width: 70px;
        height: 70px;
    }

    .casino-features {
        padding-left: 0;
    }

    .casino-features li {
        font-size: 0.9rem;
    }

    /* Bonus Grid */
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Tables - horizontal scroll */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }

    .comparison-table {
        min-width: 700px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 18px;
    }

    /* Footer */
    .footer-grid,
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom,
    .footer-bottom-new {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Trust badges */
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 10px);
    }

    /* Buttons */
    .btn-lg,
    .btn-xl {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Urgency Banner */
    .urgency-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .urgency-banner .btn {
        margin-top: 10px;
    }

    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.6rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .casino-card {
        padding: 16px;
    }

    .bonus-amount {
        flex-direction: column;
    }

    .bonus-value {
        font-size: 2rem;
    }

    .trust-badge {
        flex: 0 0 100%;
    }

    /* Floating CTA hide on small screens */
    .floating-cta {
        display: none;
    }
}

/* ==========================================
   MOBILE STICKY CTA (Bottom Banner - Redesign)
   ========================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    padding: 16px 24px;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    animation: bounce-in 1s forwards 1s;
}

@keyframes bounce-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-sticky-cta a {
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-sticky-cta a i {
    font-size: 1.25rem;
}

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

/* ==========================================
   ENHANCED MOBILE RESPONSIVE FIXES
   ========================================== */
@media (max-width: 768px) {

    /* Winner Toast - Smaller and repositioned */
    .live-winners {
        top: auto;
        bottom: 70px;
        /* Above sticky CTA */
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .winner-toast {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 10px;
        gap: 8px;
    }

    .winner-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .winner-details .winner-name {
        font-size: 0.85rem;
    }

    .winner-details .winner-game {
        font-size: 0.7rem;
    }

    .winner-amount {
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    /* Hero Section - Better mobile spacing */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-cta .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Casino Cards - Stack buttons */
    .casino-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .casino-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Exit Modal - Better mobile sizing */
    .exit-modal {
        width: 90%;
        max-width: 340px;
        padding: 24px;
    }

    .exit-modal h2 {
        font-size: 1.3rem !important;
    }

    .exit-modal p {
        font-size: 0.9rem !important;
    }

    /* Blog Grid - Single column on mobile */
    #blog-feed {
        grid-template-columns: 1fr !important;
    }

    /* Newsletter form - Stack on mobile */
    .newsletter-form {
        flex-direction: column !important;
    }

    .newsletter-form input {
        min-width: 100% !important;
    }

    /* Jackpot Ticker - Reduce size */
    .jackpot-ticker {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .jackpot-counter {
        font-size: 1.3rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {

    /* Even smaller winner toast */
    .winner-toast {
        padding: 6px 10px;
    }

    .winner-avatar {
        width: 28px;
        height: 28px;
    }

    /* Hero - Ultra compact */
    .hero {
        padding: 80px 0 50px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Trust items - Stack on very small screens */
    .hero-trust {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .trust-item {
        flex-direction: row;
        gap: 8px;
    }

    .trust-number {
        font-size: 1.25rem;
    }

    /* Urgency banner - More compact */
    .urgency-banner {
        height: auto;
        padding: 8px 0;
    }

    .countdown {
        font-size: 0.95rem;
        padding: 3px 8px;
    }

    /* Final CTA section - Mobile optimization */
    .final-cta-box {
        padding: 40px 20px !important;
    }

    .final-cta-box h2 {
        font-size: 1.8rem !important;
    }

    .final-cta-box p {
        font-size: 1rem !important;
    }

    .final-cta-box .btn {
        min-width: 100% !important;
        padding: 18px 24px !important;
        font-size: 1rem !important;
    }

    .secure-badges {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .secure-badges>div {
        justify-content: center;
    }
}

/* ==========================================
   AVIS EXPRESS WIDGET (Premium Blog Integration)
   ========================================== */
.avis-express-container {
    margin: 40px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.avis-express-container:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.avis-express-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avis-express-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.avis-express-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.avis-express-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.avis-express-details h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.avis-express-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating-stars {
    color: var(--gold);
    font-weight: 900;
}

.avis-express-badge {
    align-self: flex-start;
    background: linear-gradient(90deg, #ffd700 0%, #d4af37 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .avis-express-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }

    .avis-express-info {
        flex-direction: column;
        gap: 15px;
    }

    .avis-express-badge {
        align-self: center;
    }

    .avis-express-container .btn {
        width: 100%;
        padding: 18px;
    }
}

/* Footer Country Grid */
.footer-country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.footer-country-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.country-flag {
    font-size: 1.2rem;
}

.country-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   CONVERSION ELEMENTS (GLOBAL)
   ========================================== */

.toast-notification {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9998;
    transform: translateX(150%);
    transition: transform 0.5s ease;
    max-width: 280px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-amount {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffd700;
}

.exit-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.exit-modal-overlay.show {
    display: flex;
}

.exit-modal {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    text-align: center;
    position: relative;
    animation: modalBounce 0.5s ease;
}

.exit-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes modalBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 90px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ==========================================
   LANGUAGE SELECTOR - PREMIUM DESIGN
   ========================================== */

/* Header Language Selector */
.lang-selector {
    position: relative;
    z-index: 1001;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-trigger:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.25);
}

.lang-selector.open .lang-trigger {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.lang-trigger .flag-icon {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-trigger .lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-trigger .chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.lang-selector.open .lang-trigger .chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 30px rgba(255, 215, 0, 0.05);
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Language Option */
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.lang-option:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--text-primary);
}

.lang-option.active {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
}

.lang-option.active::after {
    content: '✓';
    position: absolute;
    right: 14px;
    font-size: 0.85rem;
    color: var(--gold);
}

.lang-option .flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-option .lang-name {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Dropdown Divider */
.lang-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 0;
}

/* ==========================================
   FOOTER LANGUAGE GRID
   ========================================== */

.footer-lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.footer-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.footer-lang-item:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-lang-item.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.25);
    color: var(--gold);
}

.footer-lang-item .country-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.footer-lang-item .country-name {
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lang-selector {
        order: -1;
    }

    .lang-trigger {
        padding: 6px 10px;
    }

    .lang-trigger .lang-code {
        display: none;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
        min-width: 200px;
    }

    .footer-lang-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lang-dropdown {
        position: fixed;
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 80px;
        min-width: auto;
        max-height: 60vh;
        overflow-y: auto;
    }
}