/**
 * Money X Portal - Royal VIP & Luxury Stylesheet
 * Website: money-x-get.sbs
 * Theme: Midnight Black (#0A0A0A), Charcoal (#141414), Warm Metallic Amber Gold (#F59E0B / #FBBF24 -> #D97706)
 */

:root {
    --bg-base: #0A0A0A;
    --bg-card: #141414;
    --bg-surface: #1A1A1A;
    --bg-surface-elev: #222222;

    --gold-primary: #F59E0B;
    --gold-light: #FBBF24;
    --gold-dark: #D97706;
    --gold-border: rgba(245, 158, 11, 0.25);
    --gold-border-bright: #B45309;

    --border-subtle: #262626;
    --border-card: #202020;

    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    --text-dark: #0F0F12;

    --color-emerald: #10B981;

    --font-heading: 'Cinzel', 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;

    --shadow-gold: 0 4px 18px rgba(245, 158, 11, 0.28);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Reset & Global Strict Rules */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-wrap: break-word;
    background-color: var(--bg-base);
    color: var(--text-primary);
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
    background-color: var(--bg-base);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

/* Container & Wrap Constraints */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.main-content {
    overflow-x: hidden;
    padding-bottom: 70px;
}

/* All CSS Grid children must have min-width: 0 */
.collab-grid > *,
.cards-grid > *,
.bento-grid > *,
.stream-grid > *,
.originals-grid > *,
.providers-grid > *,
.article-layout > *,
.hero__grid > *,
.footer__grid > * {
    min-width: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* Buttons: Royal VIP & Luxury Metallic Amber Gold */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn--gold,
.btn--primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: var(--text-dark);
    border: 1px solid #FCD34D;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--gold:hover,
.btn--primary:hover {
    background: linear-gradient(135deg, #FDE68A 0%, var(--gold-primary) 100%);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    color: #000000;
}

.btn--outline {
    background: #141414;
    color: var(--gold-primary);
    border: 1px solid var(--gold-border);
}

.btn--outline:hover {
    background: var(--bg-surface);
    border-color: var(--gold-primary);
    color: #FFFFFF;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn--lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn--pulse {
    animation: goldGlowPulse 2.8s infinite ease-in-out;
}

@keyframes goldGlowPulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
    }
    50% {
        box-shadow: 0 4px 24px rgba(245, 158, 11, 0.55);
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__logo {
    height: 36px;
    width: auto;
}

.header__vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    background-color: #1A1A1A;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
}

.vip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-primary);
}

.vip-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 0.8px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold-primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__actions--mobile {
    display: none;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Breadcrumbs */
.breadcrumbs-wrap {
    padding: 12px 0;
    background-color: #121212;
    border-bottom: 1px solid var(--border-subtle);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs__link {
    color: var(--text-secondary);
}

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

.breadcrumbs__current {
    color: var(--gold-light);
    font-weight: 600;
}

/* Wide Promo Banner */
.promo-banner-wide {
    background: linear-gradient(90deg, #181818 0%, #1F1B12 50%, #181818 100%);
    border-bottom: 1px solid var(--gold-border);
    padding: 14px 0;
}

.promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.promo-banner-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-banner-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--gold-primary);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
}

.promo-banner-headline {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
}

.promo-banner-headline span {
    color: var(--gold-light);
}

.promo-banner-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-chip {
    padding: 5px 10px;
    background-color: #121212;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Hero Section */
.hero-seo-section {
    padding: 24px 0 12px;
}

.hero-main-title {
    font-family: var(--font-heading);
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

/* Sections */
.section {
    padding: 48px 0;
}

.section--alt {
    background-color: #0E0E0E;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    margin-bottom: 32px;
}

.section-header--center {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 820px;
}

/* 2-Bento Collaboration Grid */
.collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.collab-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 36px 32px;
    background-color: #141414;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.collab-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-primary);
}

.collab-card--slots {
    background: linear-gradient(135deg, #1C1520 0%, #141414 100%);
    border-left: 3px solid #EC4899;
}

.collab-card--live {
    background: linear-gradient(135deg, #13221C 0%, #141414 100%);
    border-left: 3px solid var(--color-emerald);
}

.collab-card__title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.collab-card__sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.5;
}

/* Live Stream Ticker */
.live-stream-section {
    padding: 20px 0;
    background-color: #0E0E0E;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stream-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-emerald);
    box-shadow: 0 0 10px var(--color-emerald);
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.stream-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.stream-item__thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.stream-item__info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.stream-item__win {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-emerald);
}

.stream-item__game {
    font-size: 11px;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-item__user {
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Originals Grid */
.originals-section {
    padding: 36px 0;
}

.originals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.originals-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    color: #FFFFFF;
}

.originals-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.original-card {
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.original-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-primary);
}

.original-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.original-card__body {
    padding: 10px 12px;
}

.original-card__name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.original-card__tag {
    font-size: 11px;
    color: var(--gold-light);
}

/* Bento Grid for Economics & Loyalty */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-item {
    background-color: #141414;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.bento-item--col-8 {
    grid-column: span 8;
}

.bento-item--col-4 {
    grid-column: span 4;
}

.bento-item__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #222222;
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.bento-item__title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.bento-item__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Promo Code Box */
.promocode-box {
    background: linear-gradient(135deg, #1C1914 0%, #141414 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-card);
}

.promocode-box__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.promocode-box__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.promocode-box__title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.promocode-box__desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
}

.promocode-box__action {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.promo-copy-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #0A0A0A;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    gap: 10px;
}

.promo-code-val {
    font-family: monospace;
    font-size: 17px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1.5px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #222222;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy:hover {
    background: #333333;
    color: #FFFFFF;
    border-color: var(--gold-primary);
}

.copy-tooltip {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--gold-primary);
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-border);
}

.card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #0A0A0A;
}

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

.card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background-color: rgba(10, 10, 10, 0.88);
    border: 1px solid var(--gold-border);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-light);
    border-radius: var(--radius-sm);
}

.card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card__meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #FFFFFF;
}

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

.card__excerpt {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
}

.card__footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.card__link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-primary);
}

.card__link-text:hover {
    color: var(--gold-light);
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.provider-card {
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: border-color 0.2s ease;
}

.provider-card:hover {
    border-color: var(--gold-border);
}

.provider-card img {
    max-height: 48px;
    width: auto;
    filter: brightness(0.9);
}

/* FAQ Accordion */
.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

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

.faq-question {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-family: var(--font-sans);
    color: var(--gold-primary);
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '—';
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Rich-Text Content Styles (.rt) */
.rt {
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.rt-h1 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.rt-h2 {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.8vw, 26px);
    color: #FFFFFF;
    margin-top: 36px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.rt-h3 {
    font-family: var(--font-heading);
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--gold-light);
    margin-top: 24px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.rt-h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 18px;
    margin-bottom: 8px;
}

.rt-p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.rt-list {
    margin: 14px 0 20px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.rt-list li {
    margin-bottom: 8px;
}

.rt-link {
    color: var(--gold-primary);
    text-decoration: underline;
}

.rt-link:hover {
    color: var(--gold-light);
}

.rt-code {
    background-color: #0A0A0A;
    border: 1px solid var(--border-subtle);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    color: var(--gold-light);
}

/* Responsive Table Wrapper */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.rt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
    background-color: #141414;
}

.rt-table th {
    background-color: #1F1F1F;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gold-border);
    white-space: nowrap;
}

.rt-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.rt-table tbody tr:hover {
    background-color: #1B1B1B;
}

/* Article Media & Figure */
.article-media {
    margin: 28px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #0A0A0A;
    border: 1px solid var(--gold-border);
}

.article-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-media figcaption {
    padding: 8px 14px;
    font-size: 12.5px;
    color: var(--text-muted);
    background-color: #141414;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

/* Article Layout Grid (Main + Sticky Sidebar) */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
}

.article-main {
    min-width: 0;
}

.article-sidebar {
    min-width: 0;
}

/* Footer */
.footer {
    background-color: #0A0A0A;
    border-top: 1px solid var(--gold-border);
    padding: 56px 0 28px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer__logo {
    height: 34px;
    width: auto;
    margin-bottom: 14px;
}

.footer__desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.footer__license {
    display: flex;
    align-items: center;
    gap: 8px;
}

.license-badge {
    padding: 2px 6px;
    background-color: #1F1F1F;
    border: 1px solid var(--gold-border);
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-primary);
    border-radius: 2px;
}

.license-text {
    font-size: 12px;
    color: var(--text-muted);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

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

.footer__link {
    font-size: 13.5px;
    color: var(--text-muted);
}

.footer__link:hover {
    color: var(--gold-light);
}

.footer__subtext {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
}

.pay-chip--crypto {
    border-color: var(--gold-border);
    color: var(--gold-light);
}

.footer__contact-box {
    padding: 10px 14px;
    background-color: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

.contact-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-email {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-primary);
}

.footer__warning {
    padding: 16px 20px;
    background-color: #121212;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--gold-border);
    padding: 10px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
}

.sticky-bottom-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-bottom-bar__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bottom-bar__badge {
    padding: 3px 8px;
    background-color: var(--gold-primary);
    color: var(--text-dark);
    font-size: 10px;
    font-weight: 800;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.sticky-bottom-bar__text strong {
    display: block;
    font-size: 13px;
    color: #FFFFFF;
}

.sticky-bottom-bar__sub {
    font-size: 11px;
    color: var(--text-muted);
}

.sticky-bottom-bar__sub code {
    color: var(--gold-light);
    font-weight: 700;
}

/* E-E-A-T Pages Container */
.eeat-page {
    padding: 36px 20px 48px;
}

.eeat-card {
    background-color: #141414;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
}

.stat-box {
    background-color: #101010;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.stat-box__val {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.stat-box__lbl {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints: 320px, 375px, 425px, 768px, 1024px, 1440px
   ========================================================================== */

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

    .stream-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .originals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-item--col-8,
    .bento-item--col-4 {
        grid-column: span 12;
    }

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

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    /* Rule 6: convert flex-containers to column */
    .header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 20px;
        display: none;
        overflow-y: auto;
    }

    .header__nav.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .nav-link {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .header__actions--desktop {
        display: none;
    }

    .header__actions--mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .burger-btn {
        display: flex;
    }

    .promo-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-banner-socials {
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }

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

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

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

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

    .promocode-box__grid {
        flex-direction: column;
        align-items: stretch;
    }

    .promocode-box__action {
        flex-direction: column;
        align-items: stretch;
    }

    .promo-copy-wrap {
        justify-content: space-between;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .sticky-bottom-bar__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .sticky-bottom-bar__actions .btn {
        width: 100%;
    }
}

@media (max-width: 425px) {
    .container {
        padding: 0 14px;
    }

    .hero-main-title {
        font-size: 20px;
    }

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

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

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

    .collab-card {
        padding: 24px 18px;
    }

    .eeat-card {
        padding: 24px 16px;
    }
}

@media (max-width: 375px) {
    .promo-banner-headline {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
}

/* ==========================================================================
   NEW VIP LAYOUT COMPONENTS
   ========================================================================== */

/* Quick Category Nav Bar */
.category-nav-wrap {
    padding: 12px 0;
    background: #0D0D0D;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 70px;
    z-index: 90;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}

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

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #181818;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cat-pill:hover,
.cat-pill.active {
    background: #222222;
    color: var(--gold-light);
    border-color: var(--gold-border);
    transform: translateY(-1px);
}

/* Jackpot Display Card */
.jackpot-display-card {
    background: linear-gradient(135deg, #1C1914 0%, #141414 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.jackpot-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.jackpot-val {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: #FCD34D;
    text-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
    letter-spacing: 1px;
    line-height: 1.1;
}

/* Slots & Games Showcase Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.slot-card {
    background: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    text-decoration: none;
}

.slot-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.slot-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #1A1A1A;
}

.slot-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.slot-card:hover .slot-card__img {
    transform: scale(1.06);
}

.slot-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid var(--gold-border);
    text-transform: uppercase;
}

.slot-card__body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slot-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-card__provider {
    font-size: 11px;
    color: var(--text-muted);
}

.slot-card__rtp {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-emerald);
}

/* Bento Promos Section */
.promos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-box-vip {
    background: linear-gradient(135deg, #1C1914 0%, #141414 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.faucet-box-card {
    background: linear-gradient(135deg, #101E17 0%, #141414 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.faucet-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    color: #34D399;
}

/* Proofs Gallery */
.proofs-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.proof-item {
    background: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
}

.proof-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.proof-caption {
    padding: 8px 10px;
    font-size: 11.5px;
    color: var(--text-secondary);
    background: #181818;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .promos-grid {
        grid-template-columns: 1fr;
    }
    .proofs-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jackpot-display-card {
        flex-direction: column;
        text-align: center;
    }
    .proofs-gallery {
        grid-template-columns: 1fr;
    }
}

