/* ============================================
   REALZ CASINO - Epic Egyptian Fantasy Design System
   Mobile-first, dark-themed, gold-accented
   ============================================ */

/* ============================================
   RESET & OVERFLOW SAFETY
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th { overflow-wrap: break-word; }

input, textarea, select {
    max-width: 100%;
    box-sizing: border-box;
}

section { overflow: clip; }

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

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at top right, rgba(255, 183, 51, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(61, 217, 196, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 50% 0%, rgba(201, 150, 43, 0.05) 0%, transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle starlit dot pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 23% 11%, rgba(255, 209, 102, 0.6) 50%, transparent),
        radial-gradient(1px 1px at 47% 67%, rgba(255, 209, 102, 0.5) 50%, transparent),
        radial-gradient(1px 1px at 78% 33%, rgba(255, 209, 102, 0.55) 50%, transparent),
        radial-gradient(1px 1px at 12% 88%, rgba(61, 217, 196, 0.45) 50%, transparent),
        radial-gradient(1px 1px at 88% 76%, rgba(255, 209, 102, 0.5) 50%, transparent);
    background-size: 600px 600px;
    z-index: 0;
    opacity: 0.55;
}

main, header, footer { position: relative; z-index: 1; }

img { display: block; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 200ms ease;
}
a:hover { color: var(--primary-bright); }

.skip-link {
    position: absolute;
    left: -10000px;
    top: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    z-index: 10000;
}
.skip-link:focus { left: 8px; }

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   TYPOGRAPHY
   Cinzel for monumental headings, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.6em;
    color: var(--primary-bright);
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(1.9rem, 4.5vw + 1rem, 2.95rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 18px rgba(255, 183, 51, 0.35);
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2.3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h3 {
    font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.6rem);
    font-weight: 600;
}

h4 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1.4rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--primary-bright); font-weight: 700; }

ul, ol { padding-left: 1.4rem; margin: 0 0 1.4rem; }
li { margin-bottom: 0.5rem; }

blockquote {
    margin: 1.6rem 0;
    padding: 1.2rem 1.6rem;
    border-left: 4px solid var(--primary);
    background: var(--card);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--foreground);
}
blockquote cite {
    display: block;
    margin-top: 0.6rem;
    font-style: normal;
    font-size: 0.92rem;
    color: var(--muted-foreground);
}

.eyebrow {
    display: inline-block;
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.bonus-number {
    font-family: "Cinzel", serif;
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #ffd166 0%, #ffb733 50%, #c9962b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 183, 51, 0.55);
    margin: 1rem 0;
    letter-spacing: 0.02em;
}

/* ============================================
   LAYOUT - Container, sections, wraps
   ============================================ */
.container,
.max-w-\[1280px\] {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}
@media (min-width: 768px) {
    .container, .max-w-\[1280px\] { padding-inline: 2rem; }
}

.mx-auto { margin-inline: auto; }
.px-5 { padding-inline: 1.25rem; }
.md\:px-8 { }
@media (min-width: 768px) { .md\:px-8 { padding-inline: 2rem; } }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

section.page-section,
.page-section {
    padding-block: 56px;
}
@media (min-width: 1024px) {
    section.page-section, .page-section { padding-block: 96px; }
}

/* Hieroglyph divider */
.hieroglyph-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 600px;
    color: var(--primary);
}
.hieroglyph-divider::before,
.hieroglyph-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.hieroglyph-divider span {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}

/* ============================================
   HEADER - Fixed, translucent, gold border
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 13, 31, 0.92);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
@supports (backdrop-filter: blur(12px)) {
    @media (min-width: 769px) {
        .site-header {
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            background: rgba(10, 13, 31, 0.78);
        }
    }
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}
@media (min-width: 1024px) {
    .header-inner { padding: 0.75rem 2rem; min-height: 84px; }
}

main { padding-top: 72px; }
@media (min-width: 1024px) { main { padding-top: 84px; } }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}
.brand-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(255, 183, 51, 0.55));
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary-bright);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.brand-sub {
    font-family: "Manrope", sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted-foreground);
    margin-top: 2px;
}

/* Nav - desktop */
.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}
@media (min-width: 1024px) {
    .main-nav { display: flex; }
}
.nav-list {
    display: flex;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-list a {
    color: var(--foreground);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    transition: all 200ms ease;
    text-decoration: none;
}
.nav-list a:hover {
    color: var(--primary-bright);
    background: rgba(255, 183, 51, 0.08);
}
.nav-cta-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    background: rgba(255, 183, 51, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-bright);
    border-radius: 2px;
    transition: transform 280ms ease, opacity 200ms ease;
    transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background-deep);
        background-image:
            radial-gradient(circle at top, rgba(255, 183, 51, 0.12) 0%, transparent 60%),
            linear-gradient(180deg, var(--background) 0%, var(--background-deep) 100%);
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem 4rem;
        overflow-y: auto;
        border-top: 1px solid var(--border-gold);
    }
    .main-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 2rem;
    }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        font-family: "Cinzel", serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--border-gold);
        border-radius: 0;
    }
    .nav-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .nav-cta-group .btn { width: 100%; justify-content: center; }
}

/* ============================================
   BUTTONS - Pulsating gold CTA, ghost variant
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    min-height: 48px;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    white-space: nowrap;
}
.btn-sm { padding: 0.55rem 1.05rem; min-height: 40px; font-size: 0.82rem; }
.btn-lg { padding: 1.05rem 2.2rem; min-height: 58px; font-size: 1.05rem; }

.btn-primary {
    background: linear-gradient(180deg, #ffd166 0%, #ffb733 50%, #c9962b 100%);
    color: var(--primary-foreground);
    box-shadow: 0 6px 18px rgba(201, 150, 43, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid #ffd166;
}
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 10px 26px rgba(255, 183, 51, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--primary-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-bright);
    border: 1.5px solid var(--border-gold);
}
.btn-ghost:hover {
    background: rgba(255, 183, 51, 0.1);
    border-color: var(--primary);
    color: var(--primary-bright);
}

.btn-accent {
    background: linear-gradient(180deg, #3dd9c4 0%, #1f8a5a 100%);
    color: var(--background);
    box-shadow: 0 6px 18px rgba(31, 138, 90, 0.45);
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 6px 18px rgba(255, 183, 51, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 0 rgba(255, 183, 51, 0.5);
    }
    50% {
        box-shadow: 0 6px 26px rgba(255, 183, 51, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 12px rgba(255, 183, 51, 0);
    }
}
.btn-pulse {
    animation: pulse-gold 2.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .btn-pulse { animation: none; }
}

/* ============================================
   CTA BANNER - Hero conversion block
   ============================================ */
.cta-banner {
    padding: 56px 1.25rem;
    position: relative;
}
@media (min-width: 1024px) {
    .cta-banner { padding: 96px 2rem; }
}

.cta-banner-frame {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(255, 183, 51, 0.08) 0%, transparent 65%),
        linear-gradient(135deg, #1a1428 0%, #0a0d1f 50%, #2a1a14 100%);
    border: 2px solid var(--border-gold);
    border-radius: 24px;
    padding: 3rem 1.5rem 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-card), inset 0 0 60px rgba(255, 183, 51, 0.05);
}
@media (min-width: 768px) {
    .cta-banner-frame { padding: 4rem 3rem; }
}
@media (min-width: 1024px) {
    .cta-banner-frame { padding: 5rem 4rem; }
}

/* Eye of Ra corner ornaments */
.eye-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-bright) 0%, transparent 60%);
    animation: pulse-gold 2.5s ease-in-out infinite;
}
.eye-corner--tl { top: 14px; left: 14px; }
.eye-corner--tr { top: 14px; right: 14px; animation-delay: 0.5s; }
.eye-corner--bl { bottom: 14px; left: 14px; animation-delay: 1s; }
.eye-corner--br { bottom: 14px; right: 14px; animation-delay: 1.5s; }
@media (max-width: 480px) {
    .eye-corner { width: 18px; height: 18px; }
}

.cta-banner-mascot {
    position: absolute;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 0 24px rgba(255, 183, 51, 0.4));
}
.cta-banner-mascot--left {
    width: 120px;
    bottom: 10px;
    left: -20px;
    animation: float-crab 4s ease-in-out infinite;
}
.cta-banner-mascot--right {
    width: 180px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    animation: float-pharaoh 5s ease-in-out infinite;
}
@media (max-width: 767px) {
    .cta-banner-mascot--left { width: 64px; bottom: -8px; left: -20px; opacity: 0.35; }
    .cta-banner-mascot--right { width: 80px; right: -28px; top: auto; bottom: -8px; transform: none; opacity: 0.35; animation: none; }
}
@media (min-width: 1024px) {
    .cta-banner-mascot--left { width: 160px; }
    .cta-banner-mascot--right { width: 240px; right: -20px; }
}

@keyframes float-pharaoh {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-54%) rotate(2deg); }
}
@keyframes float-crab {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-headline {
    font-size: clamp(1.6rem, 3.5vw + 0.6rem, 2.8rem);
    margin-bottom: 0.8rem;
}
.cta-subtext {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto 1.6rem;
}
.cta-micro {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

/* ============================================
   INFO CARDS - Universal card pattern
   ============================================ */
.info-card {
    background: linear-gradient(180deg, var(--card) 0%, var(--card-deep) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 350ms ease, border-color 350ms ease;
    position: relative;
    min-width: 0;
}
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(255, 183, 51, 0.1) 0%, transparent 60%);
    opacity: 0.5;
}
.info-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 183, 51, 0.25);
    border-color: var(--primary);
}

.info-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--secondary);
}
.info-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.info-card:hover .info-card-media img { transform: scale(1.06); }

.info-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(180deg, #ffd166, #c9962b);
    color: var(--primary-foreground);
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
}

.info-card-icon {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 183, 51, 0.12) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-gold);
    min-height: 120px;
}
.info-card-icon svg { max-width: 80px; height: auto; }

.info-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .info-card-body { padding: 2rem; }
}

.info-card-value {
    font-family: "Cinzel", serif;
    font-size: clamp(1.6rem, 3vw + 0.5rem, 2.4rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #ffd166, #ffb733, #c9962b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.info-card-title {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-bright);
}

.info-card-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

.info-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-top: 0.4rem;
}
.info-card-link:hover { color: var(--primary-bright); gap: 0.7rem; }

/* Card grids */
.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; }
}
.card-grid--4 { }
@media (min-width: 1024px) {
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.card-grid--2 { }
@media (min-width: 768px) {
    .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Horizontal scroll carousel for game cards */
.carousel-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 1.25rem 1.5rem;
    margin: 0 -1.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.carousel-scroll > * {
    flex: 0 0 260px;
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .carousel-scroll > * { flex-basis: 280px; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    max-width: 880px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
}
.faq-mascot {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(255, 183, 51, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-heading { margin: 0 0 0.3rem; }
.faq-intro { color: var(--muted-foreground); margin: 0; font-size: 0.98rem; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: linear-gradient(180deg, var(--card) 0%, rgba(26, 20, 40, 0.6) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 200ms ease;
}
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(61, 217, 196, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    min-height: 56px;
    cursor: pointer;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--primary-bright);
    list-style: none;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(255, 183, 51, 0.05); }

.faq-icon {
    flex-shrink: 0;
    transition: transform 300ms ease;
    display: inline-flex;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    border-left: 3px solid var(--accent);
    margin: 0 0.5rem 0.5rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 0 8px 8px 0;
    padding-top: 1rem;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.65;
}
.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(61, 217, 196, 0.4);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    background: linear-gradient(180deg, var(--background-deep) 0%, var(--background) 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 2rem 1.25rem;
}
.trust-strip--compact { padding: 1.25rem; }

.trust-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .trust-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}

.trust-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 640px) {
    .trust-icons { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
}
.trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 183, 51, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
}
.trust-label {
    font-size: 0.82rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.trust-label strong { color: var(--primary-bright); }

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.pay-badge {
    background: rgba(255, 183, 51, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--primary-bright);
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: linear-gradient(135deg, rgba(255, 183, 51, 0.12) 0%, rgba(61, 217, 196, 0.08) 100%);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}
.summary-box h3 {
    margin: 0 0 0.8rem;
    font-size: 1.05rem;
    color: var(--primary-bright);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.summary-box ul { margin: 0; padding-left: 1.2rem; }
.summary-box li::marker { color: var(--primary); }

/* Callout box */
.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--foreground);
}
.callout--warning { border-left-color: #ef9a3a; background: rgba(239, 154, 58, 0.08); }
.callout--info { border-left-color: var(--accent); }
.callout strong { color: var(--primary-bright); }

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 1.5rem;
}
.stat-highlight .stat-number {
    font-family: "Cinzel", serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #ffd166, #c9962b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.4rem;
}
.stat-highlight .stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.stat-highlight .stat-source {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Pull quote */
.pull-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: clamp(1.2rem, 2.5vw + 0.3rem, 1.7rem);
    font-style: italic;
    color: var(--primary-bright);
    line-height: 1.4;
}
.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

/* Comparison / data tables */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
}
.table-wrapper:focus,
.table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    min-width: 500px;
}
thead th {
    background: linear-gradient(180deg, rgba(255, 183, 51, 0.18), rgba(255, 183, 51, 0.08));
    color: var(--primary-bright);
    font-family: "Cinzel", serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--border-gold);
}
tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(74, 56, 37, 0.4);
    color: var(--foreground);
    font-size: 0.95rem;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255, 183, 51, 0.04); }
.table-recommended { background: rgba(61, 217, 196, 0.06) !important; }
.table-recommended td:first-child { border-left: 3px solid var(--accent); }

/* Step / numbered list */
.step-list {
    list-style: none;
    padding: 0;
    counter-reset: step;
    display: grid;
    gap: 1rem;
}
.step-list li {
    counter-increment: step;
    position: relative;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    width: 38px;
    height: 38px;
    background: linear-gradient(180deg, #ffd166, #c9962b);
    color: var(--primary-foreground);
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(201, 150, 43, 0.4);
}
.step-list li strong { display: block; margin-bottom: 0.3rem; color: var(--primary-bright); }

/* Trust badges row (subdued) */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    list-style: none;
    margin: 0;
}
.badge-row li { margin: 0; }

/* ============================================
   PAGE-SPECIFIC LAYOUT HELPERS
   ============================================ */
.section-title-block {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}
.section-title-block .eyebrow { color: var(--accent); }
.section-title-block p { color: var(--muted-foreground); font-size: 1.05rem; }

.split-block {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .split-block { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.mascot-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    background: radial-gradient(circle, rgba(255, 183, 51, 0.15) 0%, transparent 70%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}
.mascot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem 0;
}
.provider-badge {
    background: linear-gradient(180deg, var(--card) 0%, var(--card-deep) 100%);
    border: 1px solid var(--border-gold);
    color: var(--primary-bright);
    padding: 0.7rem 1.1rem;
    border-radius: 10px;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* SEO text block */
.seo-text-block {
    background: linear-gradient(180deg, rgba(245, 236, 217, 0.03) 0%, transparent 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
    position: relative;
}
@media (min-width: 768px) {
    .seo-text-block { padding: 3rem; }
}
.seo-text-block h2 { color: var(--primary-bright); }
.seo-text-block h3 { color: var(--primary); margin-top: 2rem; }
.seo-text-block p { color: var(--foreground); line-height: 1.75; }
.seo-text-block a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(61, 217, 196, 0.4);
    text-underline-offset: 3px;
}
.seo-text-block a:hover { color: var(--primary-bright); text-decoration-color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-deep);
    border-top: 2px solid var(--border-gold);
    padding: 3rem 1.25rem 1.5rem;
    margin-top: 4rem;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 25%, var(--primary-bright) 50%, var(--primary) 75%, transparent 100%);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; }
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 0.92rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-heading {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-bright);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    color: var(--muted-foreground);
    font-size: 0.92rem;
    transition: color 200ms ease;
}
.footer-links a:hover { color: var(--primary-bright); }

.payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.payment-row .pay-badge { padding: 0.35rem 0.7rem; font-size: 0.7rem; }

.license-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}
.license-badge {
    background: rgba(255, 183, 51, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--primary-bright);
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.age-badge {
    width: 38px;
    height: 38px;
    border: 2px solid var(--destructive);
    color: var(--destructive);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 0.78rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 1.5rem;
    text-align: center;
}
.copyright {
    color: var(--muted-foreground);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.responsible {
    color: var(--muted-foreground);
    font-size: 0.82rem;
    margin: 0;
}
.responsible strong { color: var(--primary-bright); }

/* ============================================
   ANIMATIONS - Scroll reveal, hover effects
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse, .eye-corner, .cta-banner-mascot--left, .cta-banner-mascot--right { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   GO.HTML - Redirect stub specific
   ============================================ */
.redirect-stage {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem 4rem;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse at center, rgba(255, 183, 51, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(61, 217, 196, 0.08) 0%, transparent 50%);
}

.redirect-scene {
    position: relative;
    width: 100%;
    max-width: 720px;
    height: clamp(280px, 55vw, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.redirect-mascot {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 0 24px rgba(255, 183, 51, 0.4));
}
.redirect-mascot--pharaoh {
    width: clamp(120px, 26vw, 200px);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: redirect-float-pharaoh 4.5s ease-in-out infinite;
}
.redirect-mascot--crab {
    width: clamp(90px, 20vw, 150px);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: redirect-orbit-crab 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(61, 217, 196, 0.5));
}
@keyframes redirect-float-pharaoh {
    0%, 100% { transform: translateY(-50%) rotate(-2deg); }
    50% { transform: translateY(-58%) rotate(2deg); }
}
@keyframes redirect-orbit-crab {
    0%, 100% { transform: translateY(-50%) rotate(3deg); }
    50% { transform: translateY(-44%) rotate(-3deg); }
}

.redirect-portal {
    width: clamp(180px, 38vw, 280px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 209, 102, 0.55) 0%, rgba(255, 183, 51, 0.25) 35%, rgba(201, 150, 43, 0.1) 60%, transparent 75%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: portal-pulse 3s ease-in-out infinite;
    z-index: 1;
}
.redirect-portal-core {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: portal-rotate 12s linear infinite;
}
@keyframes portal-pulse {
    0%, 100% { box-shadow: 0 0 60px rgba(255, 183, 51, 0.45), inset 0 0 40px rgba(255, 209, 102, 0.3); }
    50% { box-shadow: 0 0 110px rgba(255, 183, 51, 0.75), inset 0 0 60px rgba(255, 209, 102, 0.5); }
}
@keyframes portal-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.redirect-lightning {
    position: absolute;
    width: 3px;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, #ffd166 30%, #ffffff 50%, #ffd166 70%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 209, 102, 0.9);
    transform-origin: center;
    opacity: 0;
    animation: lightning-flash 2.4s ease-in-out infinite;
}
.redirect-lightning--1 { transform: rotate(20deg); animation-delay: 0s; }
.redirect-lightning--2 { transform: rotate(-25deg); animation-delay: 0.6s; }
.redirect-lightning--3 { transform: rotate(70deg); animation-delay: 1.2s; }
.redirect-lightning--4 { transform: rotate(-65deg); animation-delay: 1.8s; }
@keyframes lightning-flash {
    0%, 90%, 100% { opacity: 0; transform: var(--rot, rotate(0deg)) scaleY(0.6); }
    5%, 15% { opacity: 1; }
    50% { transform: var(--rot, rotate(0deg)) scaleY(1); }
}

.redirect-text-block {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.redirect-text {
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.85rem);
    font-weight: 700;
    color: var(--primary-bright);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin: 0 0 1rem;
    text-shadow: 0 0 20px rgba(255, 183, 51, 0.4);
    animation: pulse-text 2.4s ease-in-out infinite;
}
@keyframes pulse-text {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 183, 51, 0.4); }
    50% { text-shadow: 0 0 32px rgba(255, 209, 102, 0.7); }
}
.redirect-sub {
    color: var(--foreground);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.redirect-loader {
    display: inline-flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1.5rem;
}
.redirect-loader span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffd166, #c9962b);
    animation: loader-bounce 1.2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 183, 51, 0.6);
}
.redirect-loader span:nth-child(2) { animation-delay: 0.2s; }
.redirect-loader span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loader-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

.redirect-fallback {
    color: var(--muted-foreground);
    font-size: 0.92rem;
    margin: 0 0 1.25rem;
}
.redirect-license {
    color: var(--muted-foreground);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin: 0;
    opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
    .redirect-portal,
    .redirect-portal-core,
    .redirect-mascot,
    .redirect-text,
    .redirect-loader span,
    .redirect-lightning {
        animation: none;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero block specific */
.hero-block {
    padding: 2rem 0 3rem;
}
@media (min-width: 1024px) {
    .hero-block { padding: 3rem 0 5rem; }
}