/*
Theme Name: Casino Sites Not On Gamstop
Theme URI: https://casinositesnoton-gamstop.gb.net
Author: NOKYC Team
Description: Casino affiliate theme for non-Gamstop casino reviews.
Version: 1.0.0
Text Domain: nokyc-casino
*/

/* =========================================
   CSS RESET & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-darkest: #07070f;
    --bg-dark: #0e0e1a;
    --bg-card: #131325;
    --bg-card-hover: #1a1a35;
    --bg-surface: #1e1e3a;
    --primary: #ff2a44;
    --primary-hover: #e0223a;
    --gold: #ffc107;
    --gold-dim: #b8860b;
    --green: #00dc82;
    --green-bg: rgba(0,220,130,0.08);
    --red: #ff4060;
    --red-bg: rgba(255,64,96,0.08);
    --text-white: #f0f0f5;
    --text-light: #b8b8d0;
    --text-muted: #6e6e8a;
    --border: #2a2a4a;
    --border-light: #3a3a5a;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-w: 1280px;
    --section-py: 80px;
    --radius: 0px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--bg-darkest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1em; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section-spacing {
    padding: var(--section-py) 0;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7,7,15,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.site-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}
.site-logo span {
    color: var(--primary);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}
.nav-menu a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-menu li { padding: 12px 0; border-bottom: 1px solid var(--border); }
    .nav-menu a::after { display: none; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,42,68,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 6px 18px;
    margin-bottom: 24px;
}
.hero h1 {
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    color: var(--primary);
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* =========================================
   CASINO GRID
   ========================================= */
.casino-grid-section {
    background: var(--bg-darkest);
    padding: var(--section-py) 0;
}
.section-heading {
    text-align: left;
    margin-bottom: 48px;
}
.section-heading h2 {
    margin-bottom: 8px;
}
.section-heading p {
    color: var(--text-muted);
    font-size: 1rem;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
}
.casino-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.card-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: var(--radius);
}
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--green);
    background: var(--green-bg);
    border: 1px solid rgba(0,220,130,0.2);
    padding: 3px 10px;
    z-index: 2;
    border-radius: var(--radius);
}
.card-logo-area {
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}
.card-logo-area img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}
.card-body {
    padding: 20px;
}
.card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}
.card-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-stars .rating-num {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 4px;
}
.card-bonus {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 14px;
    line-height: 1.3;
}
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.card-meta-tag {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-surface);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.card-cta {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 12px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.card-cta:hover {
    background: var(--primary-hover);
    color: #fff;
}
.card-terms {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .casino-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-body { padding: 14px; }
    .card-name { font-size: 0.95rem; }
    .card-bonus { font-size: 0.85rem; }
    .card-meta-tag { font-size: 0.65rem; }
}

/* =========================================
   CONTENT SECTIONS (plugin injected)
   ========================================= */
.content-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.content-section .container {
    width: 90%;
    max-width: var(--max-w);
}
.content-section h2,
.content-section h3,
.content-section h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.content-section p {
    color: var(--text-light);
    line-height: 1.8;
}
.content-section ul,
.content-section ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    color: var(--text-light);
}
.content-section a {
    color: var(--primary);
    text-decoration: underline;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews-section {
    background: var(--bg-darkest);
    padding: var(--section-py) 0;
}

.review-block {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 48px;
    overflow: hidden;
}
.review-topbar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.review-topbar-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}
.review-topbar-info {
    flex: 1;
    min-width: 150px;
}
.review-topbar-info h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.review-topbar-stars {
    color: var(--gold);
    font-size: 0.9rem;
}
.review-topbar-cta {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 10px 28px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
    white-space: nowrap;
}
.review-topbar-cta:hover {
    background: var(--primary-hover);
    color: #fff;
}

.review-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
}
.review-screenshot-wrap {
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.review-screenshot-wrap:hover {
    border-color: var(--primary);
}
.review-screenshot-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.review-screenshot-wrap:hover img {
    transform: scale(1.02);
}

.review-body {
    padding: 28px;
}
.review-body h2,
.review-body h3,
.review-body h4 {
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}
.review-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1em;
}
.review-body ul, .review-body ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    color: var(--text-light);
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 24px 28px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.pros-col, .cons-col {
    padding: 20px 24px;
}
.pros-col {
    background: var(--green-bg);
    border-right: 1px solid var(--border);
}
.cons-col {
    background: var(--red-bg);
}
.pros-col h4 {
    color: var(--green);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.cons-col h4 {
    color: var(--red);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.pros-col ul, .cons-col ul {
    list-style: none;
    padding: 0;
}
.pros-col li, .cons-col li {
    padding: 6px 0;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}
.pros-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.cons-col li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

@media (max-width: 640px) {
    .review-topbar { padding: 16px; gap: 12px; }
    .review-screenshots { grid-template-columns: 1fr; padding: 16px; }
    .review-body { padding: 16px; }
    .review-pros-cons {
        grid-template-columns: 1fr;
        margin: 16px;
    }
    .pros-col { border-right: none; border-bottom: 1px solid var(--border); }
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
    background: var(--bg-dark);
    padding: var(--section-py) 0;
    border-top: 1px solid var(--border);
}
.faq-item {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-white);
}
.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* =========================================
   AUTHOR BOX
   ========================================= */
.author-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 0 auto;
    max-width: var(--max-w);
}
.author-box-section {
    background: var(--bg-darkest);
    padding: var(--section-py) 0;
}
.author-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--border);
    flex-shrink: 0;
    border-radius: var(--radius);
}
.author-info h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 2px;
}
.author-info .author-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
@media (max-width: 640px) {
    .author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.footer-site-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}
.footer-site-name span {
    color: var(--primary);
}
.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* =========================================
   INNER HERO (secondary pages)
   ========================================= */
.inner-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 100px 24px 60px;
    position: relative;
}
.inner-hero.hero-40 { min-height: 40vh; }
.inner-hero.hero-45 { min-height: 45vh; }
.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.inner-hero h1 {
    margin-bottom: 16px;
}
.inner-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
.hero-badges .badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 8px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
}

/* =========================================
   PAGE CONTENT
   ========================================= */
.page-content {
    padding: var(--section-py) 0;
    background: var(--bg-darkest);
}
.page-content .container {
    width: 90%;
    max-width: var(--max-w);
}
.page-content h2, .page-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.page-content p {
    line-height: 1.8;
    margin-bottom: 1em;
}
.page-content ul, .page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.page-content a {
    color: var(--primary);
}

/* =========================================
   ABOUT US - TEAM
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    padding: 24px;
}
.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
}
.team-member h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.team-member p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    margin-top: 40px;
}
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius);
    height: fit-content;
}
.contact-info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.contact-info-item {
    margin-bottom: 20px;
}
.contact-info-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info-item .value {
    color: var(--text-light);
    font-size: 0.95rem;
}
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--green);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s;
}
.toast-message.show {
    transform: translateY(0);
    opacity: 1;
}

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

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 40px;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--border);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-heading);
    background: none;
    border: none;
    line-height: 1;
}

/* =========================================
   HOW WE RATE CRITERIA
   ========================================= */
.criteria-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.criteria-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
}
@media (max-width: 640px) {
    .criteria-badges { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   PLACEHOLDER (for missing images)
   ========================================= */
.placeholder-box {
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    background: var(--bg-surface);
}
