/*
Theme Name: Bestes Bitcoin Casino ohne OASIS
Theme URI: https://bestesbitcoincasinoohneoasis.de
Author: BestBTC Team
Description: Premium German Bitcoin Casino affiliate theme with dark design, hardcoded casino data, and content hooks.
Version: 1.0.0
Text Domain: nokyc-theme
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
    --color-bg-primary: #070b14;
    --color-bg-alt: #0d1220;
    --color-bg-card: #131a2e;
    --color-bg-card-hover: #1a2240;
    --color-accent: #d4a017;
    --color-accent-hover: #e8b52a;
    --color-secondary: #10b981;
    --color-secondary-hover: #34d399;
    --color-text: #e2e8f0;
    --color-text-muted: #8892a8;
    --color-border: #1e2642;
    --color-danger: #ef4444;
    --color-star: #f59e0b;
    --color-pro: #10b981;
    --color-con: #ef4444;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1280px;
    --radius: 8px;
    --section-spacing: 60px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

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

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

h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.8rem; margin-top: 1.5rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; margin-top: 1.2rem; }

p { margin-bottom: 1rem; }

strong { color: var(--color-text); }

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

/* ═══════════════════════════════════════════
   SECTION SPACING & ALTERNATING BG
   ═══════════════════════════════════════════ */
.section-spacing {
    padding: var(--section-spacing) 0;
}

.section-bg-primary { background: var(--color-bg-primary); }
.section-bg-alt { background: var(--color-bg-alt); }

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════ */
.section-divider {
    text-align: center;
    padding: 40px 0;
}

.section-divider::after {
    content: '';
    display: inline-block;
    width: 200px;
    max-width: 40%;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.2;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0 24px;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

.site-logo span { color: var(--color-accent); }

.nav-desktop { display: flex; gap: 32px; list-style: none; }
.nav-desktop a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--color-accent); }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
    padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-accent); }

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: block; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-primary) 100%);
    padding: 60px 24px;
}

.hero h1 {
    font-size: 2.6rem;
    max-width: 800px;
    margin: 0 auto 16px;
}

.hero h1 span { color: var(--color-accent); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.hero-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.hero-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.hero-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
}

.btn-primary {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    background: var(--color-accent-hover);
    color: #000;
    transform: translateY(-1px);
}

/* Inner page hero */
.inner-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-primary) 100%);
    padding: 60px 24px;
}

.inner-hero.tall { min-height: 45vh; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius);
}

/* ═══════════════════════════════════════════
   TABLE OF CONTENTS (INLINE COLLAPSIBLE)
   ═══════════════════════════════════════════ */
.toc-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 24px 0;
}

.toc-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.toc-toggle .toc-arrow {
    transition: transform 0.3s;
    color: var(--color-accent);
}

.toc-toggle.open .toc-arrow { transform: rotate(180deg); }

.toc-list {
    display: none;
    list-style: none;
    padding: 0 16px 12px;
}

.toc-list.open { display: block; }

.toc-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(30, 38, 66, 0.5);
}
.toc-list li:last-child { border-bottom: none; }

.toc-list a {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    transition: color 0.2s;
}
.toc-list a:hover { color: var(--color-accent); }

/* ═══════════════════════════════════════════
   CASINO GRID
   ═══════════════════════════════════════════ */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) { .casino-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.casino-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.casino-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.casino-card-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-accent);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.casino-card-logo-wrap {
    position: relative;
    padding: 20px 16px 12px;
    text-align: center;
    background: rgba(13, 18, 32, 0.5);
}

.casino-card-logo-wrap img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.casino-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-card-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.casino-card-rating {
    color: var(--color-star);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.casino-card-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    width: fit-content;
}

.casino-card-bonus {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 12px;
    line-height: 1.4;
}

.casino-card-info {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.casino-card-info span { color: var(--color-text); font-weight: 500; }

/* Payment icons */
.casino-card-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Bonus details toggle */
.bonus-details-toggle {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
}
.bonus-details-toggle:hover { color: var(--color-accent-hover); }
.bonus-details-toggle .arrow { transition: transform 0.3s; font-size: 0.6rem; }
.bonus-details-toggle.open .arrow { transform: rotate(180deg); }

.bonus-details-content {
    display: none;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    padding: 8px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 4px;
}
.bonus-details-content.open { display: block; }

.casino-card-cta {
    margin-top: auto;
    padding-top: 12px;
}

.btn-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-accent);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-cta:hover { background: var(--color-accent-hover); color: #000; }

.casino-card-terms {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    line-height: 1.4;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   REVIEW BLOCKS
   ═══════════════════════════════════════════ */
.review-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 32px;
    overflow: hidden;
}

.review-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.review-topbar-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.review-topbar-info { flex: 1; min-width: 150px; }
.review-topbar-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}
.review-topbar-stars {
    color: var(--color-star);
    font-size: 0.9rem;
}

.review-topbar .btn-cta {
    width: auto;
    padding: 10px 24px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.review-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
}

.review-screenshot-wrap {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.review-screenshot-wrap img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    background: #000;
}

.review-body {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.review-body h3 { font-size: 1.15rem; margin-top: 1.2rem; }
.review-body p { margin-bottom: 0.8rem; }

/* Pros/Cons table */
.pros-cons-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.pros-col, .cons-col { padding: 16px; }
.pros-col { border-right: 1px solid var(--color-border); }
@media (max-width: 600px) {
    .pros-col { border-right: none; border-bottom: 1px solid var(--color-border); }
}

.pros-col h4, .cons-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pros-col h4 { color: var(--color-pro); }
.cons-col h4 { color: var(--color-con); }

.pros-col li, .cons-col li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
    list-style: none;
    padding-left: 18px;
    position: relative;
}

.pros-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-pro);
    font-weight: 700;
}

.cons-col li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-con);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list { margin-top: 20px; }

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: var(--color-bg-card);
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    min-height: 48px;
    transition: background 0.2s;
    gap: 12px;
}
.faq-question:hover { background: var(--color-bg-card-hover); }

.faq-icon {
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 800px;
}

.faq-answer-inner {
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   AUTHOR BOX
   ═══════════════════════════════════════════ */
.author-box {
    display: flex;
    gap: 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    align-items: flex-start;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.author-box-info h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.author-box-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════
   CONTENT SECTIONS (plugin injected)
   ═══════════════════════════════════════════ */
.content-section {
    width: 100%;
}

.content-section h2 {
    color: var(--color-accent);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.content-section h3 {
    font-size: 1.15rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.content-section p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    width: 90%;
}

@media (max-width: 768px) {
    .content-section p { width: 100%; }
}

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

/* ═══════════════════════════════════════════
   TABLES (Responsive)
   ═══════════════════════════════════════════ */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.content-section table,
.page-content table,
.review-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.content-section th,
.page-content th,
.review-body th {
    background: var(--color-bg-alt);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
}

.content-section td,
.page-content td,
.review-body td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    min-width: 120px;
}

.content-section tr:hover td,
.page-content tr:hover td,
.review-body tr:hover td {
    background: rgba(212, 160, 23, 0.04);
}

@media (max-width: 768px) {
    .content-section td, .page-content td, .review-body td,
    .content-section th, .page-content th, .review-body th {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 40px;
}

.lightbox-overlay.open { display: flex; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 40px 24px;
    text-align: center;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-inner p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-inner a {
    color: var(--color-accent);
}

/* ═══════════════════════════════════════════
   PAGE CONTENT (secondary pages)
   ═══════════════════════════════════════════ */
.page-content {
    padding: var(--section-spacing) 0;
}

.page-content h2 {
    color: var(--color-accent);
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.page-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    width: 90%;
}

@media (max-width: 768px) {
    .page-content p { width: 100%; }
}

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

/* Team member cards */
.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

@media (max-width: 600px) { .team-members { grid-template-columns: 1fr; } }

.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    margin: 0 auto 12px;
}

.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--color-text-muted); width: 100%; }

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-toast {
    display: none;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 12px;
}

.contact-info-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 32px;
    text-align: center;
}

.contact-info-box p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    width: 100%;
}

/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
