/* ============================================
   AGB PAGE STYLES
   Hero, quicknav, legal layout, licence card
   ============================================ */

/* AGB hero */
.agb-hero {
    text-align: center;
    justify-content: center;
}

/* Egyptian column watermarks */
.agb-hero-columns {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    opacity: 0.08;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 24px,
        rgba(201,149,42,0.6) 24px,
        rgba(201,149,42,0.6) 26px
    );
}

.agb-hero-columns--left { left: 0; }
.agb-hero-columns--right { right: 0; }

@media (max-width: 767px) {
    .agb-hero-columns {
        display: none;
    }
}

.agb-hero-inner {
    max-width: 720px;
    margin-inline: auto;
    padding-block: 16px;
}

.agb-hero-title {
    font-size: clamp(22px, 4.5vw, 44px);
    margin-bottom: 12px;
    line-height: 1.15;
}

.agb-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 17px);
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Quick-nav anchor strip */
.agb-quicknav {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding-block: 12px;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    overflow-x: auto;
    scrollbar-width: none;
}

.agb-quicknav::-webkit-scrollbar {
    display: none;
}

.agb-quicknav__list {
    display: flex;
    gap: 4px;
    list-style: none;
    padding-inline: 0;
    flex-wrap: nowrap;
    min-width: max-content;
    margin-inline: auto;
    max-width: 1280px;
    padding-inline: 16px;
}

@media (min-width: 768px) {
    .agb-quicknav__list {
        flex-wrap: wrap;
        min-width: auto;
        padding-inline: 32px;
    }
}

.agb-quicknav__link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all var(--transition-fast);
    min-height: 34px;
    display: flex;
    align-items: center;
}

.agb-quicknav__link:hover {
    color: var(--primary);
    border-color: rgba(201,149,42,0.3);
    background: rgba(201,149,42,0.06);
}

/* Main AGB content area */
.agb-main {
    background: var(--background);
}

/* Licence card */
.agb-licence-card {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-block: 24px;
    box-shadow: 0 0 0 1px rgba(201,149,42,0.1), var(--glow-gold);
}

@media (max-width: 480px) {
    .agb-licence-card {
        flex-direction: column;
        gap: 12px;
    }
}

.agb-licence-card__icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.agb-licence-card__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agb-licence-card__row {
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.agb-licence-card__label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 140px;
}

@media (max-width: 540px) {
    .agb-licence-card__label {
        min-width: auto;
        width: 100%;
    }
    .agb-licence-card__row {
        flex-direction: column;
        gap: 2px;
    }
}

.agb-licence-card__value {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.4;
}

/* Impressum block */
.agb-impressum-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.agb-impressum-block h3 {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 8px;
}

.agb-impressum-block h3:first-child {
    margin-top: 0;
}

.agb-impressum-block p {
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   SPIELE PAGE STYLES
=======
/* ============================================
   SPIELE PAGE STYLES
   Hero, category tabs, jackpot cards, live section
   ============================================ */

/* Spiele hero */
.spiele-hero {
    background: radial-gradient(ellipse at 70% 40%, #1C1609 0%, #0E0B06 65%);
    min-height: 60vh;
}

@media (min-width: 1024px) {
    .spiele-hero {
        min-height: 68vh;
    }
}

/* Egyptian column decorative BG for hero */
.spiele-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201,149,42,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(201,149,42,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.spiele-hero-title {
    font-size: clamp(26px, 5.5vw, 58px);
    margin-bottom: 16px;
    line-height: 1.1;
}

.spiele-hero-mascot {
    max-width: 320px;
}

@media (min-width: 1024px) {
    .spiele-hero-mascot {
        max-width: 380px;
        width: 38%;
    }
}

.spiele-pharaoh-img {
    width: 100%;
    max-width: 340px;
    display: block;
    margin-inline: auto;
    filter: drop-shadow(0 0 32px rgba(201,149,42,0.5));
}

/* ============================================
   BONUSES PAGE STYLES
   Hero, Crab mechanic, Lamborghini, terms
   ============================================ */

/* Bonuses hero */
.bonuses-hero {
    background: radial-gradient(ellipse at 65% 50%, #1C1609 0%, #0E0B06 70%);
}

/* Bonus Crab wrapper in hero */
.bonuses-crab-wrapper {
    position: relative;
    display: inline-block;
}

.bonuses-crab-mascot {
    filter: drop-shadow(0 0 28px rgba(201,149,42,0.5));
    display: block;
}

/* Floating coin burst elements around crab */
.bonus-coin {
    position: absolute;
    font-size: 22px;
    animation: coinOrbit 3s ease-in-out infinite;
    pointer-events: none;
}

.bonus-coin--1 { top: 10%; left: -18px; animation-delay: 0s; animation-duration: 3.2s; }
.bonus-coin--2 { top: 30%; right: -22px; animation-delay: 0.4s; animation-duration: 2.8s; }
.bonus-coin--3 { bottom: 25%; left: -14px; animation-delay: 0.8s; animation-duration: 3.5s; }
.bonus-coin--4 { top: 5%; right: 10%; animation-delay: 1.2s; animation-duration: 2.6s; }
.bonus-coin--5 { bottom: 10%; right: -10px; animation-delay: 1.6s; animation-duration: 3.1s; }

@keyframes coinOrbit {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-14px) rotate(15deg); opacity: 1; }
}

/* Crab reward items grid */
.crab-rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
}

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

.crab-reward-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.crab-reward-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(201,149,42,0.2);
}

.crab-reward-icon {
    font-size: 28px;
    line-height: 1;
}

.crab-reward-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.04em;
}

.crab-reward-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* Drops & Wins feature inner layout */
.drops-wins-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .drops-wins-inner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
}

.drops-wins-mascot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drops-wins-content {
    flex: 1;
}

/* Lamborghini Tournament Section */
.lamborghini-section {
    position: relative;
    overflow: clip;
    background: #060402;
}

.lamborghini-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,149,42,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201,80,42,0.06) 0%, transparent 40%),
        linear-gradient(180deg, #080502, #0A0603, #080502);
    pointer-events: none;
}

.lamborghini-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .lamborghini-inner {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
}

.lamborghini-visual {
    flex-shrink: 0;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
}

.lamborghini-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Bonus Terms Card */
.bonus-terms-card {
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    max-width: 900px;
    margin-inline: auto;
    box-shadow: 0 0 0 1px rgba(201,149,42,0.15);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .bonus-terms-card {
        padding: 40px;
    }
}

/* Highlighted USP bar inside terms card */
.bonus-terms-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(201,149,42,0.08);
    border: 1px solid rgba(201,149,42,0.35);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.bonus-terms-highlight__icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.bonus-terms-highlight__title {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.bonus-terms-highlight__text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

.bonus-terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .bonus-terms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bonus-terms-col {
    display: flex;
    flex-direction: column;
}

/* Bonus grid 2-col override */
@media (min-width: 768px) {
    .bonus-grid.bonus-grid--two-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   INLINE TEXT LINKS - accessible, underlined
   Used within body text blocks for a11y
   ============================================ */

.inline-text-link {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--primary);
    font-weight: 600;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

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

/* External variant - same pattern for external links in body text */
.inline-text-link-ext {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--primary);
    font-weight: 600;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.inline-text-link-ext:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

/* ============================================
   HERO MASCOT WRAPPER
   Pharaoh + Crab positioned in hero
   ============================================ */

.hero-mascots-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
}

.hero-pharaoh-img {
    width: 100%;
    max-width: 260px;
    filter: drop-shadow(0 0 24px rgba(201,149,42,0.45));
    display: block;
    margin-inline: auto;
}

.hero-crab-img {
    position: absolute;
    bottom: -16px;
    right: -8px;
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 16px rgba(201,149,42,0.5));
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-pharaoh-img {
        max-width: 300px;
    }
    .hero-crab-img {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -16px;
    }
}

@media (min-width: 1024px) {
    .hero-mascots-wrapper {
        max-width: 380px;
    }
    .hero-pharaoh-img {
        max-width: 340px;
    }
    .hero-crab-img {
        width: 170px;
        height: 170px;
    }
}

/* Hero sand overlay */
.hero-sand-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,149,42,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   THEME TOGGLE BUTTON
   Dark-mode indicator in header
   ============================================ */

.theme-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-height: 40px;
    background: rgba(201,149,42,0.08);
    border: 1px solid rgba(201,149,42,0.25);
    border-radius: var(--radius-md);
    color: var(--primary);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: rgba(201,149,42,0.18);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(201,149,42,0.2);
}

.theme-toggle-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Show on desktop only - site is dark-only, serves as indicator */
@media (min-width: 768px) {
    .theme-toggle-btn {
        display: flex;
    }
}

/* Icon visibility: dark mode shows moon, light mode shows sun */
.theme-toggle-btn__icon--light {
    display: none;
}

.theme-toggle-btn__icon--dark {
    display: block;
}

/* Light theme overrides (kept minimal - site is dark-only by design) */
html.light .theme-toggle-btn__icon--light {
    display: block;
}

html.light .theme-toggle-btn__icon--dark {
    display: none;
}

/* ============================================
   REALZ CASINO - Design System
   Dark Egyptian-noir aesthetic
   Mobile-first, gold neon accents
   ============================================ */

/* ============================================
   RESET & BOX MODEL
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel Decorative (display) + Nunito Sans (body)
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(28px, 6vw, 64px);
    font-weight: 700;
}

h2 {
    font-size: clamp(22px, 4vw, 48px);
    font-weight: 700;
}

h3 {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 600;
}

h4 {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
}

p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 24px;
}

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

.text-muted {
    color: var(--muted-foreground);
}

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

.text-accent {
    color: var(--accent);
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Display text sizes */
.display-xl {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* ============================================
   LAYOUT SYSTEM
   Container, grid, section spacing
   ============================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 768px) {
    .container {
        padding-inline: 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 48px;
    }
}

.section {
    padding-block: 56px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 56px;
    }
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    color: var(--muted-foreground);
    max-width: 640px;
    margin-inline: auto;
}

/* ============================================
   ANIMATED GOLD BORDER LINES
   Hieroglyph-style decorative dividers
   ============================================ */

@keyframes goldShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9952A, #E8B030, #FFD700, #E8B030, #C9952A, transparent);
    background-size: 200% 100%;
    animation: goldShift 4s ease infinite;
}

.hieroglyph-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9952A 20%, #E8B030 50%, #C9952A 80%, transparent);
    background-size: 200% 100%;
    animation: goldShift 4s ease infinite;
    margin-block: 8px;
    border-radius: 2px;
}

/* Animated gradient border for cards */
@keyframes borderGlow {
    0%, 100% { border-color: #C9952A; box-shadow: 0 0 8px rgba(201,149,42,0.2); }
    50% { border-color: #E8B030; box-shadow: 0 0 16px rgba(232,176,48,0.4); }
}

/* ============================================
   BUTTON SYSTEM
   Primary (gold), Ghost, Outline variants
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-md);
    padding: 14px 24px;
    min-height: 48px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #C9952A, #E8B030, #C9952A);
    background-size: 200% 100%;
    color: #0E0B06;
    border-color: #C9952A;
}

.btn-primary:hover {
    background-position: right center;
    box-shadow: var(--glow-gold);
    color: #0E0B06;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(201,149,42,0.4);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(201,149,42,0.08);
}

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

.btn-gold-outline:hover {
    background: var(--primary);
    color: #0E0B06;
    box-shadow: var(--glow-gold);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    font-size: 12px;
    padding: 10px 18px;
    min-height: 40px;
}

.btn-lg {
    font-size: 16px;
    padding: 18px 40px;
    min-height: 56px;
}

/* Torch flare pulse animation */
@keyframes torchFlare {
    0%, 100% { box-shadow: 0 0 0px rgba(232,176,48,0); }
    50% { box-shadow: 0 0 32px rgba(232,176,48,0.5), 0 0 64px rgba(201,149,42,0.25); }
}

.torch-flare {
    animation: torchFlare 2.4s ease-in-out infinite;
}

.torch-flare:hover {
    animation: none;
    box-shadow: var(--glow-gold-intense);
}

/* ============================================
   HEADER
   Fixed sticky, frosted glass effect
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(14, 11, 6, 0.92);
    border-bottom: 1px solid var(--border);
}

/* IMPORTANT: NO backdrop-filter on mobile to avoid containing block trap */
@media (min-width: 769px) {
    .site-header {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
}

/* Logo */
.header-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,149,42,0.4);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

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

/* Desktop nav */
.header-nav {
    display: none;
    flex: 1;
    max-width: 400px;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(201,149,42,0.08);
}

.nav-link.active {
    border-bottom: 2px solid var(--primary);
}

/* Desktop auth buttons */
.header-auth {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .header-auth {
        display: flex;
    }
}

/* Mobile-only auth buttons inside nav drawer */
.nav-auth-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .nav-auth-mobile {
        display: none;
    }
}

/* ============================================
   HAMBURGER MENU
   Mobile navigation toggle
   ============================================ */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: rgba(201,149,42,0.1);
    border: 1px solid rgba(201,149,42,0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(201,149,42,0.2);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-med);
    transform-origin: center;
}

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE NAV DRAWER
   Full-screen overlay panel
   ============================================ */

/* Mobile: hidden by default */
#main-nav {
    display: none;
}

/* Overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.nav-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* Mobile drawer when open */
#main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #0E0B06;
    z-index: 999;
    overflow-y: auto;
    padding-block: 24px;
}

#main-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: 24px;
}

#main-nav.is-open .nav-link {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    color: var(--foreground);
}

#main-nav.is-open .nav-link:hover {
    color: var(--primary);
    background: transparent;
}

/* Desktop: show nav inline */
@media (min-width: 768px) {
    #main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        z-index: auto;
        overflow-y: visible;
        padding-block: 0;
    }

    #main-nav .nav-list {
        flex-direction: row;
        align-items: center;
        padding-inline: 0;
    }

    #main-nav .nav-link {
        font-size: 15px;
        padding: 8px 14px;
        border-bottom: none;
        min-height: auto;
    }
}

/* Page offset for fixed header */
main#main-content {
    padding-top: var(--header-height);
}

/* ============================================
   HERO SECTION
   Full-viewport with canvas for Three.js
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: clip;
    background: radial-gradient(ellipse at center, #1A1208 0%, #0E0B06 70%);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 56px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media (min-width: 1024px) {
    .hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-title {
    margin-bottom: 16px;
    color: var(--foreground);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #0E0B06;
    background: linear-gradient(135deg, #C9952A, #E8B030);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-mascot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
}

@media (min-width: 1024px) {
    .hero-mascot {
        width: 40%;
    }
}

/* ============================================
   MASCOT SVG ILLUSTRATIONS
   Pharaoh and Bonus Crab characters
   ============================================ */

.mascot-pharaoh,
.mascot-crab {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    filter: drop-shadow(0 0 24px rgba(201,149,42,0.4));
    transition: filter var(--transition-med);
}

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

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

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

.mascot-float-slow {
    animation: floatBobSlow 4s ease-in-out infinite;
}

/* ============================================
   STAT STRIP
   Full-bleed metrics band
   ============================================ */

.stat-strip {
    background: var(--card);
    position: relative;
    padding-block: 48px;
}

.stat-strip__top-line,
.stat-strip__bottom-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9952A, #E8B030, #C9952A, transparent);
    background-size: 200% 100%;
    animation: goldShift 4s ease infinite;
    position: absolute;
    left: 0;
    right: 0;
}

.stat-strip__top-line { top: 0; }
.stat-strip__bottom-line { bottom: 0; }

.stat-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .stat-strip__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.stat-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
    gap: 6px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-unit.is-visible {
    opacity: 1;
    transform: none;
}

.stat-unit__icon {
    font-size: 28px;
    color: var(--accent);
    line-height: 1;
}

.stat-unit__value {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-unit__label {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.3;
    max-width: 120px;
}

.stat-divider {
    display: none;
}

@media (min-width: 768px) {
    .stat-divider {
        display: block;
        width: 1px;
        height: 60px;
        background: var(--border);
        align-self: center;
    }
}

/* ============================================
   BONUS CARD COMPONENT
   Egyptian-themed offer cards
   ============================================ */

.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: borderGlow 3s ease-in-out infinite;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-gold);
    animation: none;
}

.bonus-card--highlight {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(201,149,42,0.3);
}

.bonus-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #C9952A, #E8B030);
    color: #0E0B06;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

.bonus-card__img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--muted);
}

.bonus-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-card__img-placeholder,
.bonus-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1C1609, #251C0D);
}

.bonus-card__placeholder-svg {
    width: 100%;
    height: 100%;
}

.bonus-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

@media (min-width: 1024px) {
    .bonus-card__body {
        padding: 24px;
    }
}

.bonus-card__title {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

.bonus-card__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.bonus-card__terms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bonus-card__term {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.bonus-card__term::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 8px;
    top: 4px;
}

/* ============================================
   GAME CARD COMPONENT
   Casino game showcase cards
   ============================================ */

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    min-width: 0;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-gold);
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #C9952A, #E8B030);
    color: #0E0B06;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 8px;
    z-index: 2;
}

.game-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #1A1208;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-med);
}

.game-card:hover .game-card__img {
    transform: scale(1.05);
}

.game-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card__placeholder-svg {
    width: 100%;
    height: 100%;
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,11,6,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.game-card__play-btn {
    transform: scale(0.9);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.game-card:hover .game-card__play-btn {
    transform: scale(1);
    box-shadow: var(--glow-gold);
}

.game-card__info {
    padding: 10px 12px 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.game-card__title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card__provider {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.2;
}

.game-card__cta {
    margin: 8px 12px 12px;
    font-size: 11px;
    padding: 8px 12px;
    min-height: 36px;
    letter-spacing: 0.08em;
}

/* Game grid layouts */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (min-width: 600px) {
    .game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

/* Homepage game grid: 6 items - use 3 cols on desktop to avoid orphan row */
@media (min-width: 1024px) {
    .game-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Bonus card grids */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

/* ============================================
   FAQ ACCORDION
   Native details/summary expandable
   ============================================ */

.faq-accordion {
    max-width: 800px;
    margin-inline: auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    min-height: 60px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question__text {
    font-family: var(--font-display);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.3;
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    border-top: 1px solid var(--border);
}

.faq-answer__inner {
    padding: 16px 20px 20px 24px;
    border-left: 4px solid var(--accent);
    margin-left: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.7;
}

.faq-answer__inner p {
    font-size: 16px;
    margin-bottom: 8px;
}

/* ============================================
   PROVIDER LOGOS STRIP
   Game provider brand logos
   ============================================ */

.providers-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.provider-logo {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all var(--transition-fast);
    min-height: 48px;
    display: flex;
    align-items: center;
}

.provider-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(201,149,42,0.2);
}

/* ============================================
   PAYMENT METHODS
   Footer and inline payment logo displays
   ============================================ */

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-logo {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-foreground);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.payment-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ============================================
   TRUST BADGES
   Safety index, license, eCOGRA
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

.trust-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-gold);
}

.trust-badge__icon {
    font-size: 40px;
    line-height: 1;
}

.trust-badge__value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-badge__label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.3;
}

/* ============================================
   VIP TIER CARDS
   Loyalty program progression
   ============================================ */

.vip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 600px) {
    .vip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .vip-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
        overflow-x: visible;
    }
}

.vip-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.vip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
}

.vip-card__icon {
    font-size: 32px;
    line-height: 1;
}

.vip-card__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

.vip-card__perk {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.3;
}

.vip-card--active {
    border-color: var(--primary);
    box-shadow: var(--glow-gold);
}

.vip-card--active .vip-card__name {
    color: var(--primary);
}

/* ============================================
   CALLOUT & HIGHLIGHT BOXES
   CRO + engagement patterns
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.summary-box__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-box__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-box__list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    padding-left: 20px;
    position: relative;
}

.summary-box__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Callout / highlight box */
.callout-box {
    background: rgba(201,149,42,0.08);
    border: 1px solid rgba(201,149,42,0.3);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-block: 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
}

.callout-box--warning {
    border-left-color: #E8A030;
    background: rgba(232,160,48,0.08);
}

.callout-box--info {
    border-left-color: #5BA4CF;
    background: rgba(91,164,207,0.08);
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.stat-highlight__label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    margin-top: 8px;
    display: block;
}

.stat-highlight__source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
    font-style: italic;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin-block: 32px;
}

.pull-quote__text {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 8px;
}

.pull-quote__attribution {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* CTA section band */
.cta-section {
    background: linear-gradient(135deg, #1C1609, #251C0D);
    border-block: 1px solid var(--border);
    padding-block: 64px;
    text-align: center;
    position: relative;
    overflow: clip;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,149,42,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__title {
    margin-bottom: 16px;
}

.cta-section__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 560px;
    margin-inline: auto;
}

.cta-section__note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* Comparison table */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-block: 24px;
}

.table-wrapper:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    font-family: var(--font-body);
    font-size: 15px;
}

.comparison-table th {
    background: var(--muted);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.comparison-table td {
    padding: 12px 16px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
}

.comparison-table .highlight-col {
    border-left: 3px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.comparison-table .recommended-row td {
    background: rgba(201,149,42,0.08);
    border-left: 3px solid var(--primary);
}

/* Social proof cards */
.review-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .review-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .review-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition-fast);
}

.review-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(201,149,42,0.15);
}

.review-card__stars {
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card__text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0;
}

.review-card__author {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 600;
}

/* ============================================
   CATEGORY FILTER TABS
   Game category navigation (spiele.html)
   ============================================ */

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    min-height: 72px;
    flex-shrink: 0;
    border-bottom: 2px solid transparent;
}

.category-tab__icon {
    font-size: 22px;
    line-height: 1;
}

.category-tab:hover,
.category-tab.active {
    color: #0E0B06;
    background: linear-gradient(135deg, #C9952A, #E8B030);
    border-color: #C9952A;
    box-shadow: var(--glow-gold);
}

/* ============================================
   LIVE CASINO TABLE CARDS
   Evolution/Pragmatic Live section
   ============================================ */

.live-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .live-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.live-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-fast);
    position: relative;
}

.live-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-gold);
    border-color: var(--primary);
}

.live-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #1C1609, #2E1A08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

.live-card__provider-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(14,11,6,0.85);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

.live-card__live-dot {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(14,11,6,0.85);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ECC71;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-dot-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: #2ECC71;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.live-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.live-card__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
}

.live-card__stakes {
    display: inline-flex;
    align-items: center;
    background: rgba(201,149,42,0.12);
    border: 1px solid rgba(201,149,42,0.3);
    border-radius: 12px;
    padding: 4px 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    width: fit-content;
}

.live-card__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   SEO TEXT SECTION
   Long-form content with Egyptian column decorations
   ============================================ */

.seo-text-section {
    background: var(--background);
    position: relative;
}

.seo-text-container {
    max-width: 780px;
    margin-inline: auto;
}

.seo-text-container h2 {
    margin-bottom: 24px;
}

.seo-text-container h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.seo-text-container p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--foreground);
}

.seo-text-container ul,
.seo-text-container ol {
    margin-bottom: 20px;
    padding-left: 0;
}

.seo-text-container ul li,
.seo-text-container ol li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    padding: 4px 0 4px 24px;
    position: relative;
}

.seo-text-container ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 10px;
    top: 8px;
}

.seo-text-container ol {
    counter-reset: seo-counter;
}

.seo-text-container ol li {
    counter-increment: seo-counter;
}

.seo-text-container ol li::before {
    content: counter(seo-counter) '.';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.seo-text-container a {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--primary);
    font-weight: 600;
}

.seo-text-container a:hover {
    color: var(--primary);
}

/* ============================================
   JACKPOT BLOCK
   Live jackpot counter display cards
   ============================================ */

.jackpot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .jackpot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.jackpot-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.jackpot-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-gold-intense);
}

.jackpot-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--foreground);
}

.jackpot-card__counter {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(201,149,42,0.5);
}

@keyframes counterTick {
    0%, 100% { text-shadow: 0 0 20px rgba(201,149,42,0.5); }
    50% { text-shadow: 0 0 40px rgba(232,176,48,0.8); }
}

.jackpot-card__counter {
    animation: counterTick 2s ease-in-out infinite;
}

.jackpot-card__label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   PAGE HERO (non-fullscreen variants)
   For bonuses.html, spiele.html, agb.html
   ============================================ */

.page-hero {
    background: radial-gradient(ellipse at 70% 50%, #1C1609 0%, #0E0B06 70%);
    padding-block: 56px;
    position: relative;
    overflow: clip;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .page-hero {
        min-height: 60vh;
    }
}

.page-hero--minimal {
    min-height: 35vh;
    background: radial-gradient(ellipse at center, #1C1609 0%, #0E0B06 80%);
}

@media (min-width: 1024px) {
    .page-hero--minimal {
        min-height: 40vh;
    }
}

.page-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

@media (min-width: 1024px) {
    .page-hero__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.page-hero__text {
    flex: 1;
}

.page-hero__mascot {
    flex-shrink: 0;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .page-hero__mascot {
        width: 35%;
        margin-inline: 0;
    }
}

/* ============================================
   FOOTER
   Three-column layout
   ============================================ */

.site-footer {
    background: #080604;
    position: relative;
}

.footer-top-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9952A, #E8B030, #C9952A, transparent);
    background-size: 200% 100%;
    animation: goldShift 4s ease infinite;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 48px;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo .logo-img {
    width: 36px;
    height: 36px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    max-width: 220px;
}

.license-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.license-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

.license-num {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--muted-foreground);
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.safety-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    text-align: center;
}

.safety-score {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.safety-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--muted-foreground);
}

.footer-disclaimer {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.footer-seal {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
}

.footer-rg-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.footer-link-ext {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.footer-copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-link-inline {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-link-inline:hover {
    color: var(--primary);
}

/* ============================================
   SCROLL ANIMATIONS
   IntersectionObserver reveal triggers
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.is-visible {
    opacity: 1;
}

/* Stagger delays for grid items */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 400ms; }

/* Papyrus scroll clip-path reveal */
@keyframes papyrusReveal {
    from { clip-path: inset(0 100% 0 0); opacity: 0; }
    to { clip-path: inset(0 0% 0 0); opacity: 1; }
}

.papyrus-reveal {
    animation: papyrusReveal 0.8s ease forwards;
}

/* ============================================
   PHARAOH REVEAL SECTION
   GSAP ScrollTrigger: rises from below
   ============================================ */

.pharaoh-reveal-section {
    position: relative;
    background: linear-gradient(180deg, #0E0B06, #120D07, #0E0B06);
    overflow: clip;
}

.pharaoh-reveal-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .pharaoh-reveal-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.pharaoh-reveal__text {
    flex: 1;
    max-width: 520px;
}

.pharaoh-reveal__mascot {
    flex-shrink: 0;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .pharaoh-reveal__mascot {
        width: 40%;
        margin-inline: 0;
    }
}

#pharaoh-mascot-reveal {
    transform: translateY(60px) scale(0.6);
    opacity: 0;
    filter: drop-shadow(0 0 0px rgba(201,149,42,0));
    transition: transform 1.2s ease-out, opacity 1.2s ease-out, filter 1.2s ease-out;
}

#pharaoh-mascot-reveal.is-revealed {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 32px rgba(201,149,42,0.5));
}

/* ============================================
   BONUS CRAB SECTION
   Daily mechanic explainer
   ============================================ */

.crab-section {
    background: #0A0804;
    position: relative;
}

.crab-section__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .crab-section__inner {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
}

.crab-section__mascot {
    flex-shrink: 0;
    max-width: 260px;
    width: 100%;
    margin-inline: auto;
}

@media (min-width: 1024px) {
    .crab-section__mascot {
        margin-inline: 0;
        max-width: 300px;
    }
}

.crab-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.crab-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.crab-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9952A, #E8B030);
    color: #0E0B06;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crab-step__content {
    flex: 1;
}

.crab-step__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 4px;
}

.crab-step__desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   LEGAL / AGB PAGE SPECIFICS
   Text-heavy content styles
   ============================================ */

.legal-content {
    max-width: 780px;
    margin-inline: auto;
}

.legal-content h2 {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--foreground);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-size: clamp(17px, 2.5vw, 22px);
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
}

.legal-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid rgba(61,46,20,0.4);
}

.legal-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.legal-section-divider {
    height: 1px;
    background: var(--border);
    margin-block: 48px;
}

.legal-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   TOMB PAGE (redirect stub)
   Full-viewport minimal branded page
   ============================================ */

.tomb-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1A1208 0%, #0E0B06 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 24px;
    position: relative;
    overflow: clip;
}

.tomb-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,149,42,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating hieroglyph particles */
.tomb-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.tomb-particle {
    position: absolute;
    font-size: clamp(18px, 3vw, 28px);
    color: var(--primary);
    opacity: 0;
    animation: tombParticleDrift 8s ease-in-out infinite;
}

.tomb-particle--1 { left: 8%;  top: 20%; animation-delay: 0s;    animation-duration: 7s; }
.tomb-particle--2 { left: 85%; top: 15%; animation-delay: 1.2s;  animation-duration: 9s; }
.tomb-particle--3 { left: 15%; top: 70%; animation-delay: 2.4s;  animation-duration: 6.5s; }
.tomb-particle--4 { left: 78%; top: 65%; animation-delay: 0.8s;  animation-duration: 8.5s; }
.tomb-particle--5 { left: 50%; top: 10%; animation-delay: 1.8s;  animation-duration: 7.5s; }
.tomb-particle--6 { left: 40%; top: 85%; animation-delay: 3.2s;  animation-duration: 6s; }

@keyframes tombParticleDrift {
    0%   { opacity: 0;    transform: translateY(0) rotate(0deg); }
    20%  { opacity: 0.35; }
    80%  { opacity: 0.2;  }
    100% { opacity: 0;    transform: translateY(-40px) rotate(20deg); }
}

.tomb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,149,42,0.12) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes tombGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.tomb-glow {
    animation: tombGlow 2.5s ease-in-out infinite;
}

.tomb-logo-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(201,149,42,0.3)); }
    50% { filter: drop-shadow(0 0 24px rgba(201,149,42,0.7)); }
}

.tomb-logo {
    animation: logoPulse 2s ease-in-out infinite;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(201,149,42,0.5);
}

.tomb-logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 16px;
    display: block;
}

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

.tomb-mascot {
    position: relative;
    z-index: 2;
    max-width: 200px;
    margin-inline: auto;
    margin-bottom: 28px;
    animation: floatBob 3s ease-in-out infinite;
}

.tomb-heading {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 20px;
}

/* Loading dots animation */
.loading-dots {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

@keyframes dotPulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}

.loading-dot:nth-child(1) { animation: dotPulse 1.2s ease-in-out infinite 0ms; }
.loading-dot:nth-child(2) { animation: dotPulse 1.2s ease-in-out infinite 200ms; }
.loading-dot:nth-child(3) { animation: dotPulse 1.2s ease-in-out infinite 400ms; }

.tomb-note {
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   DECORATIVE ELEMENTS
   Egyptian column watermarks, sand particles
   ============================================ */

.egyptian-columns {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    opacity: 0.06;
    pointer-events: none;
    display: none;
}

@media (min-width: 1280px) {
    .egyptian-columns {
        display: block;
    }
}

.egyptian-columns--left { left: 0; }
.egyptian-columns--right { right: 0; transform: scaleX(-1); }

/* Radial gold glow backgrounds */
.bg-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 600px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(201,149,42,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   UTILITY CLASSES
   Helpers used across pages
   ============================================ */

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

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

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

.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 32px; }
.mb-2xl { margin-bottom: 48px; }

.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }
.mt-2xl { margin-top: 48px; }

/* Gold text gradient */
.text-gold-gradient {
    background: linear-gradient(135deg, #C9952A, #E8B030, #FFD700, #E8B030, #C9952A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldShift 4s ease infinite;
}

/* Gold border card wrapper */
.gold-border-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
    padding: 24px;
    animation: borderGlow 3s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .gold-border-card {
        padding: 32px;
    }
}

/* Inline gold badge */
.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(201,149,42,0.12);
    border: 1px solid rgba(201,149,42,0.4);
    border-radius: 20px;
    padding: 4px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* Player count display */
.player-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
}

.player-count__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ECC71;
    animation: livePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Social proof strip */
.social-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

/* Urgency text */
.urgency-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 8px;
}

/* Feature list with gold icons */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.5;
}

.feature-list li::before {
    content: '✦';
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Two-column text layout */
.two-col-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .two-col-layout {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }

    .two-col-layout > * {
        flex: 1;
    }
}

/* Countdown element */
.countdown-display {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 64px;
}

.countdown-unit__num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-unit__label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Wide feature banner */
.feature-banner {
    background: linear-gradient(135deg, #1C1609, #251C0D);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    position: relative;
    overflow: clip;
}

@media (min-width: 1024px) {
    .feature-banner {
        padding: 48px;
    }
}

.feature-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201,149,42,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Mini stats list */
.mini-stats-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
}

.mini-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
}

.mini-stat-item::before {
    content: '✦';
    color: var(--primary);
    flex-shrink: 0;
    font-size: 12px;
}