:root {
    --gold: #ffd700;
    --gold-2: #f5c518;
    --gold-3: #e5b800;
    --gold-soft: rgba(255, 215, 0, 0.15);
    --gold-glow: rgba(255, 215, 0, 0.4);
    --red: #dc2626;
    --red-2: #b91c1c;
    --dark-bg: #0a0a12;
    --dark-bg-2: #0d0d1a;
    --dark-bg-3: #141423;
    --dark-card: #161625;
    --dark-card-2: #1b1b2e;
    --dark-border: rgba(255, 215, 0, 0.12);
    --dark-border-2: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-cream: #f5f0e1;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.18);
    --shadow-dark: 0 12px 40px rgba(0, 0, 0, 0.5);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body.casino-theme {
    font-family: 'Poppins', system-ui, sans-serif;
    background: var(--dark-bg);
    color: var(--text-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body.casino-theme::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 215, 0, 0.07), transparent),
        radial-gradient(ellipse 60% 40% at 10% 10%, rgba(220, 38, 38, 0.05), transparent),
        radial-gradient(ellipse 60% 40% at 90% 30%, rgba(255, 215, 0, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

body.casino-theme::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.7  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-repeat: repeat;
    opacity: 0.6;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul { list-style: none; }

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

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

:target {
    scroll-margin-top: 90px;
}

input, textarea, select {
    font-size: 16px;
    font-family: inherit;
}

.gold-text {
    background: linear-gradient(135deg, #ffd700 0%, #f5c518 40%, #e5b800 70%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hl-gold {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 14px var(--gold-glow);
}

/* ========== REVEAL ON SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== GRADIENT BORDER WRAPPER */
.gradient-border {
    position: relative;
    isolation: isolate;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--gold) 0%, rgba(255,215,0,0.2) 25%, transparent 60%, rgba(220,38,38,0.3) 100%);
    -webkit-mask: linear-gradient(#000 #000) content-box, linear-gradient(#000 #000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}
.gradient-border:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--red) 50%, var(--gold-2) 100%);
}

/* ========== TILT CARD HOVER */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

/* ========== CASINO HEADER */
.casino-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.98) 0%, rgba(13, 13, 26, 0.95) 100%);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    border-bottom: 1px solid var(--dark-border);
    transition: box-shadow 0.4s ease;
}
.casino-header.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 1px 0 var(--dark-border);
}

.casino-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 5%;
    gap: 1rem;
}

.casino-logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.casino-logo .logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.casino-logo a:hover .logo-img {
    transform: scale(1.04);
}

.casino-logo .logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px var(--gold-glow));
    animation: logoSpin 6s ease-in-out infinite;
}

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

.casino-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--text-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.casino-nav ul {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.casino-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-cream);
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 0.2px;
}

.casino-nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.casino-nav a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.casino-header-cta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.casino-btn-login {
    color: var(--text-cream);
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--dark-border-2);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.casino-btn-login:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-soft);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.15);
}

.casino-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
    color: #1a1a0f;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-btn-gold::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 0.6s ease;
}
.casino-btn-gold:hover::before {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.casino-btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.2) inset, 0 2px 0 rgba(255, 255, 255, 0.5) inset;
}

.casino-btn-gold:hover::after { left: 100%; }

.casino-btn-gold svg { width: 18px; height: 18px; position: relative; z-index: 2; }
.casino-btn-gold span { position: relative; z-index: 2; }

.btn-xl {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    border-radius: 12px;
}
.btn-xl svg { width: 20px; height: 20px; }

.btn-xxl {
    padding: 1.2rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

.casino-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-cream);
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    border: 1.5px solid var(--dark-border-2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.casino-btn-ghost:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.12);
}

.casino-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    position: relative;
    overflow: hidden;
}
.casino-btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}
.casino-btn-outline:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); color: #1a1a0f; border-color: var(--gold); }
.casino-btn-outline:hover::before { transform: scaleX(1); }
.casino-btn-outline > * { position: relative; z-index: 2; }
.casino-btn-outline svg { width: 18px; height: 18px; }

.dark-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}
.dark-outline::before { display: none; }
.dark-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: var(--text-white);
}

.casino-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001;
    order: 3;
}

.casino-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.casino-mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.casino-mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.casino-mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============= HERO ============= */
.casino-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 18, 0.4) 0%, var(--dark-bg) 100%),
        radial-gradient(circle at 70% 30%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 215, 0, 0.025) 0px, rgba(255, 215, 0, 0.025) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(220, 38, 38, 0.02) 0px, rgba(220, 38, 38, 0.02) 1px, transparent 1px, transparent 20px);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* Hero confetti (index) */
.hero-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.hero-confetti span {
    position: absolute;
    top: -10%;
    left: var(--l);
    font-size: 1.3rem;
    color: var(--c);
    opacity: 0;
    filter: drop-shadow(0 4px 12px currentColor);
    animation: fallDown 8s linear infinite;
    animation-delay: var(--d);
}
@keyframes fallDown {
    0% { transform: translateY(-10%) rotate(0); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(120vh) rotate(720deg); opacity: 0; }
}

.casino-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-live-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    position: relative;
    animation: livePulse 1.4s ease-in-out infinite;
}
.live-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(239,68,68,0.4);
    animation: livePulseRing 1.4s ease-out infinite;
}
@keyframes livePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
@keyframes livePulseRing {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}
.live-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fca5a5;
    letter-spacing: 0.5px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--gold);
    padding: 0.4rem 1rem;
    background: var(--gold-soft);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: fadeSlideUp 0.8s ease-out;
    backdrop-filter: blur(8px);
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
    animation: fadeSlideUp 0.9s ease-out 0.1s both;
}

.hero-accent {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 0.95em;
    background: linear-gradient(135deg, #dc2626, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gold {
    background: linear-gradient(135deg, #ffd700 0%, #f5c518 40%, #e5b800 70%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 20px var(--gold-glow));
    position: relative;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    animation: fadeSlideUp 1s ease-out 0.2s both;
}

.hero-actions-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeSlideUp 1.1s ease-out 0.3s both;
}

.hero-trust-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 1.2s ease-out 0.4s both;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border-2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-cream);
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* Hero quick stats (index) */
.hero-quick-stats {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,215,0,0.04));
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(14px);
    animation: fadeSlideUp 1.3s ease-out 0.5s both;
}
.qs-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}
.qs-num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-white);
    line-height: 1;
    display: inline;
}
.qs-suffix {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 2px;
}
.qs-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
}
.qs-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--dark-border-2), transparent);
}

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

.casino-hero-visual {
    position: relative;
    height: 520px;
    animation: floatY 6s ease-in-out infinite;
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, rgba(220, 38, 38, 0.1) 40%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Hero Wheel (index) */
.hero-wheel-wrap {
    position: absolute;
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
}
.hero-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--gold);
    opacity: 0.35;
}
.hero-ring-outer {
    animation: spinCW 30s linear infinite;
    border-color: rgba(255, 215, 0, 0.25);
    inset: -30px;
    border-style: dotted;
}
.hero-ring-mid {
    animation: spinCCW 20s linear infinite;
    border-color: rgba(220, 38, 38, 0.3);
    inset: -14px;
    border-width: 1.5px;
}
@keyframes spinCW { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
.hero-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        conic-gradient(
            from 0deg,
            #161625, #1b1b2e, #161625, #1b1b2e, #161625, #1b1b2e, #161625, #1b1b2e, #161625
        );
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1), 0 0 60px rgba(255, 215, 0, 0.25), inset 0 0 60px rgba(0,0,0,0.5);
    animation: spinCW 14s linear infinite;
    animation-play-state: paused;
}
.hero-wheel:hover { animation-play-state: running; }
.wheel-seg {
    position: absolute;
    top: 8px;
    left: 50%;
    transform-origin: 50% 142px;
    transform: translateX(-50%) rotate(var(--p));
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold), var(--gold-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #1a1a0f;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 0 0 4px rgba(10,10,18,0.8), 0 0 30px var(--gold-glow);
    animation: spinCCW 14s linear infinite;
    animation-play-state: paused;
}
.hero-wheel-wrap:hover .wheel-center { animation-play-state: running; }

.hero-card-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 280px;
    z-index: 2;
    display: none;
}
.casino-hero:not(.index-hero) .hero-card-stack { display: block; }
.index-hero .hero-card-stack {
    top: 78%;
    left: 25%;
    width: 140px;
    height: 170px;
    transform: translate(-50%, -50%) rotate(-8deg);
    display: block;
}

.hero-card {
    position: absolute;
    width: 160px;
    height: 220px;
    background: linear-gradient(145deg, #ffffff 0%, #f0e8d4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.8rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3);
    border: 1.5px solid rgba(255, 215, 0, 0.4);
}
.index-hero .hero-card {
    width: 100px;
    height: 140px;
    font-size: 2rem;
}

.hero-card-1 {
    top: 0;
    left: 0;
    color: #1a1a0f;
    transform: rotate(-12deg);
    animation: cardFloat1 5s ease-in-out infinite;
    z-index: 4;
}
.hero-card-2 {
    top: 15px;
    left: 40px;
    color: #dc2626;
    transform: rotate(-4deg);
    animation: cardFloat2 5s ease-in-out infinite 0.2s;
    z-index: 3;
}
.hero-card-3 {
    top: 30px;
    left: 80px;
    color: #dc2626;
    transform: rotate(6deg);
    animation: cardFloat3 5s ease-in-out infinite 0.4s;
    z-index: 2;
}
.index-hero .hero-card-1 { left: 0; }
.index-hero .hero-card-2 { left: 25px; top: 10px; }
.index-hero .hero-card-3 { left: 50px; top: 20px; }

@keyframes cardFloat1 {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-8px); }
}
@keyframes cardFloat2 {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(0deg) translateY(-10px); }
}
@keyframes cardFloat3 {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-12px); }
}

.hero-chip {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background:
        radial-gradient(circle, #1a1a2e 30%, var(--red) 31%, var(--red) 36%, #fafafa 37%, #fafafa 42%, var(--red) 43%, var(--red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.72rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4), inset 0 0 0 2px rgba(255, 215, 0, 0.6);
    z-index: 3;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5px;
}
.index-hero .hero-chip { width: 64px; height: 64px; font-size: 0.6rem; }

.hero-chip-1 {
    top: 8%;
    right: 10%;
    animation: chipSpin 8s linear infinite;
}
.hero-chip-2 {
    bottom: 12%;
    left: 5%;
    background:
        radial-gradient(circle, #1a1a2e 30%, var(--gold) 31%, var(--gold) 36%, #fafafa 37%, #fafafa 42%, var(--gold) 43%, var(--gold) 100%);
    color: var(--red);
    animation: chipSpin 10s linear infinite reverse;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), inset 0 0 0 2px rgba(220, 38, 38, 0.6);
}

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

.hero-dice {
    position: absolute;
    bottom: 25%;
    right: 15%;
    display: flex;
    gap: 10px;
    z-index: 3;
}
.casino-hero:not(.index-hero) .hero-dice { display: flex; }
.index-hero .hero-dice { display: none; }

.dice-face {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #fafafa, #e5e5e5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.dice-face:first-child {
    animation: diceRoll 3s ease-in-out infinite;
}
.dice-face:last-child {
    animation: diceRoll 3s ease-in-out infinite 0.5s;
    color: var(--red);
}

@keyframes diceRoll {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg) scale(1.1); }
}

/* Hero Winner Popups */
.hero-winner-pop {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
    background: rgba(22, 22, 37, 0.95);
    border: 1px solid var(--gold);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,215,0,0.2);
    animation: winnerFloat 5s ease-in-out infinite;
}
.hero-winner-1 {
    top: 10%;
    left: 2%;
    animation-delay: 0s;
}
.hero-winner-2 {
    bottom: 18%;
    right: -2%;
    animation-delay: 1.8s;
}
@keyframes winnerFloat {
    0%,100% { transform: translateY(0); opacity: 0; }
    15%,85% { opacity: 1; }
    50% { transform: translateY(-10px); opacity: 1; }
}
.winner-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.winner-info strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1;
}
.winner-info span {
    display: block;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 800;
}

/* ============= SECTIONS SHARED ============= */
.casino-section {
    padding: 5.5rem 0;
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-kicker {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
    padding: 0.35rem 0.875rem;
    background: var(--gold-soft);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.section-title-alt {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.pulse-gold {
    animation: pulseGold 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25), 0 0 0 0 rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25), 0 0 0 16px rgba(255, 215, 0, 0), inset 0 1px 0 rgba(255,255,255,0.4);
    }
}

/* ============= CASINO FOOTER ============= */
.casino-footer {
    background: linear-gradient(180deg, var(--dark-bg-2) 0%, #050509 100%);
    border-top: 1px solid var(--dark-border);
    padding: 4.5rem 5% 2rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.casino-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.footer-logo .footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.footer-logo:hover .footer-logo-img {
    transform: scale(1.04);
}
.footer-logo .logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-white);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 340px;
}

.footer-licenses {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.license-badge {
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border-2);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-cream);
    font-weight: 500;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.license-badge:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--dark-border);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
}
.footer-col a::before {
    content: '›';
    color: var(--gold);
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}
.footer-col a:hover {
    color: var(--gold);
    transform: translateX(3px);
}
.footer-col a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    padding: 0.2rem 0;
}

.contact-icon { font-size: 1.05rem; }

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.payment-chip {
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border-2);
    border-radius: 8px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-cream);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.payment-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,215,0,0.1);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.85rem;
}
.footer-links a {
    color: var(--text-dim);
}
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: var(--text-dim); }

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border-2);
    border-radius: 50%;
    color: var(--text-cream);
    font-size: 0.9rem;
    font-weight: 700;
}
.social-icon:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    color: #1a1a0f;
    border-color: var(--gold);
    transform: translateY(-2px) rotate(-5deg);
    box-shadow: 0 6px 16px var(--gold-glow);
}

/* ============= MOBILE FIXED FOOTER ============= */
.casino-mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.98), rgba(5, 5, 9, 0.995));
    padding: 0.875rem 1rem;
    gap: 0.875rem;
    z-index: 999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--dark-border);
}

.mobile-footer-btn {
    flex: 1;
    min-height: 50px;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.mobile-footer-btn svg { width: 18px; height: 18px; }

.mobile-login {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-cream);
    border: 1.5px solid var(--dark-border-2);
}
.mobile-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.mobile-register {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
    color: #1a1a0f;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}
.mobile-register:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.5);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
    .casino-nav ul { gap: 1.5rem; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1.5fr; gap: 2.5rem; }
    .hero-wheel-wrap { width: 260px; height: 260px; }
    .wheel-seg { transform-origin: 50% 122px; }
    .wheel-center { width: 80px; height: 80px; }
}

@media (max-width: 1024px) {
    .casino-header-container { padding: 1rem 4%; }
    .casino-header-cta .casino-btn-login { display: none; }
    .casino-nav ul { gap: 1rem; }
    .casino-hero { padding: 3.5rem 0 3rem; }
    .casino-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .casino-hero-text { order: 2; }
    .hero-trust-row, .hero-quick-stats { justify-content: center; }
    .hero-actions-row { justify-content: center; }
    .hero-description { margin: 0 auto 2rem; }
    .casino-hero-visual { height: 420px; max-width: 500px; margin: 0 auto; }
    .hero-live-row { justify-content: center; }
    .hero-wheel-wrap { left: 50%; width: 280px; height: 280px; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-quick-stats { margin: 0 auto; }
}

@media (max-width: 768px) {
    .casino-logo .logo-img { height: 32px; }
    .casino-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, var(--dark-bg-3), var(--dark-bg-2));
        padding: 0;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
        border-bottom: 1px solid var(--dark-border);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        z-index: 999;
    }
    .casino-nav.active {
        display: block;
        animation: slideDownGold 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes slideDownGold {
        from { opacity: 0; transform: translateY(-12px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .casino-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
    }
    .casino-nav li {
        border-bottom: 1px solid var(--dark-border-2);
    }
    .casino-nav li:last-child { border-bottom: none; }
    .casino-nav a {
        display: block;
        padding: 1rem 5%;
        font-size: 1.05rem;
    }
    .casino-nav a::before { display: none; }

    .casino-mobile-toggle { display: flex; }

    .casino-header-cta { order: 2; margin-right: 0.25rem; }
    .casino-header-cta .casino-btn-gold {
        padding: 0.65rem 1.1rem;
        font-size: 0.82rem;
    }

    .casino-section { padding: 3.5rem 0; }
    .section-heading { margin-bottom: 2.5rem; }

    .hero-heading { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .casino-hero { min-height: auto; padding-top: 2.5rem; }
    .casino-hero-visual { height: 340px; }
    .hero-card-stack { transform: translate(-55%, -50%); }

    .casino-footer { padding: 3rem 4% 1.75rem; margin-top: 0; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-bottom-bar { flex-direction: column; text-align: center; gap: 1rem; }

    .casino-mobile-footer { display: flex; }
    body.casino-theme { padding-bottom: 84px; }

    .hero-quick-stats { padding: 0.75rem 1rem; gap: 0.875rem; }
    .qs-num { font-size: 1.25rem; }
    .qs-suffix { font-size: 1rem; }
    .qs-divider { height: 36px; }
}

@media (max-width: 560px) {
    .hero-card { width: 120px; height: 165px; font-size: 2.2rem; }
    .hero-chip { width: 60px; height: 60px; font-size: 0.6rem; }
    .dice-face { width: 44px; height: 44px; font-size: 1.5rem; }
    .casino-hero-visual { height: 280px; }
    .hero-card-1 { left: -10px; }
    .hero-card-2 { left: 20px; }
    .hero-card-3 { left: 55px; }
    .hero-card-4 { left: 85px; }
    .hero-winner-pop { transform: scale(0.9); }
    .hero-wheel-wrap { width: 240px; height: 240px; }
    .wheel-seg { transform-origin: 50% 112px; font-size: 1.2rem; top: 6px; }
    .wheel-center { width: 70px; height: 70px; font-size: 0.75rem; }
    .index-hero .hero-card-stack { top: 80%; width: 110px; height: 150px; }
    .index-hero .hero-card { width: 85px; height: 120px; font-size: 1.6rem; }

    .btn-xl { padding: 0.9rem 1.4rem; font-size: 0.95rem; }
    .btn-xxl { padding: 1rem 1.75rem; font-size: 1rem; }

    .footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .casino-header-container { padding: 0.875rem 3%; }
    .casino-logo .logo-img { height: 28px; }
    .footer-logo .footer-logo-img { height: 38px; }
    .hero-heading { font-size: clamp(1.5rem, 8vw, 2rem); letter-spacing: -0.3px; }
    .hero-description { font-size: 0.95rem; }
    .hero-trust-row { gap: 0.6rem; }
    .trust-badge { padding: 0.4rem 0.625rem; font-size: 0.78rem; }
    .section-title-alt { font-size: clamp(1.4rem, 7vw, 1.9rem); }
    .section-subtitle { font-size: 0.92rem; }
    .casino-section { padding: 2.75rem 0; }
    .hero-quick-stats { flex-wrap: wrap; justify-content: center; }
    .qs-divider { display: none; }
    .qs-item { align-items: center; }
}

@media (max-width: 380px) {
    .casino-mobile-footer {
        padding: 0.7rem 0.75rem;
        gap: 0.625rem;
    }
    .mobile-footer-btn {
        min-height: 44px;
        padding: 0.75rem 0.875rem;
        font-size: 0.88rem;
        border-radius: 10px;
    }
    body.casino-theme { padding-bottom: 72px; }
}

/* ============ HERO LOGO STYLE ============ */
.hero-logo-wrap {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-logo-img {
    max-width: 210px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.25));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.hero-logo-wrap:hover .hero-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 22px rgba(255, 215, 0, 0.45));
}

@media (max-width: 1024px) {
    .hero-logo-wrap {
        margin-bottom: 1.25rem;
    }
    .hero-logo-img {
        max-width: 170px;
        margin: 0 auto;
    }
}
