/* 
   Mostbet Premium Design System 2026
   Target: Ultra-High-End iGaming Aesthetic
   Supports: All page variants (original + remastered)
*/

/* ======================== */
/* 0. CSS Custom Properties */
/* ======================== */
:root {
    /* Color Palette - Premium iGaming Tones */
    --primary-hue: 215;
    --accent-hue: 42;
    /* Pure Gold */
    --success-hue: 142;
    /* Vibrant Green */

    /* Legacy Variables (used in inline styles across 250+ files) */
    --gold-color: hsl(42, 100%, 50%);
    --dark-blue: #080c14;

    --bg-dark: hsl(var(--primary-hue), 35%, 5%);
    --bg-card: hsl(var(--primary-hue), 25%, 12%);
    --bg-card-hover: hsl(var(--primary-hue), 25%, 16%);

    --text-primary: #ffffff;
    --text-secondary: hsl(var(--primary-hue), 10%, 75%);
    --text-muted: hsl(var(--primary-hue), 10%, 55%);

    --accent-gold: hsl(var(--accent-hue), 100%, 50%);
    --accent-gold-glow: hsla(var(--accent-hue), 100%, 50%, 0.4);
    --gold: hsl(var(--accent-hue), 100%, 50%);

    --accent-green: hsl(var(--success-hue), 85%, 45%);
    --accent-green-hover: hsl(var(--success-hue), 85%, 40%);
    --accent-green-glow: hsla(var(--success-hue), 85%, 45%, 0.4);

    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* System Tokens */
    --container-width: 1200px;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --font-main: 'Poppins', system-ui, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}


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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--bg-dark);
}


/* ======================== */
/* 2. Layout Containers     */
/* ======================== */
.container,
.container-main {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.main-content {
    padding-bottom: 2rem;
}

section {
    padding: 1rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, var(--accent-gold), #fff, var(--accent-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ======================== */
/* 3. Header & Navigation   */
/* ======================== */
/* Support BOTH: <header> AND <header class="glass-header"> */
header,
.glass-header {
    background: rgba(8, 12, 20, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    height: 80px;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 42px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    white-space: nowrap;
    display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: white;
    background: var(--glass-bg);
}


/* ======================== */
/* Lang Dropdown            */
/* ======================== */
.lang-selector {
    position: relative;
}

.lang-dropdown-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1001;
}

.lang-selector:hover .lang-dropdown-menu,
.lang-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    color: var(--text-secondary);
    font-weight: 500;
}

.lang-dropdown-item:hover {
    background: var(--bg-card-hover);
    color: white;
}

.lang-dropdown-item.selected {
    color: var(--accent-gold);
}

.check-icon {
    color: var(--accent-gold);
    font-weight: 700;
}


/* ======================== */
/* 4. Hero Action & Promo   */
/* ======================== */
.hero-action-container {
    padding: 5rem 1.5rem;
    background: radial-gradient(circle at center, hsl(var(--primary-hue), 40%, 15%) 0%, var(--bg-dark) 80%);
    text-align: center;
    border-radius: 0 0 50px 50px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.hero-seo-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff 30%, #a0a0a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-seo-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.hero-action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


/* ======================== */
/* 5. Buttons               */
/* ======================== */
.btn-hero-primary,
.btn-primary,
.btn {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px var(--accent-green-glow);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-align: center;
}

.btn-hero-primary:hover,
.btn-primary:hover,
.btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 50px var(--accent-green-glow);
    background: var(--accent-green-hover);
}

.btn-hero-secondary {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-hero-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-secondary);
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: white;
    color: white;
}

.btn-bottom-cta {
    display: inline-block;
    background: var(--accent-green);
    color: white !important;
    padding: 1.2rem 4rem;
    border-radius: 60px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 40px var(--accent-green-glow);
    transition: var(--transition-smooth);
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-bottom-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 60px var(--accent-green-glow);
}


/* ======================== */
/* 6. Glass Card System     */
/* ======================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.glass-card.highlighted {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px var(--accent-gold-glow);
}


/* ======================== */
/* 7. Content Grids         */
/* ======================== */
/* Review / Feature grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-grid article,
.review-grid .glass-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.review-grid article h3 {
    color: var(--accent-gold);
}

/* Categories grid (contact, responsible-gaming, etc.) */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

/* Expert notes grid */
.expert-notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


/* ======================== */
/* 8. Game Cards & Gallery  */
/* ======================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    align-items: start;
}

.featured-games-grid,
.slots-gallery-grid,
.live-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-top: 2rem;
    align-items: stretch;
}

.game-card,
.featured-game-card,
.slot-card,
.live-game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
    height: 100%;
}

.game-card:hover,
.featured-game-card:hover,
.slot-card:hover,
.live-game-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.5);
}

.game-card img,
.featured-game-card img,
.slot-card img,
.live-game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s;
}

.game-card:hover img,
.featured-game-card:hover img,
.slot-card:hover img,
.live-game-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.game-overlay,
.live-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 50%;
    pointer-events: none;
}

.game-overlay h3,
.live-overlay h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.play-now {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.game-card:hover .play-now,
.featured-game-card:hover .play-now,
.slot-card:hover .play-now,
.live-game-card:hover .play-now {
    opacity: 1;
    transform: translateY(0);
}

.live-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff3d3d;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.slot-info {
    padding: 1rem 1.2rem;
    background: var(--bg-card);
}

.game-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: white;
    padding: 1rem 1.2rem 0;
}

.game-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 1.2rem 1rem;
    flex-grow: 1;
    line-height: 1.5;
}

.rtp {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 0 1.2rem 0.8rem;
}


/* ======================== */
/* 9. Hero Metrics          */
/* ======================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.metric-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.metric-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}


/* ======================== */
/* 10. Bonus & VIP Cards    */
/* ======================== */
.bonus-card,
.vip-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-gold);
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin: 1.5rem 0;
    line-height: 1;
}

.bonus-intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.promo-code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border: 2px dashed var(--accent-gold);
    border-radius: var(--radius-sm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin: 1rem 0;
}

.payment-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}


/* ======================== */
/* 11. Icon Boxes           */
/* ======================== */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.icon-box.gold {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.icon-box.silver {
    background: rgba(200, 200, 200, 0.08);
    border: 1px solid rgba(200, 200, 200, 0.15);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}


/* ======================== */
/* 12. Benefit Lists        */
/* ======================== */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
}

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


/* ======================== */
/* 13. Expert Notes         */
/* ======================== */
.expert-note {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 2rem 0;
    border: 1px solid var(--glass-border);
    border-left-width: 4px;
    border-left-color: var(--accent-gold);
}

.expert-note.gold {
    border-left-color: var(--accent-gold);
    background: hsla(var(--accent-hue), 100%, 50%, 0.03);
}

.expert-note.silver {
    border-left-color: #a0a0b0;
    background: rgba(180, 180, 200, 0.03);
}

.expert-note h4,
.expert-title {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}


/* ======================== */
/* 14. Tables               */
/* ======================== */
/* Original info-table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Premium table for new pages */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table th {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
}

.premium-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.premium-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.premium-table a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ======================== */
/* 15. FAQ System           */
/* ======================== */
/* Original FAQ (onclick toggleFaq) */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
}

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

/* Old .faq-question as div with onclick */
div.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background 0.3s;
}

div.faq-question:hover {
    background: var(--bg-card-hover);
}

/* New .faq-question as button */
button.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background 0.3s;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    text-align: left;
}

button.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

button.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: var(--text-secondary);
}

.faq-answer.active {
    padding: 0 2rem 2rem;
    max-height: 500px;
    opacity: 1;
}

/* FAQ container for new pages */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* ======================== */
/* 16. Timeline             */
/* ======================== */
.timeline-container {
    padding: 2rem !important;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--glass-border);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.highlighted {
    border-left-color: var(--accent-gold);
}

.time-marker {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
    min-width: 60px;
}

.time-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.time-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}


/* ======================== */
/* 17. License Card         */
/* ======================== */
.license-info-card {
    padding: 2.5rem !important;
}

.status-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}


/* ======================== */
/* 18. Roadmap / Steps      */
/* ======================== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    text-align: center;
}

.step-num {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.roadmap-item h5 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.roadmap-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* ======================== */
/* 19. Promo Banners        */
/* ======================== */
.promo-banner-link {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.promo-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 0;
}

.promo-banner-image {
    width: 100%;
    border-radius: var(--radius-lg);
}

.mobile-bonus-banner {
    display: none;
}


/* ======================== */
/* 20. Hero Section (old)   */
/* ======================== */
.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

.hero p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}


/* ======================== */
/* 21. Value Props          */
/* ======================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.value-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}


/* ======================== */
/* 22. Topic Cluster Links  */
/* ======================== */
.topic-links {
    padding: 2rem 0;
}

.topic-links h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.topic-links-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.topic-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.topic-links-grid a {
    background: var(--bg-card);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.9rem;
}

.topic-links-grid a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}


/* ======================== */
/* 23. CTA Sections         */
/* ======================== */
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 3rem 0;
}

.bottom-cta-container {
    background: radial-gradient(ellipse at center, hsl(var(--primary-hue), 35%, 14%), var(--bg-dark));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.bottom-cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.bottom-cta-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


/* ======================== */
/* 24. Payment Cards (old)  */
/* ======================== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.payment-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-card h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}


/* ======================== */
/* 25. Testimonials (old)   */
/* ======================== */
.testimonials {
    padding: 3rem 0;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-author {
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}


/* ======================== */
/* 26. Expert Review (old)  */
/* ======================== */
.expert-review-long {
    padding: 4rem 0;
}

.review-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-secondary);
}

.expert-review-long .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expert-review-long .review-grid article {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.expert-review-long .review-grid article h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}


/* ======================== */
/* 27. Competitor Benchmark */
/* ======================== */
.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benchmark-grid article {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.benchmark-grid article h3 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.benchmark-note {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
}


/* ======================== */
/* 28. Reveal Animations    */
/* ======================== */
.reveal-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-init.reveal,
.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ======================== */
/* 29. Warning Cards        */
/* ======================== */
.warning-card {
    border-left: 3px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.04);
}

.warning-card p {
    font-weight: 600;
    color: var(--text-secondary);
}


/* ======================== */
/* 30. Footer (ALL variants)*/
/* ======================== */
/* Old footer */
footer,
.glass-footer {
    padding: 5rem 0 2.5rem;
    background: #04060b;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

/* New footer grid (glass-footer pages) */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.link-group h6 {
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-group a:hover,
.link-group a.active {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.license-info {
    margin-top: 1rem;
}

.license-info span {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.8;
}


/* ======================== */
/* 31. Mobile Responsive    */
/* ======================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(8, 12, 20, 0.98);
        padding: 2rem;
        gap: 0.5rem;
        z-index: 999;
        border-bottom: 1px solid var(--glass-border);
    }

    .hero-seo-title {
        font-size: 2rem;
    }

    .hero-action-container {
        padding: 3rem 1rem;
    }

    .hero-action-buttons {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-cards {
        flex-direction: column;
        gap: 0.8rem;
    }

    .featured-games-grid,
    .slots-gallery-grid,
    .live-casino-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .review-grid,
    .categories,
    .value-grid,
    .expert-notes-grid,
    .benchmark-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .bottom-cta-container {
        padding: 3rem 1.5rem;
    }

    .promo-banner {
        display: none;
    }

    .mobile-bonus-banner {
        display: block;
        margin-bottom: 2rem;
    }

    .mobile-bonus-box {
        background: var(--bg-card);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        text-align: center;
    }

    .mobile-bonus-title {
        font-size: 0.8rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-bonus-amount {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--accent-gold);
        margin: 0.5rem 0;
    }

    .mobile-btn-bonus {
        display: inline-block;
        background: var(--accent-green);
        color: white;
        padding: 0.8rem 2rem;
        border-radius: 60px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 0.5rem;
    }

    .cta-mobile {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 5%;
        width: 90%;
        background: var(--accent-green);
        color: white;
        text-align: center;
        padding: 1.1rem;
        border-radius: 60px;
        font-weight: 800;
        z-index: 2000;
        box-shadow: 0 10px 30px var(--accent-green-glow);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .burger-menu {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-menu span {
        display: block;
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: var(--transition-smooth);
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .cta-actions {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .info-table {
        font-size: 0.8rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.8rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .topic-links-grid {
        flex-direction: column;
    }
}

/* Desktop: hide mobile-only elements */
@media (min-width: 769px) {
    .cta-mobile {
        display: none;
    }

    .burger-menu {
        display: none;
    }

    .mobile-bonus-banner {
        display: none;
    }
}


/* ======================== */
/* 32. General Utility      */
/* ======================== */
.text-gold {
    color: var(--accent-gold);
}

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

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

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}


/* ======================== */
/* 33. Category Blocks      */
/* ======================== */
.category-block {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    line-height: 1.2;
}

.category-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ======================== */
/* 34. Slot Badges          */
/* ======================== */
.rtp-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.jackpot-badge {
    display: inline-block;
    background: rgba(255, 60, 60, 0.15);
    color: #ff6b6b;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(255, 60, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ======================== */
/* 35. Top Slots Gallery    */
/* ======================== */
.top-slots-gallery {
    padding: 3rem 0;
}


/* ======================== */
/* 36. How To Start / Guide */
/* ======================== */
.how-to-start {
    padding: 3rem 0;
}

.how-to-start h2 {
    margin-bottom: 2rem;
}

.how-to-start ol {
    max-width: 700px;
    margin: 0 auto;
}

.how-to-start li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.how-to-start li:last-child {
    border-bottom: none;
}


/* ======================== */
/* 37. VIP FAQ Grid         */
/* ======================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-grid h4 {
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-grid h4:first-child {
    margin-top: 0;
}

.faq-grid p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
