/* ═══════════════════════════════════════════
   CRAZY777.COM.MX — Ultra Design System 2026
   Developer: deportech-mexico.com.mx
   Theme: Cosmic Purple · Neon Gold · Wild 777
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --purple: #7B2FFF;
    --purple-dark: #4A0FC4;
    --purple-glow: rgba(123, 47, 255, 0.4);
    --gold: #FFD700;
    --gold-light: #FFF59D;
    --gold-glow: rgba(255, 215, 0, 0.35);
    --red: #FF2D55;
    --red-glow: rgba(255, 45, 85, 0.35);
    --cyan: #00F5FF;
    --green: #00E676;

    /* Backgrounds */
    --dark: #07030F;
    --dark-mid: #0F0820;
    --dark-card: #130C25;
    --dark-card2: #1A1035;
    --dark-glass: rgba(19, 12, 37, 0.7);

    /* Borders */
    --border: rgba(123, 47, 255, 0.2);
    --border-gold: rgba(255, 215, 0, 0.25);
    --border-bright: rgba(123, 47, 255, 0.5);

    /* Text */
    --text: #F2EEF8;
    --text-muted: #A09BBF;
    --white: #FFFFFF;

    /* Typography */
    --font-head: 'Orbitron', sans-serif;
    --font-alt: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --radius: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-w: 1200px;
    --trans: 0.3s ease;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--purple), var(--purple-dark));
    --grad-gold: linear-gradient(135deg, #FFD700, #FFA000);
    --grad-crazy: linear-gradient(135deg, #7B2FFF 0%, #FF2D55 50%, #FFD700 100%);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-mid);
}

::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    background: var(--purple);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top var(--trans);
}

.skip-link:focus {
    top: 0;
}

/* ══════════ HEADER ══════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 3, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 20px var(--purple-glow);
    object-fit: cover;
}

.logo-777 {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--trans), background var(--trans);
    font-family: var(--font-alt);
    letter-spacing: 0.04em;
}

.main-nav a:hover {
    color: var(--white);
    background: rgba(123, 47, 255, 0.1);
}

.main-nav a.active {
    color: var(--gold);
}

.header-cta {
    background: var(--grad-primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-alt);
    letter-spacing: 0.06em;
    box-shadow: 0 0 20px var(--purple-glow);
    transition: transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px var(--purple-glow);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 3, 15, 0.97);
    backdrop-filter: blur(24px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-alt);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.06em;
    transition: color var(--trans), text-shadow var(--trans);
}

.mobile-menu a:hover {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ══════════ HERO ══════════ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 35% 50%, rgba(123, 47, 255, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 45, 85, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 70% 80%, rgba(255, 215, 0, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(123, 47, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 47, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.particles-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 47, 255, 0.12);
    border: 1px solid rgba(123, 47, 255, 0.35);
    color: var(--purple);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: var(--font-alt);
}

.hero-eyebrow::before {
    content: '●';
    font-size: 0.55rem;
    animation: blink777 1.2s ease-in-out infinite;
}

@keyframes blink777 {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .crazy {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-title .seven {
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hstat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    text-align: center;
    transition: border-color var(--trans), box-shadow var(--trans);
}

.hstat:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.hstat-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hstat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.06em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    box-shadow: 0 0 24px var(--purple-glow);
    transition: transform var(--trans), box-shadow var(--trans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 44px var(--purple-glow);
}

.btn-gold {
    background: var(--grad-gold);
    color: #000;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    box-shadow: 0 0 24px var(--gold-glow);
    transition: transform var(--trans), box-shadow var(--trans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 44px var(--gold-glow);
}

.btn-outline {
    border: 1px solid var(--border-bright);
    color: var(--text);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: background var(--trans), border-color var(--trans);
}

.btn-outline:hover {
    background: rgba(123, 47, 255, 0.1);
    border-color: var(--purple);
}

/* Hero Image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 80px var(--purple-glow), 0 0 160px rgba(255, 215, 0, 0.06);
}

.hero-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 3, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 10px 24px;
    text-align: center;
    white-space: nowrap;
}

.hero-img-badge .badge-val {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--gold);
    text-shadow: 0 0 16px var(--gold-glow);
}

.hero-img-badge .badge-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ══════════ FACTS STRIP ══════════ */
.facts-strip {
    background: var(--dark-card2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}

.facts-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 0;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.fact-item {
    text-align: center;
    padding: 12px 20px;
}

.fact-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.fact-val {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.fact-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ══════════ SECTIONS ══════════ */
.section {
    padding: 88px 24px;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-dark {
    background: var(--dark-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--font-alt);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.section-title .red {
    color: var(--red);
}

.section-desc {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 1.05rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), transparent);
    border-radius: 2px;
    margin: 16px 0 40px;
}

/* ══════════ GAME CARDS ══════════ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px rgba(123, 47, 255, 0.2);
}

.game-card-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    position: relative;
}

.game-card-thumb-bg {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.game-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-alt);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.game-card-badge.gold {
    background: var(--grad-gold);
    color: #000;
}

.game-card-badge.purple {
    background: var(--grad-primary);
}

.game-card-body {
    padding: 20px;
}

.game-card-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.game-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.game-chip {
    background: rgba(123, 47, 255, 0.12);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.game-chip.gold-chip {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.game-card-rtp {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.game-card-rtp strong {
    color: var(--green);
}

.btn-play {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--grad-primary);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-family: var(--font-alt);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    margin-top: 14px;
    transition: box-shadow var(--trans), transform var(--trans);
    box-shadow: 0 0 16px var(--purple-glow);
}

.btn-play:hover {
    box-shadow: 0 0 32px var(--purple-glow);
    transform: translateY(-2px);
}

/* ══════════ CARDS GRID ══════════ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 47, 255, 0.45);
    box-shadow: 0 12px 40px rgba(123, 47, 255, 0.12);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(123, 47, 255, 0.12);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.card-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════ FEATURE ROW ══════════ */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-alt);
}

.feature-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '▸';
    color: var(--purple);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ══════════ TABLE ══════════ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 12px 20px;
    text-align: left;
}

thead {
    background: rgba(123, 47, 255, 0.08);
}

th {
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--purple);
    text-transform: uppercase;
    text-align: left;
}

td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.td-gold {
    color: var(--gold);
    font-weight: 600;
}

.td-green {
    color: var(--green);
    font-weight: 600;
}

/* Badges */
.badge {
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.badge-purple {
    background: rgba(123, 47, 255, 0.2);
    color: var(--purple);
    border: 1px solid var(--border);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.badge-green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.badge-red {
    background: rgba(255, 45, 85, 0.15);
    color: var(--red);
    border: 1px solid rgba(255, 45, 85, 0.2);
}

/* ══════════ TIMELINE ══════════ */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding-bottom: 32px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-card2);
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    font-family: var(--font-head);
    box-shadow: 0 0 12px var(--purple-glow);
}

.timeline-body h3 {
    font-family: var(--font-alt);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    padding-top: 8px;
}

.timeline-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════ FAQ ══════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-alt);
    letter-spacing: 0.02em;
    transition: color var(--trans);
}

.faq-q:hover,
.faq-q.open {
    color: var(--gold);
}

.faq-q span {
    font-size: 1.4rem;
    color: var(--purple);
    transition: transform var(--trans);
    flex-shrink: 0;
}

.faq-q.open span {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-a.open {
    display: block;
}

.text-link {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ══════════ BREADCRUMB ══════════ */
.breadcrumb {
    background: var(--dark-card);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
}

.breadcrumb ol {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
}

.breadcrumb li::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--trans);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb [aria-current] {
    color: var(--text);
}

/* ══════════ PAGE HERO ══════════ */
.page-hero {
    background: linear-gradient(180deg, var(--dark-mid) 0%, var(--dark) 100%);
    border-bottom: 1px solid var(--border);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(123, 47, 255, 0.1) 0%, transparent 65%);
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ══════════ SEO CONTENT ══════════ */
.seo-content {
    padding: 60px 24px;
    background: var(--dark-card);
    border-top: 1px solid var(--border);
}

.seo-article {
    max-width: var(--max-w);
    margin: 0 auto;
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 16px;
}

.seo-article h3 {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    color: var(--text);
    margin: 24px 0 10px;
    font-weight: 700;
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.seo-link-card {
    background: var(--dark-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--trans), color var(--trans);
}

.seo-link-card:hover {
    border-color: var(--purple);
    color: var(--white);
}

.seo-link-card span {
    font-size: 1.1rem;
}

/* ══════════ JACKPOT BANNER ══════════ */
.jackpot-banner {
    background: linear-gradient(135deg, #1a0835, #0f0523, #1a0c00);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 65%);
}

.jackpot-banner-777 {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow);
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
}

.jackpot-banner-label {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.jackpot-banner-amount {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 16px 0;
    position: relative;
    z-index: 1;
}

/* ══════════ REVEAL ANIMATION ══════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fadeup {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeupAnim 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.55s;
}

.delay-5 {
    animation-delay: 0.7s;
}

@keyframes fadeupAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════ FOOTER ══════════ */
footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-link {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 5px 0;
    transition: color var(--trans);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.developer-link {
    color: var(--purple);
    transition: color var(--trans);
}

.developer-link:hover {
    color: var(--gold);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seo-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

    .hero-visual {
        order: -1;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .burger-btn {
        display: flex;
        margin-left: auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .seo-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 12px;
    }

    .hstat {
        padding: 10px 14px;
    }

    .facts-inner {
        gap: 0;
    }

    .fact-item {
        padding: 10px 12px;
    }
}
/* Mobile touch targets */
.btn-gold, .btn-outline, .btn-play, .faq-q { min-height: 44px; }
