/* ===================================
   GirosViva MX — Dark Neon Design System
   Inspired by promomira.it.com
   =================================== */

:root {
    /* --- Dark Neon Palette --- */
    --bg-page:    #0F172A;
    --bg-surface: #1A2540;
    --bg-card:    #162036;
    --bg-card2:   #1E2D4A;

    --text-h:     #FFFFFF;
    --text-body:  #CBD5E1;
    --text-muted: #64748B;

    --primary:       #FF2D55;   /* Vivid red — main CTA */
    --primary-hover: #E8183F;
    --primary-glow:  rgba(255, 45, 85, 0.4);
    --primary-light: rgba(255, 45, 85, 0.12);

    --cyan:       #00F2FF;      /* Electric cyan — accents/icons */
    --cyan-glow:  rgba(0, 242, 255, 0.25);
    --cyan-light: rgba(0, 242, 255, 0.08);

    --gold:       #F59E0B;
    --gold-light: rgba(245, 158, 11, 0.15);

    --success: #10B981;
    --danger:  #FF2D55;

    --border:           rgba(255,255,255,0.07);
    --border-glow:      rgba(0, 242, 255, 0.2);
    --card-shadow:      0 4px 30px rgba(0,0,0,0.5);
    --card-shadow-hover:0 12px 50px rgba(0,0,0,0.7);

    /* --- Typography --- */
    --font-body:    'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', system-ui, sans-serif;

    /* --- Shape --- */
    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  22px;
    --radius-xl:  30px;
    --radius-pill:999px;

    /* --- Transitions --- */
    --ease:           cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition:     all 0.3s var(--ease);
    --transition-slow:all 0.6s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================
   18+ Top Notification Bar
============================= */
.topbar-18 {
    background: var(--primary);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 200;
    position: relative;
}

/* ============================
   Age Verification Modal
============================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 35, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content.glass-effect {
    background: linear-gradient(145deg, #1A2540, #0F172A);
    border: 1px solid var(--border-glow);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 40px rgba(255,45,85,0.15);
    max-width: 520px;
    width: 92%;
    text-align: center;
    animation: modalIn 0.55s cubic-bezier(0.0,0.0,0.2,1) forwards;
}

@keyframes modalIn {
    from { opacity:0; transform:translateY(50px) scale(0.94); }
    to   { opacity:1; transform:translateY(0) scale(1); }
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-h);
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
}

.modal-alert {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.modal-question {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-h);
    margin-bottom: 1rem;
}

.modal-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.2rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hidden-msg {
    display: none;
    color: var(--danger);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 1.2rem;
    padding: 0.6rem 1rem;
    background: rgba(255,45,85,0.1);
    border-radius: var(--radius-sm);
}

/* ============================
   Buttons
============================= */
.btn {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.4rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e8183f);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg-card2);
    color: var(--text-body);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-surface);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan-light);
    box-shadow: 0 0 20px var(--cyan-glow);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

/* Content blur while modal is open */
.content-wrapper { transition: filter 0.5s ease; }
.content-wrapper.blur {
    filter: blur(14px);
    pointer-events: none;
    user-select: none;
}

/* ============================
   Header
============================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: inherit;
}

.logo-777 {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-stars {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.logo-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -2px;
    text-shadow: 0 0 14px rgba(245,158,11,0.7);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-h);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-mx {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav a:hover { color: var(--text-h); }

/* Balance Indicator */
.nav-balance { margin-left: 0.5rem; }

.balance-pill {
    background: var(--gold-light);
    color: var(--gold);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(245,158,11,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 12px rgba(245,158,11,0.15);
}

.balance-currency {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ============================
   Game Modal (Slots / Roulette / Blackjack)
============================= */
#game-modal {
    display: none;
}
#game-modal:not(.hidden) {
    display: flex;
}

.game-container {
    background: linear-gradient(145deg, #1A2540, #0F172A);
    border: 1px solid var(--border-glow);
    width: 95%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(255,45,85,0.1);
}

.close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.game-header {
    margin-bottom: 1.5rem;
}

.game-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-balance {
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-light);
    display: inline-block;
    padding: 0.45rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(245,158,11,0.3);
    font-size: 1rem;
}

/* ---- Slot Machine --- */
.slot-machine {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.reel {
    width: 110px;
    height: 160px;
    background: rgba(0,0,0,0.6);
    border: 2px solid var(--border-glow);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0,242,255,0.1), inset 0 0 20px rgba(0,0,0,0.5);
}

.reel-strip {
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
}

.slot-symbol {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
}

.win-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: translateY(-50%);
    opacity: 0.6;
    pointer-events: none;
}

.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    gap: 1rem;
    flex-wrap: wrap;
}

.control-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.bet-selector {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.bet-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--font-heading);
}

.bet-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--cyan);
    color: var(--cyan);
}

.bet-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.btn-spin {
    padding: 1rem 3.5rem;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.btn-spin:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.game-message {
    margin-top: 1rem;
    font-weight: 700;
    min-height: 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.win-text  { color: var(--gold); text-shadow: 0 0 20px rgba(245,158,11,0.8); }
.lose-text { color: var(--text-muted); }
.jackpot-text { color: var(--cyan); font-size: 1.4rem; text-shadow: 0 0 30px var(--cyan-glow); }

/* Paytable */
.paytable {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.paytable h4 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.75rem;
}

.pay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.82rem;
}

.pay-sym  { font-size: 1.5rem; margin-bottom: 0.2rem; }
.pay-val  { font-weight: 700; color: var(--gold); }

/* ---- Roulette Game ---- */
.roulette-game {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.roulette-wheel-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.roulette-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0,242,255,0.2), 0 0 80px rgba(255,45,85,0.1);
    border: 3px solid var(--border-glow);
}

.roulette-number-display {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(245,158,11,0.8);
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roulette-bets {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.roulette-bet-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--font-heading);
}

.roulette-bet-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-light);
}

.roulette-bet-btn.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.roulette-bet-btn.color-red {
    border-color: var(--primary);
    color: var(--primary);
}
.roulette-bet-btn.color-black {
    border-color: #94a3b8;
    color: #94a3b8;
}
.roulette-bet-btn.color-green {
    border-color: var(--success);
    color: var(--success);
}

/* ---- Blackjack Game ---- */
.blackjack-game {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.bj-table {
    background: radial-gradient(ellipse at center, #1a4a2e 0%, #0e2818 100%);
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.bj-hand-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.bj-cards {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 90px;
    margin-bottom: 0.5rem;
}

.playing-card {
    width: 60px;
    height: 88px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    box-shadow: 2px 4px 12px rgba(0,0,0,0.4);
    color: #111;
    position: relative;
    cursor: default;
    transition: transform 0.2s;
    animation: cardDeal 0.3s ease;
}

@keyframes cardDeal {
    from { opacity:0; transform: translateY(-20px) rotate(-5deg); }
    to   { opacity:1; transform: translateY(0) rotate(0deg); }
}

.playing-card.red { color: #c0392b; }
.playing-card.hidden-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: transparent;
    border: 2px solid var(--border-glow);
}
.playing-card.hidden-card::after {
    content: '🂠';
    font-size: 2.5rem;
    opacity: 0.6;
}

.card-rank {
    font-size: 1.1rem;
    line-height: 1;
}
.card-suit {
    font-size: 1.2rem;
    line-height: 1;
}

.bj-score {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.bj-divider {
    border: none;
    border-top: 1px dashed rgba(255,255,255,0.1);
    margin: 1.2rem 0;
}

.bj-controls {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bj-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.bj-btn:hover:not(:disabled) {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-light);
}

.bj-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bj-btn-deal {
    background: linear-gradient(135deg, var(--primary), #e8183f);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
}

/* Game tabs */
.game-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    border: 1px solid var(--border);
    padding: 0.4rem;
    border-radius: var(--radius-pill);
    background: rgba(0,0,0,0.3);
}

.game-tab {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.game-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 16px var(--primary-glow);
}

.game-tab:hover:not(.active) {
    color: var(--text-h);
    background: rgba(255,255,255,0.05);
}

.game-panel { display: none; }
.game-panel.active { display: block; }

/* ============================
   Hero Section
============================= */
.hero-section {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
    background: var(--bg-page);
}

/* Radial glow effects */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,45,85,0.08) 0%, transparent 65%);
    top: -300px; left: -200px;
}

.glow-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,242,255,0.07) 0%, transparent 65%);
    bottom: -200px; right: -150px;
}

.glow-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,45,85,0.06) 0%, transparent 65%);
    top: 50%; right: 10%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Main hero card (like promomira) */
.hero-card {
    background: linear-gradient(145deg, var(--bg-surface), var(--bg-card));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,45,85,0.08);
    margin-bottom: 2rem;
}

.hero-banner-img {
    width: 100%;
    aspect-ratio: 2.2;
    object-fit: cover;
    display: block;
    filter: saturate(1.2) contrast(1.05);
}

/* CSS-drawn hero banner fallback */
.hero-banner-css {
    width: 100%;
    aspect-ratio: 2.2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f172a 40%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    font-size: min(8vw, 6rem);
    letter-spacing: 0.1em;
    gap: 0.2em;
}

.hero-banner-css::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 60% at 30% 50%, rgba(255,45,85,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 30% 50% at 70% 40%, rgba(0,242,255,0.15) 0%, transparent 70%);
}

.hero-banner-reels {
    display: flex;
    gap: 0.5rem;
    font-size: min(5vw, 3.5rem);
    z-index: 1;
    position: relative;
}

.hero-reel-item {
    width: min(14vw, 100px);
    height: min(16vw, 120px);
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--border-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 20px rgba(0,0,0,0.5);
    font-size: min(7vw,4.5rem);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.hero-card-body {
    padding: 2.5rem 3rem;
    text-align: left;
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--text-h);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.hero-card-title span { color: var(--primary); }

.hero-card-desc {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.hero-features li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan-glow);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================
   Games Section
============================= */
.games-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-surface) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-h);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.game-card:hover {
    box-shadow: var(--card-shadow-hover), 0 0 40px rgba(255,45,85,0.1);
    transform: translateY(-10px);
    border-color: var(--border-glow);
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS game thumbnails */
.game-thumb-css {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: absolute;
    inset: 0;
}

.game-thumb-slots {
    background: radial-gradient(ellipse at center, #2a1060 0%, #0a0520 100%);
}

.game-thumb-roulette {
    background: radial-gradient(ellipse at center, #001a2e 0%, #000a18 100%);
}

.game-thumb-blackjack {
    background: radial-gradient(ellipse at center, #001a0e 0%, #000a08 100%);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05) brightness(0.9);
    transition: var(--transition-slow);
}

.game-card:hover .game-img {
    transform: scale(1.08);
    filter: saturate(1.3) contrast(1.05) brightness(1.0);
}

.game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 10px rgba(245,158,11,0.5);
    z-index: 2;
}

.badge-new  { background: var(--cyan);    color: #000; box-shadow: 0 2px 10px var(--cyan-glow); }
.badge-hot  { background: var(--primary); color: #fff; box-shadow: 0 2px 10px var(--primary-glow); }

.game-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(245,158,11,0.3);
    z-index: 2;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.65);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.game-card:hover .game-overlay { opacity: 1; }

.btn-play {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 0.9rem 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 8px 30px var(--primary-glow);
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.game-card:hover .btn-play {
    transform: translateY(0) scale(1);
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 40px var(--primary-glow);
}

.game-info {
    padding: 1.5rem 1.8rem;
}

.game-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.game-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-h);
}

.game-stars {
    color: var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
}

.game-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
}

/* ============================
   About / Features Section
============================= */
.about-section {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cyan-light);
    color: var(--cyan);
    border: 1px solid rgba(0,242,255,0.2);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-h);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.about-list li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 900;
    font-size: 0.8rem;
}

.about-visual {
    background: linear-gradient(135deg, rgba(255,45,85,0.15), rgba(0,242,255,0.1));
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    font-size: 8rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255,45,85,0.1);
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,242,255,0.1) 0%, transparent 70%);
}

.about-coins-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ============================
   Mini Apps Section
============================= */
.mini-apps-section {
    padding: 6rem 0;
    background: var(--bg-page);
}

.mini-apps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.mini-apps-text p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.mini-apps-note {
    display: flex;
    gap: 0.7rem;
    background: var(--cyan-light);
    border: 1px solid rgba(0,242,255,0.15);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    margin-top: 1rem;
}

.note-icon { font-size: 1.2rem; }

.mini-apps-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--border-glow);
    background: var(--bg-card2);
}

.feature-icon {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-h);
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================
   Footer
============================= */
.footer {
    background: linear-gradient(180deg, var(--bg-surface) 0%, #080f1e 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-policies {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0.8rem 0 1rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(255,45,85,0.2);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-h);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.footer-link {
    color: var(--cyan);
    transition: var(--transition);
}
.footer-link:hover { color: var(--text-h); }

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 2rem;
}

.footer-sitemap { margin-bottom: 2rem; }

.sitemap-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.sitemap-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    list-style: none;
}

.sitemap-list a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.sitemap-list a:hover { color: var(--cyan); }

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-link-muted {
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-link-muted:hover { color: var(--text-h); }

/* ============================
   Animations
============================= */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

@keyframes spin-reel {
    from { transform: translateY(0); }
    to   { transform: translateY(-100%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-15px) rotate(5deg); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ============================
   Responsive
============================= */
@media (max-width: 900px) {
    .about-grid,
    .mini-apps-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { display: none; }
    .footer-policies { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .nav ul { gap: 1rem; font-size: 0.82rem; }
    .logo-text { font-size: 1.1rem; }
    .hero-card-body { padding: 1.5rem; }
    .footer-policies { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .roulette-bets { grid-template-columns: repeat(2,1fr); }
    .game-container { padding: 1.5rem; }
    .game-tab { font-size: 0.8rem; padding: 0.5rem 0.5rem; }
}