/* ================================================
   Template D — "Elegant Editorial"
   JackpotNobre
   Cool light gray bg, Deep purple/violet + Rich red accents
   Playfair Display (serif) + Inter (sans)
   Rounded, soft, magazine-style
   ================================================ */

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

:root {
    --bg-body: #fafafa;
    --bg-card: #ffffff;
    --bg-alt: #f1f0f5;
    --bg-dark: #18122b;
    --text: #1e1b2e;
    --text-muted: #5b5675;
    --text-light: #918ba5;
    --accent: #7c3aed;
    --accent-hover: #6d28d9;
    --accent-2: #dc2626;
    --accent-2-light: #fef2f2;
    --border: #e2e0ea;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 1px 3px rgba(30,27,46,.06);
    --shadow-md: 0 4px 16px rgba(30,27,46,.08);
    --shadow-lg: 0 8px 32px rgba(30,27,46,.1);
    --shadow-xl: 0 16px 48px rgba(30,27,46,.12);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1140px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--text-muted); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.no-scroll { overflow: hidden; }

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--transition), transform .6s var(--transition);
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Age Strip --- */
.age-strip {
    background: var(--bg-dark);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    padding: 8px 0;
}
.age-strip__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.age-pill {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.age-strip a {
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.age-strip a:hover { color: #fff; }
.age-sep { color: rgba(255,255,255,.3); }
.age-strip__msg {
    margin-left: auto;
    color: rgba(255,255,255,.5);
    font-style: italic;
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    background: rgba(250,250,250,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow var(--transition), padding var(--transition);
}
.main.open {
    filter: blur(1.8px);
    backdrop-filter: brightness(0.4);
}
.header.open {
    overflow: visible;
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-icon {
    font-size: 22px;
    color: var(--accent-2);
}
.logo-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -.3px;
}
.logo-name strong {
    font-weight: 700;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}
.nav a:hover,
.nav a.active {
    color: var(--accent);
    background: rgba(124,58,237,.06);
}

.nav .nav-close {
    display: none;
}
.nav.open .nav-close {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,.3);
}
.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn--outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn--white {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}
.btn--white:hover {
    background: rgba(255,255,255,.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--accent);
}
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}
.btn--ghost:hover {
    border-color: var(--text-muted);
    color: var(--text);
}
.btn--sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    background: rgba(124,58,237,.08);
    padding: 6px 16px;
    border-radius: 20px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header p {
    font-size: 17px;
    line-height: 1.7;
}

/* === HERO === */
@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}
.hero {
    padding: 100px 0 80px;
    background-color: #18122b;
    background-image: url('https://images.unsplash.com/photo-1585676181614-dc6c61dc40f9?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(24,18,43,.88) 0%,
        rgba(124,58,237,.65) 20%,
        rgba(109,40,217,.70) 35%,
        rgba(24,18,43,.80) 50%,
        rgba(139,92,246,.55) 65%,
        rgba(124,58,237,.72) 80%,
        rgba(24,18,43,.88) 100%
    );
    background-size: 300% 300%;
    animation: heroGradientShift 12s ease infinite;
    z-index: 0;
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGradientShift 8s ease infinite reverse;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,.12) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGradientShift 10s ease infinite;
    z-index: 1;
}
.hero__center {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.hero h1,
.hero .hero__sub,
.hero .trust-chip {
    color: #fff;
}
.hero h1 { color: #fff; }
.hero h1 em { color: #c4b5fd; }
.hero .hero__sub { color: rgba(255,255,255,.8); }
.hero .trust-chip {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
}
.hero .btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.hero .btn--outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}
.hero .seal__year,
.hero .seal__label {
    color: #fff;
}
.hero .hero__seal {
    border-color: rgba(255,255,255,.4);
}
.hero .hero__seal::before {
    border-color: rgba(255,255,255,.2);
}
.hero__seal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-2);
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}
.hero__seal::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed var(--accent-2);
    opacity: .4;
}
.seal__year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--accent-2);
    line-height: 1;
}
.seal__label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-2);
    line-height: 1.2;
    margin-top: 2px;
}
.hero h1 {
    margin-bottom: 20px;
    font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    color: #c4b5fd;
    position: relative;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(124,58,237,.3);
    border-radius: 4px;
    z-index: -1;
}
.hero__sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

/* === CASINO GRID === */
.rankings {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.casino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

/* Featured Casino Card */
.casino-card--featured {
    grid-column: 1 / -1;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-card) 60%, rgba(124,58,237,.04) 100%);
    border: 2px solid var(--accent);
    position: relative;
}
.casino-card__ribbon {
    position: absolute;
    top: 16px;
    right: 20px;
    background: var(--accent-2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.casino-card--featured .casino-card__bonus {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}
.casino-card--featured .casino-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 600px;
}
.casino-card--featured .btn { font-size: 16px; padding: 16px 32px; }

/* Standard Casino Card */
.casino-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all .4s cubic-bezier(.4,0,.2,1), transform .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
}
.casino-card:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(124,58,237,.1);
    transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
    border-color: rgba(124,58,237,.25);
}
.casino-card:hover .casino-card__bonus {
    color: var(--accent-hover);
}
.casino-card__pos {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-2);
    opacity: .5;
}
.casino-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.casino-card__header h3 {
    font-size: 20px;
}
.casino-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.rating-score {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.rating-stars {
    font-size: 12px;
    color: var(--accent-2);
    letter-spacing: 1px;
}
.rating-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.casino-card__bonus {
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.casino-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.casino-card__features span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 5px 12px;
    border-radius: 20px;
}
.casino-card .btn {
    align-self: flex-start;
    margin-top: auto;
}
.legal-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

/* === TRUST SECTION === */
.trust-section {
    padding: 80px 0;
    background: var(--bg-alt);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.trust-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.trust-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}
.trust-card p {
    font-size: 14px;
    line-height: 1.65;
}

/* === INFO ACCORDION === */
.info-section {
    padding: 80px 0;
}
.info-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}
.info-layout__text .section-label {
    display: inline-block;
    margin-bottom: 12px;
}
.info-layout__text h2 {
    margin-bottom: 16px;
}
.info-layout__text p {
    font-size: 16px;
}
.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--bg-card);
    transition: box-shadow var(--transition);
}
.accordion-item.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(124,58,237,.2);
}
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 12px;
    transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--accent); }
.accordion-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.accordion-item.open .accordion-panel {
    max-height: 300px;
    padding: 0 22px 18px;
}
.accordion-panel p {
    font-size: 14px;
    line-height: 1.7;
}
.accordion-panel a {
    text-decoration: underline;
}

/* === METHODOLOGY TIMELINE === */
.methodology {
    padding: 80px 0;
    background: var(--bg-alt);
}
.method-timeline {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.method-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    width: 2px;
    background: var(--border);
}
.method-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.method-step:last-child { margin-bottom: 0; }
.method-step__marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(124,58,237,.3);
    position: relative;
    z-index: 1;
}
.method-step__content {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    flex: 1;
}
.method-step__content h3 {
    margin-bottom: 8px;
    font-size: 18px;
}
.method-step__content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}
.method-step__weight {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(124,58,237,.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
}
.cta-banner__inner {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(124,58,237,.15);
    pointer-events: none;
}
.cta-banner__inner h2 {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-banner__inner p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}
.cta-banner__inner .btn {
    position: relative;
    z-index: 1;
}

/* === FAQ === */
.faq {
    padding: 80px 0;
    background: var(--bg-alt);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.faq-list details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-list details[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(124,58,237,.2);
}
.faq-list summary {
    padding: 16px 22px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: var(--text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-list details[open] summary::after {
    transform: rotate(45deg);
}
.faq-list summary:hover { color: var(--accent); }
.faq-answer {
    padding: 0 22px 18px;
}
.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
}
.faq-answer a { text-decoration: underline; }

/* === COMPARISON TABLE === */
.comparison-wrap {
    margin-top: 48px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.comparison-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
    background-size: 200% 100%;
    animation: heroGradientShift 4s ease infinite;
}
.comparison-wrap h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text);
}
.comparison-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-alt);
}
.comparison-table-scroll::-webkit-scrollbar {
    height: 6px;
}
.comparison-table-scroll::-webkit-scrollbar-track {
    background: var(--bg-alt);
    border-radius: 3px;
}
.comparison-table-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}
.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}
.comparison-table thead th {
    background: var(--bg-dark);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 14px 18px;
    text-align: left;
    white-space: nowrap;
}
.comparison-table thead th:first-child {
    border-radius: var(--radius-xs) 0 0 0;
}
.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-xs) 0 0;
}
.comparison-table tbody tr {
    transition: all var(--transition);
}
.comparison-table tbody tr:hover {
    background: rgba(124,58,237,.04);
}
.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-alt);
}
.comparison-table tbody tr:nth-child(even):hover {
    background: rgba(124,58,237,.06);
}
.comparison-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    white-space: nowrap;
}
.comparison-table tbody td strong {
    color: var(--text);
    font-weight: 600;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.table-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    min-width: 40px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* === SPLIT-SCREEN SECTION === */
.split-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}
.split-block:last-child {
    margin-bottom: 0;
}
.split-block:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.split-block__dark {
    background: var(--bg-dark);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-block__dark h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
}
.split-block__dark p {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.7;
}
.split-block__light {
    background: linear-gradient(135deg, rgba(124,58,237,.06) 0%, rgba(124,58,237,.02) 100%);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.split-block--reverse {
    direction: rtl;
}
.split-block--reverse > * {
    direction: ltr;
}
.split-stat {
    text-align: center;
}
.split-stat__num {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.split-stat__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* === PURPLE GLOW ORBS === */
@keyframes glowPulse {
    0%, 100% { opacity: .4; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.15); }
}
@keyframes glowFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}
.rankings::before {
    content: '';
    position: absolute;
    top: 120px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
    z-index: 0;
}
.rankings::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,.06) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: glowFloat 8s ease-in-out infinite;
    z-index: 0;
}
.trust-section {
    position: relative;
    overflow: hidden;
}
.trust-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 7s ease-in-out infinite;
    z-index: 0;
}
.split-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    animation: glowFloat 9s ease-in-out infinite;
    z-index: 0;
}
.split-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,.05) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 10s ease-in-out infinite;
    z-index: 0;
}
.methodology {
    position: relative;
    overflow: hidden;
}
.methodology::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowFloat 7s ease-in-out infinite;
    z-index: 0;
}

/* === PARALLAX JACKPOT SECTION === */
.parallax-jackpot {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1636583134257-b8a45fe61a83?w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.parallax-jackpot__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,18,43,.85) 0%, rgba(124,58,237,.6) 50%, rgba(24,18,43,.85) 100%);
    z-index: 0;
}
.parallax-jackpot__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}
.parallax-jackpot__stat {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #c4b5fd;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(124,58,237,.5);
}
.parallax-jackpot__content h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}
.parallax-jackpot__content p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.6;
}

/* === IMAGE + TEXT BLOCK === */
.image-text-section {
    padding: 80px 0;
    background: var(--bg-body);
}
.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.image-text-block__img {
    position: relative;
}
.image-text-block__img img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 40px rgba(124,58,237,.2), 0 0 0 2px rgba(124,58,237,.15);
    transition: transform var(--transition), box-shadow var(--transition);
}
.image-text-block__img img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(124,58,237,.3), 0 0 0 2px rgba(124,58,237,.25);
}
.image-text-block__img::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(135deg, rgba(124,58,237,.3), rgba(220,38,38,.2));
    z-index: -1;
    filter: blur(16px);
    opacity: .6;
}
.image-text-block__text .section-label {
    display: inline-block;
    margin-bottom: 12px;
}
.image-text-block__text h2 {
    margin-bottom: 16px;
}
.image-text-block__text p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.image-text-block__text .image-text-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.image-text-features span {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(124,58,237,.08);
    padding: 6px 14px;
    border-radius: 20px;
}

/* === SECTION BACKGROUND IMAGES (subtle) === */
.section-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.rankings .section-bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1544022321-e0f0adb3578a?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
}
.methodology .section-bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
}
.rankings > .container,
.methodology > .container {
    position: relative;
    z-index: 1;
}

/* === RESPONSIBLE GAMING BLOCK === */
.rg-block {
    background: var(--bg-card);
    border: 2px solid var(--accent-2);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
}
.rg-block__icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.rg-block h2 {
    margin-bottom: 12px;
}
.rg-block p {
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 24px;
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .logo {
    margin-bottom: 16px;
}
.footer__brand .logo-icon { color: var(--accent-2); }
.footer__brand .logo-name { color: #fff; }
.footer__brand p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.footer__tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer__tags span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
    padding: 5px 12px;
    border-radius: 20px;
}
.footer__links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.footer__col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer__col ul li {
    margin-bottom: 10px;
}
.footer__col a {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer__bottom-links {
    display: flex;
    gap: 20px;
}
.footer__bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer__disclaimer {
    padding: 20px 0;
}
.footer__disclaimer p {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,.3);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(30,27,46,.08);
    transform: translateY(100%);
    opacity: 0;
    transition: transform .5s ease, opacity .5s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}
.cookie-banner__inner p {
    font-size: 14px;
    color: var(--text-muted);
}
.cookie-banner__inner a { text-decoration: underline; }
.cookie-banner__btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ==================================
   RESPONSIVE
   ================================== */
@media (max-width: 1024px) {
    .casino-grid { grid-template-columns: 1fr; }
    .casino-card--featured { padding: 32px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .info-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 32px; }
    .comparison-wrap { padding: 24px; }
    .split-block { grid-template-columns: 1fr; }
    .split-block--reverse { direction: ltr; }
    .split-block__dark { padding: 36px 28px; }
    .split-block__light { padding: 36px 28px; }
    .split-stat__num { font-size: 44px; }
    .image-text-block { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--bg-card);
        flex-direction: column;
        padding: 80px 24px 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        align-items: stretch;
    }
    .nav.open { transform: translateX(0);
        height: 100vh; }
    .nav a { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-xs); }

    .hero { padding: 64px 0 56px; }
    .hero h1 { font-size: 1.8rem; }
    .hero__sub { font-size: 16px; }
    .hero__seal { width: 80px; height: 80px; }
    .seal__year { font-size: 22px; }

    .trust-grid { grid-template-columns: 1fr; }
    .casino-card--featured { padding: 24px; }
    .casino-card__ribbon { position: static; margin-bottom: 8px; display: inline-block; }

    .method-timeline::before { left: 19px; }
    .method-step__marker { width: 40px; height: 40px; font-size: 16px; }
    .method-step { gap: 16px; }

    .cta-banner__inner { padding: 36px 24px; }

    .age-strip__msg { display: none; }

    .footer__links-group { grid-template-columns: 1fr; gap: 24px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

    .cookie-banner__inner { flex-direction: column; text-align: center; }

    .comparison-wrap { padding: 20px 16px; }
    .comparison-wrap h3 { font-size: 18px; }
    .split-section { padding: 56px 0; }
    .split-block__dark { padding: 28px 20px; }
    .split-block__light { padding: 28px 20px; }
    .split-block__dark h3 { font-size: 20px; }
    .split-stat__num { font-size: 40px; }
    .split-stat__label { font-size: 12px; }

    .casino-card:hover {
        transform: translateY(-4px) rotateX(1deg) rotateY(0deg);
    }

    .parallax-jackpot {
        background-attachment: scroll;
        height: 320px;
    }
    .parallax-jackpot__stat { font-size: 3rem; }

    .image-text-block { gap: 24px; }
    .image-text-block__img::before { display: none; }
}

/* === 2a: ANIMATED TOP ACCENT BAR === */
@keyframes accentBarSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), #f59e0b, var(--accent), var(--accent-2), #f59e0b);
    background-size: 200% 100%;
    animation: accentBarSlide 3s linear infinite;
    position: relative;
    z-index: 1001;
}

/* === 2b: HERO FLOATING CARD SUITS === */
@keyframes floatSuit1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .15; }
    25% { transform: translate(30px, -40px) rotate(15deg); opacity: .25; }
    50% { transform: translate(-20px, -70px) rotate(-10deg); opacity: .2; }
    75% { transform: translate(40px, -30px) rotate(20deg); opacity: .15; }
}
@keyframes floatSuit2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .12; }
    33% { transform: translate(-40px, -50px) rotate(-20deg); opacity: .22; }
    66% { transform: translate(20px, -80px) rotate(15deg); opacity: .18; }
}
@keyframes floatSuit3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .1; }
    50% { transform: translate(50px, -60px) rotate(25deg); opacity: .2; }
}
@keyframes floatSuit4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .13; }
    40% { transform: translate(-30px, -45px) rotate(-15deg); opacity: .23; }
    80% { transform: translate(25px, -70px) rotate(10deg); opacity: .16; }
}
.hero__suits {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero__suits span {
    position: absolute;
    font-size: 48px;
    color: rgba(196, 181, 253, .15);
    text-shadow: 0 0 20px rgba(124, 58, 237, .3);
}
.hero__suits span:nth-child(1) {
    top: 10%;
    left: 8%;
    animation: floatSuit1 8s ease-in-out infinite;
    font-size: 56px;
}
.hero__suits span:nth-child(2) {
    top: 20%;
    right: 10%;
    animation: floatSuit2 10s ease-in-out infinite;
    font-size: 44px;
    color: rgba(220, 38, 38, .15);
    text-shadow: 0 0 20px rgba(220, 38, 38, .3);
}
.hero__suits span:nth-child(3) {
    bottom: 25%;
    left: 12%;
    animation: floatSuit3 7s ease-in-out infinite;
    font-size: 40px;
    color: rgba(220, 38, 38, .15);
    text-shadow: 0 0 20px rgba(220, 38, 38, .3);
}
.hero__suits span:nth-child(4) {
    bottom: 15%;
    right: 8%;
    animation: floatSuit4 9s ease-in-out infinite;
    font-size: 52px;
}
.hero__suits span:nth-child(5) {
    top: 50%;
    left: 3%;
    animation: floatSuit2 11s ease-in-out infinite 1s;
    font-size: 36px;
}
.hero__suits span:nth-child(6) {
    top: 40%;
    right: 4%;
    animation: floatSuit3 9s ease-in-out infinite 2s;
    font-size: 38px;
    color: rgba(220, 38, 38, .12);
    text-shadow: 0 0 20px rgba(220, 38, 38, .25);
}
.hero__suits span:nth-child(7) {
    top: 65%;
    left: 25%;
    animation: floatSuit1 12s ease-in-out infinite 0.5s;
    font-size: 32px;
}
.hero__suits span:nth-child(8) {
    top: 5%;
    right: 30%;
    animation: floatSuit4 8s ease-in-out infinite 1.5s;
    font-size: 30px;
    color: rgba(220, 38, 38, .1);
}

/* Pulsing glow ring behind seal */
@keyframes sealGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, .3), 0 0 40px rgba(124, 58, 237, .15); }
    50% { box-shadow: 0 0 30px rgba(124, 58, 237, .5), 0 0 60px rgba(124, 58, 237, .25), 0 0 80px rgba(220, 38, 38, .1); }
}
.hero__seal {
    animation: sealGlow 3s ease-in-out infinite;
}

/* === 2c: CASINO CARD ENHANCEMENTS === */
.casino-card {
    border-left: 4px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}
.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border-radius: 4px 0 0 4px;
}

/* Animated rank numbers with glow */
.casino-card__pos {
    text-shadow: 0 0 20px rgba(220, 38, 38, .3);
    transition: all var(--transition);
}
.casino-card:hover .casino-card__pos {
    text-shadow: 0 0 30px rgba(220, 38, 38, .5), 0 0 50px rgba(220, 38, 38, .2);
    opacity: .8;
    transform: scale(1.1);
}

/* POPULAR badge on first standard card (#2) */
.casino-card--featured .casino-card__ribbon {
    z-index: 2;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .4); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}
.casino-card--featured::after {
    content: 'TOP';
    position: absolute;
    top: 16px;
    left: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 2;
}

/* Shine sweep effect on hover */
@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}
.casino-card .btn--primary {
    position: relative;
    overflow: hidden;
}
.casino-card:hover .btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    animation: shineSweep .6s ease forwards;
    pointer-events: none;
}

/* === 2d: JACKPOT COUNTER SECTION === */
@keyframes digitRoll {
    0% { transform: translateY(20%); opacity: 0; }
    20% { transform: translateY(-5%); opacity: 1; }
    40% { transform: translateY(3%); }
    60% { transform: translateY(-2%); }
    80% { transform: translateY(1%); }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 10px rgba(124, 58, 237, .6),
            0 0 20px rgba(124, 58, 237, .4),
            0 0 40px rgba(124, 58, 237, .3),
            0 0 80px rgba(124, 58, 237, .15);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 5px rgba(124, 58, 237, .3),
            0 0 10px rgba(124, 58, 237, .2);
    }
}
@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
.jackpot-counter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0a1a 0%, #18122b 40%, #1a0f2e 60%, #0d0a1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.jackpot-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, .1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, .08) 0%, transparent 50%);
    pointer-events: none;
}
.jackpot-counter__label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c4b5fd;
    background: rgba(124, 58, 237, .15);
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.jackpot-counter__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.jackpot-counter__amount {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    color: #c4b5fd;
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    animation: neonFlicker 4s ease-in-out infinite, counterPulse 4s ease-in-out infinite;
    letter-spacing: 4px;
}
.jackpot-counter__amount span {
    display: inline-block;
    animation: digitRoll 1.2s cubic-bezier(.4, 0, .2, 1) both;
}
.jackpot-counter__amount span:nth-child(1) { animation-delay: .1s; }
.jackpot-counter__amount span:nth-child(2) { animation-delay: .15s; }
.jackpot-counter__amount span:nth-child(3) { animation-delay: .2s; }
.jackpot-counter__amount span:nth-child(4) { animation-delay: .25s; }
.jackpot-counter__amount span:nth-child(5) { animation-delay: .3s; }
.jackpot-counter__amount span:nth-child(6) { animation-delay: .35s; }
.jackpot-counter__amount span:nth-child(7) { animation-delay: .4s; }
.jackpot-counter__amount span:nth-child(8) { animation-delay: .45s; }
.jackpot-counter__amount span:nth-child(9) { animation-delay: .5s; }
.jackpot-counter__amount span:nth-child(10) { animation-delay: .55s; }
.jackpot-counter__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.jackpot-counter__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.jackpot-stat {
    text-align: center;
}
.jackpot-stat__num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(124, 58, 237, .4);
}
.jackpot-stat__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === 2e: FLOATING SPARKLES/PARTICLES === */
@keyframes sparkleFloat1 {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: .6; }
    50% { opacity: .3; }
    90% { opacity: .5; }
    100% { transform: translateY(-120px) rotate(180deg); opacity: 0; }
}
@keyframes sparkleFloat2 {
    0% { transform: translateY(0) rotate(0deg) scale(.8); opacity: 0; }
    15% { opacity: .5; }
    50% { opacity: .2; }
    85% { opacity: .4; }
    100% { transform: translateY(-100px) rotate(-120deg) scale(1.2); opacity: 0; }
}
@keyframes sparkleFloat3 {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    20% { opacity: .4; }
    80% { opacity: .3; }
    100% { transform: translateY(-80px) translateX(30px) rotate(90deg); opacity: 0; }
}

/* Sparkles on trust-section */
.trust-section::after {
    content: '\u2726  \u25C6  \u2726  \u2605  \u25C6';
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 14px;
    color: rgba(124, 58, 237, .12);
    letter-spacing: 20px;
    animation: sparkleFloat1 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

/* Sparkles on methodology section */
.methodology::before {
    content: '\u2605  \u2726  \u25C6  \u2726';
    position: absolute;
    bottom: 15%;
    left: 3%;
    font-size: 12px;
    color: rgba(124, 58, 237, .1);
    letter-spacing: 16px;
    animation: sparkleFloat2 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

/* Sparkles on info-section */
.info-section {
    position: relative;
    overflow: hidden;
}
.info-section::before {
    content: '\u25C6  \u2605  \u2726';
    position: absolute;
    top: 30%;
    right: 8%;
    font-size: 10px;
    color: rgba(220, 38, 38, .08);
    letter-spacing: 14px;
    animation: sparkleFloat3 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}
.info-section::after {
    content: '\u2726  \u25C6';
    position: absolute;
    bottom: 20%;
    left: 5%;
    font-size: 16px;
    color: rgba(124, 58, 237, .08);
    letter-spacing: 24px;
    animation: sparkleFloat1 12s ease-in-out infinite 2s;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

/* === 2f: ENHANCED FOOTER === */
.footer {
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), #f59e0b, var(--accent));
    background-size: 300% 100%;
    animation: accentBarSlide 4s linear infinite;
}
.footer__top {
    position: relative;
}
.footer__brand .logo-icon {
    transition: all var(--transition);
}
.footer__brand:hover .logo-icon {
    text-shadow: 0 0 12px rgba(220, 38, 38, .5);
}

/* Jackpot counter responsive */
@media (max-width: 768px) {
    .jackpot-counter { padding: 56px 0; }
    .jackpot-counter__amount { letter-spacing: 2px; }
    .jackpot-counter__stats { gap: 28px; }
    .hero__suits span { font-size: 28px !important; }
}

/* === SUBPAGE STYLES === */
.page-hero {
    padding: 48px 0;
    background: var(--bg-alt);
    text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { font-size: 17px; max-width: 600px; margin: 0 auto; }

.page-content {
    padding: 56px 0 80px;
}
.page-content .container { max-width: 800px; }
.page-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.page-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.page-content ul, .page-content ol { padding-left: 20px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; font-size: 15px; color: var(--text-muted); line-height: 1.65; list-style: disc; }
.page-content ol li { list-style: decimal; }
.page-content a { text-decoration: underline; }
