/*
 * 7K Bet Brazil - Master CSS
 * Style: Luxury Gold Casino (风格1-豪华金色赌场)
 * Target Market: Brazil
 * Language: Portuguese (Brazilian)
 */

/* =============================================
   CSS Variables / Design Tokens
   ============================================= */
:root {
    /* Primary Colors */
    --color-primary: #D4AF37;
    --color-primary-light: #FFD700;
    --color-primary-dark: #B8860B;

    /* Background Colors */
    --color-bg-primary: #0A0A0A;
    --color-bg-secondary: #1A1A1A;
    --color-bg-tertiary: #252525;
    --color-bg-card: #1E1E1E;

    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-text-muted: #808080;
    --color-text-gold: #D4AF37;

    /* Accent Colors */
    --color-success: #28A745;
    --color-warning: #FFC107;
    --color-danger: #DC3545;
    --color-info: #17A2B8;

    /* CTA Colors */
    --color-cta: #D4AF37;
    --color-cta-hover: #FFD700;
    --color-cta-text: #0A0A0A;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
    --gradient-card: linear-gradient(145deg, #252525 0%, #1A1A1A 100%);

    /* Typography */
    --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
    --font-mono: 'Roboto Mono', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;

    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1400px;
}

/* =============================================
   CSS Reset
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-light);
}

ul, ol {
    list-style: none;
}

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

/* =============================================
   Typography
   ============================================= */
h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

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

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   Layout
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: var(--container-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-dark {
    background-color: var(--color-bg-secondary);
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

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

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
    align-items: center;
}

/* =============================================
   Header
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    padding: var(--space-md) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 56px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.hero-sm {
    min-height: 400px;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-cta-text);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--color-cta-text);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-cta-text);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

/* =============================================
   Cards
   ============================================= */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    margin-bottom: var(--space-md);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

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

.card-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-bg-tertiary);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: var(--space-2xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    font-size: var(--text-3xl);
}

/* =============================================
   Tables
   ============================================= */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-tertiary);
}

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

th, td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--color-bg-tertiary);
}

th {
    background: var(--color-bg-secondary);
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
}

tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* =============================================
   Info Box / Callouts
   ============================================= */
.info-box {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
}

.info-box-title {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.warning-box {
    border-left-color: var(--color-warning);
    background: rgba(255, 193, 7, 0.1);
}

.success-box {
    border-left-color: var(--color-success);
    background: rgba(40, 167, 69, 0.1);
}

/* =============================================
   Badges
   ============================================= */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: var(--gradient-gold);
    color: var(--color-cta-text);
}

.badge-success {
    background: var(--color-success);
    color: white;
}

.badge-warning {
    background: var(--color-warning);
    color: var(--color-bg-primary);
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--gradient-card);
    border: 1px solid var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
}

.cta-section h2 {
    color: var(--color-primary);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* =============================================
   Accordion / FAQ
   ============================================= */
.accordion {
    border: 1px solid var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--color-bg-tertiary);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--color-bg-tertiary);
}

.accordion-header::after {
    content: '+';
    font-size: var(--text-xl);
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.accordion-item.active .accordion-content {
    padding: var(--space-lg);
    max-height: 500px;
}

/* =============================================
   Steps / Timeline
   ============================================= */
.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 60px;
    padding-bottom: var(--space-xl);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--color-cta-text);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    width: 2px;
    height: calc(100% - 50px);
    background: var(--color-bg-tertiary);
}

.step:last-child::after {
    display: none;
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

/* =============================================
   Rating / Stars
   ============================================= */
.rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.star {
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.star.empty {
    color: var(--color-bg-tertiary);
}

.rating-value {
    margin-left: var(--space-sm);
    font-weight: 600;
    color: var(--color-primary);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-bg-tertiary);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.footer-title {
    color: var(--color-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-bg-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

/* Responsible Gambling Section */
.responsible-gambling {
    text-align: center;
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    border-top: 1px solid var(--color-bg-tertiary);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-danger);
    border-radius: var(--radius-full);
    color: var(--color-danger);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

/* =============================================
   Utility Classes
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg-primary);
        padding: var(--space-lg);
        border-bottom: 1px solid var(--color-bg-tertiary);
    }

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .btn {
        width: 100%;
        min-height: 48px;
    }

    .btn-lg {
        padding: var(--space-md) var(--space-lg);
        min-height: 52px;
    }

    .btn-sm {
        min-height: 44px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .accordion-header {
        min-height: 48px;
    }
}

/* =============================================
   Print Styles
   ============================================= */
@media print {
    .header,
    .footer,
    .cta-section,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* =============================================
   Content Specific Styles
   ============================================= */
/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    margin-top: var(--space-2xl);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.article-content h3 {
    margin-top: var(--space-xl);
    color: var(--color-primary-light);
}

.article-content ul,
.article-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
}

.article-content strong {
    color: var(--color-text-primary);
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-sm);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* Pros/Cons Lists */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.pros h4,
.cons h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pros h4::before {
    content: '✓';
    color: var(--color-success);
}

.cons h4::before {
    content: '✗';
    color: var(--color-danger);
}

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

/* =============================================
   Affiliate Disclosure Banner
   ============================================= */
.affiliate-disclosure {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.affiliate-disclosure a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

.affiliate-disclosure a:hover {
    color: var(--color-primary);
}

/* =============================================
   Article Meta (Author, Date)
   ============================================= */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-md) 0;
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-bg-tertiary);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.article-meta-label {
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* =============================================
   Responsible Gambling Enhanced
   ============================================= */
.responsible-gambling-enhanced {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--color-danger);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    text-align: center;
}

.responsible-gambling-enhanced .age-badge {
    font-size: var(--text-xl);
    width: 50px;
    height: 50px;
}

.responsible-gambling-enhanced h4 {
    color: var(--color-danger);
    margin: var(--space-sm) 0;
}

.responsible-gambling-enhanced p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.responsible-gambling-enhanced .help-links {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.responsible-gambling-enhanced .help-links a {
    color: var(--color-danger);
}

/* =============================================
   About Section in Footer
   ============================================= */
.footer-about {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-bg-tertiary);
    text-align: center;
}

.footer-about p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto var(--space-sm);
}
