/* ============================================================================
 * homepage_landing.css
 * Landing page (index.php) only — new "Classic Dominion" homepage layout.
 * Do not load on other pages: many selectors are generic (nav, footer, .btn).
 * ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
    --gold:        #c8962a;
    --gold-light:  #e8c96a;
    --gold-dim:    #7a5820;
    --bg-deep:     #0a0600;
    --bg-dark:     #0f0a04;
    --bg-mid:      #1a0e04;
    --bg-card:     #160b02;
    --border:      #2a1a06;
    --border-glow: rgba(200,150,42,0.25);
    --text-main:   #e8d5a3;
    --text-muted:  #9a7a50;
    --text-dim:    #5a3e20;
    --discord:     #5865F2;
    --discord-dim: rgba(88,101,242,0.15);
    --green:       #43b581;
}

body.cd-landing,
body.cd-landing *,
body.cd-landing *::before,
body.cd-landing *::after { box-sizing: border-box; }

body.cd-landing {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans 3', Georgia, serif;
    background: var(--bg-deep);
    color: var(--text-main);
    min-height: 100vh;
}

body.cd-landing a { color: inherit; }

html { scroll-behavior: smooth; }

/* ===== NAV ===== */
body.cd-landing nav.cd-landing-nav {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    position: relative;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
}
.nav-logo-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
}
.nav-logo-sub {
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 7px 13px;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 400;
}
.nav-link:hover { color: var(--text-main); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--text-main); border-bottom: 2px solid var(--gold); border-radius: 0; }
.nav-discord {
    background: var(--discord);
    color: #fff !important;
    padding: 7px 14px !important;
    border-radius: 4px !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}
.nav-discord:hover { background: #4752c4 !important; }
.nav-register {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 4px !important;
}
.nav-register:hover { background: var(--gold) !important; color: var(--bg-deep) !important; }

/* ===== LIVE BAR ===== */
.live-bar {
    background: rgba(10,6,0,0.9);
    border-bottom: 1px solid #1a1000;
    padding: 8px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-family: monospace;
}
.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 11px;
    letter-spacing: 1px;
}
.live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green);
    animation: cd-blink 2s ease-in-out infinite;
}
@keyframes cd-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.live-stats {
    color: var(--text-dim);
    display: flex;
    gap: 24px;
}
.live-stats span { color: var(--gold); font-weight: bold; }

/* ===== HERO ===== */
.hero {
    background:
      radial-gradient(ellipse 60% 80% at 50% -10%, rgba(200,150,42,0.08) 0%, transparent 70%),
      linear-gradient(180deg, #170a00 0%, #0f0700 60%, var(--bg-deep) 100%);
    padding: 96px 48px 80px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8962a' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,150,42,0.1);
    border: 1px solid rgba(200,150,42,0.25);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
    font-family: 'Source Sans 3', sans-serif;
}
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 68px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 80px rgba(200,150,42,0.2);
    letter-spacing: -1px;
}
.hero h1 em {
    font-style: normal;
    color: var(--text-main);
}
.hero-tagline {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 300;
}
.hero-desc {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 460px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

/* HERO STATS */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 44px;
    overflow: hidden;
}
.hero-stat {
    padding: 16px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HERO CTA */
.hero-ctas {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
body.cd-landing .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}
body.cd-landing .btn-primary {
    background: linear-gradient(135deg, #c8962a 0%, #a07020 100%);
    color: var(--bg-deep);
    box-shadow: 0 4px 20px rgba(200,150,42,0.25);
}
body.cd-landing .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(200,150,42,0.35); }
body.cd-landing .btn-discord-hero {
    background: var(--discord);
    color: #fff;
    box-shadow: 0 4px 20px rgba(88,101,242,0.25);
}
body.cd-landing .btn-discord-hero:hover { background: #4752c4; transform: translateY(-1px); }
body.cd-landing .btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
body.cd-landing .btn-ghost:hover { border-color: var(--gold-dim); color: var(--text-main); }

/* ===== FEATURES ===== */
.section-wrap {
    padding: 72px 48px;
    max-width: 1160px;
    margin: 0 auto;
}
.section-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Source Sans 3', sans-serif;
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 600;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.feature-card {
    background: var(--bg-mid);
    padding: 32px 24px;
    transition: background 0.2s;
    position: relative;
}
.feature-card:hover { background: #1f1206; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.2s;
}
.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 10px;
    font-weight: 600;
}
.feature-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== DISCORD SECTION ===== */
.discord-section {
    background: linear-gradient(135deg, #1a1d2e 0%, #23272A 50%, #1a1d20 100%);
    border-top: 1px solid #2e3340;
    border-bottom: 1px solid #2e3340;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}
.discord-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88,101,242,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.discord-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.discord-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88,101,242,0.12);
    border: 1px solid rgba(88,101,242,0.25);
    color: #7289da;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-family: 'Source Sans 3', sans-serif;
}
.discord-title {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}
.discord-title span { color: var(--discord); }
.discord-sub {
    font-size: 15px;
    color: #8e9297;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.discord-perks {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.discord-perk {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 120px;
    text-align: center;
}
.discord-perk-icon { font-size: 22px; display: block; margin-bottom: 8px; }
.discord-perk-label {
    font-size: 13px;
    color: #c8c8c8;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}
.discord-perk-text { font-size: 11px; color: #636b75; }
.discord-cta-area { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-discord-big {
    background: var(--discord);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    box-shadow: 0 8px 32px rgba(88,101,242,0.3);
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.btn-discord-big:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(88,101,242,0.4); }
.discord-url-text {
    font-size: 12px;
    color: #4a5060;
    font-family: monospace;
    letter-spacing: 1px;
}
.discord-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 13px;
    color: #5a6070;
}
.member-avatars { display: flex; }
.member-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #23272A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    font-family: 'Source Sans 3', sans-serif;
}
.member-av:first-child { margin-left: 0; }
.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--green);
    font-size: 12px;
}
.online-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green);
}

/* ===== NEWS ===== */
.news-section {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 72px 48px;
}
.news-inner { max-width: 1160px; margin: 0 auto; }
.news-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
}
.news-title { font-family: 'Cinzel', serif; font-size: 22px; color: var(--text-main); }
.news-more { font-size: 13px; color: var(--gold); text-decoration: none; }
.news-more:hover { text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    position: relative;
    transition: border-color 0.2s;
}
.news-card:hover { border-color: var(--gold-dim); }
.news-card.featured { border-color: rgba(200,150,42,0.2); }
.news-tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 14px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
}
.tag-update { background: rgba(200,150,42,0.12); color: var(--gold); }
.tag-discord { background: rgba(88,101,242,0.12); color: #7289da; }
.tag-new { background: rgba(67,181,129,0.12); color: var(--green); }
.news-card-title { font-family: 'Cinzel', serif; font-size: 15px; color: var(--text-main); margin-bottom: 10px; line-height: 1.4; font-weight: 600; }
.news-card-body { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.news-date { font-size: 11px; color: var(--text-dim); margin-top: 16px; font-family: monospace; }

/* ===== HOW TO PLAY ===== */
.steps-wrap {
    padding: 72px 48px;
    max-width: 1160px;
    margin: 0 auto;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.step-card::after {
    content: '\2192';
    position: absolute;
    right: -12px;
    top: 42px;
    color: var(--text-dim);
    font-size: 18px;
}
.step-card:last-child::after { display: none; }
.step-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), #a07020);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-deep);
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(200,150,42,0.2);
}
.step-title { font-family: 'Cinzel', serif; font-size: 14px; color: var(--gold-light); margin-bottom: 10px; font-weight: 600; }
.step-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVER STATUS ===== */
.status-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 48px;
}
.status-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.status-left { display: flex; align-items: center; gap: 16px; }
.status-server-name { font-family: 'Cinzel', serif; font-size: 20px; color: var(--text-main); }
.status-server-tag { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.status-numbers { display: flex; gap: 32px; }
.status-num { text-align: center; }
.status-num-val { font-family: 'Cinzel', serif; font-size: 28px; color: var(--gold); display: block; }
.status-num-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; }
body.cd-landing .status-cta .btn-primary { padding: 12px 24px; font-size: 14px; }

/* ===== FOOTER ===== */
body.cd-landing footer.cd-landing-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 52px 48px 32px;
    text-align: center;
}
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 6px;
}
body.cd-landing .footer-sub { font-size: 12px; color: var(--text-dim); margin-bottom: 28px; }
body.cd-landing .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
body.cd-landing .footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}
body.cd-landing .footer-links a:hover { color: var(--text-muted); }
.footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7289da !important;
    background: rgba(88,101,242,0.1);
    padding: 4px 10px;
    border-radius: 4px;
}
.footer-divider { height: 1px; background: var(--border); margin: 0 auto 24px; max-width: 400px; }
body.cd-landing .footer-disclaimer {
    font-size: 11px;
    color: var(--text-dim);
    font-style: italic;
    max-width: 580px;
    margin: 0 auto 16px;
    line-height: 1.7;
}
body.cd-landing .footer-copy { font-size: 11px; color: var(--text-dim); }

/* ===== DISCORD SVG ICON ===== */
.di { display: inline-block; vertical-align: middle; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-card::after { display: none; }
    .hero h1 { font-size: 48px; }
    body.cd-landing nav.cd-landing-nav { padding: 0 16px; height: auto; flex-wrap: wrap; gap: 8px; padding-top: 10px; padding-bottom: 10px; }
    .live-bar { padding: 8px 16px; flex-wrap: wrap; gap: 8px; }
    .live-stats { gap: 12px; }
    .hero { padding: 60px 16px 50px; }
    .section-wrap, .news-section, .steps-wrap, .status-section, .discord-section { padding-left: 16px; padding-right: 16px; }
    .status-inner { justify-content: center; text-align: center; }
    .page-hero { padding: 64px 16px 52px; }
    .content-wrap { padding: 48px 16px; }
}

/* ============================================================================
 * Secondary pages: Hall of Fame, Terms, Privacy
 * ========================================================================== */

/* Simpler hero for inner pages */
.page-hero {
    background:
      radial-gradient(ellipse 50% 70% at 50% 0%, rgba(200,150,42,0.07) 0%, transparent 70%),
      linear-gradient(180deg, #150900 0%, #0d0700 60%, var(--bg-deep) 100%);
    padding: 64px 48px 52px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8962a' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.page-hero-eyebrow {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
    font-family: 'Source Sans 3', sans-serif;
}
.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 0 60px rgba(200,150,42,0.15);
}
.page-hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 8px;
}
.page-hero-desc {
    font-size: 13px;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content wrapper for policy / inner-page text */
.content-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 48px 72px;
}
.content-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.content-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.content-section p,
.content-section li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}
.content-section ul {
    padding-left: 20px;
    margin-bottom: 10px;
}
.content-section ul li {
    margin-bottom: 6px;
}
.content-section a {
    color: var(--gold);
    text-decoration: none;
}
.content-section a:hover {
    text-decoration: underline;
}
.content-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    margin-top: 32px;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 4px;
    transition: all 0.2s;
}
.content-back-link:hover {
    border-color: var(--gold-dim);
    background: rgba(200,150,42,0.06);
}

/* Hall of Fame table */
.hof-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 48px 72px;
}
.hof-table-container {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 40px;
}
.hof-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: var(--bg-card);
}
.hof-table thead {
    background: var(--bg-mid);
}
.hof-table th {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: nowrap;
}
.hof-table td {
    padding: 14px 18px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.hof-table tr:last-child td { border-bottom: none; }
.hof-table tr:hover td { background: rgba(200,150,42,0.03); }
.hof-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-dim);
    font-style: italic;
    font-size: 14px;
}
.hof-cta {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 56px 48px;
    text-align: center;
}
.hof-cta-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 24px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .page-hero { padding: 48px 16px 40px; }
    .page-hero h1 { font-size: 32px; }
    .content-wrap { padding: 40px 16px 56px; }
    .hof-wrap { padding: 40px 16px 56px; }
    .hof-cta { padding: 40px 16px; }
}

/* ============================================================================
 * DOMINION MODE — PvP arena homepage blocks
 * Appended for the Dominion Mode landing rework. Theme-consistent with the
 * gold/dark palette above; loaded only on body.cd-landing pages.
 * ========================================================================== */

/* ===== ARENA MANIFESTO ===== */
.arena-manifesto {
    background:
      radial-gradient(ellipse 60% 100% at 50% 50%, rgba(200,150,42,0.08) 0%, transparent 70%),
      var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 56px 48px;
    text-align: center;
}
.arena-manifesto-inner { max-width: 820px; margin: 0 auto; }
.arena-line {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin: 0 0 18px;
    text-shadow: 0 0 50px rgba(200,150,42,0.2);
}
.arena-q {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0 0 14px;
    font-style: italic;
}
.arena-welcome {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ===== ROUND FORMAT ===== */
.round-wrap { padding-top: 0; }
.round-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.round-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}
.round-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.round-card.hot {
    border-color: rgba(200,150,42,0.4);
    background: linear-gradient(160deg, #1f1206 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 30px rgba(200,150,42,0.08);
}
.round-card-day {
    display: inline-block;
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200,150,42,0.1);
    border: 1px solid rgba(200,150,42,0.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.round-card-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 10px;
}
.round-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== PRIZES ===== */
.prizes-section {
    background:
      radial-gradient(ellipse 50% 90% at 50% 0%, rgba(200,150,42,0.07) 0%, transparent 70%),
      var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 48px;
}
.prizes-inner { max-width: 900px; margin: 0 auto; }
.prizes-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: end;
    gap: 16px;
    margin-bottom: 28px;
}
.prize-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
}
.prize-card.gold {
    border-color: rgba(200,150,42,0.5);
    background: linear-gradient(165deg, #221403 0%, var(--bg-card) 100%);
    box-shadow: 0 10px 40px rgba(200,150,42,0.14);
    padding-top: 38px;
    padding-bottom: 38px;
}
.prize-card.silver { border-color: rgba(180,190,200,0.25); }
.prize-card.bronze { border-color: rgba(180,120,70,0.25); }
.prize-medal { font-size: 40px; line-height: 1; margin-bottom: 12px; }
.prize-place {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.prize-amount {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
}
.prize-card.gold .prize-amount { font-size: 32px; color: var(--gold-light); }
.prize-amount span { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.prizes-foot { text-align: center; font-size: 14px; color: var(--text-muted); }
.prizes-foot a { color: var(--gold); text-decoration: none; }
.prizes-foot a:hover { text-decoration: underline; }

/* ===== RULES ===== */
.rules-wrap { padding-top: 0; }
.rules-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}
.rule-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
}
.rule-mark { font-size: 14px; line-height: 1; }
.rule-card.gone { color: var(--text-muted); }
.rule-x { color: #c0473e; }
.rule-card.keep {
    border-color: rgba(200,150,42,0.45);
    background: linear-gradient(135deg, #1f1206 0%, var(--bg-card) 100%);
    color: var(--gold-light);
}
.rule-check { color: var(--green); }

/* ===== DOMINION SCORE ===== */
.dscore-section {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 72px 48px;
}
.dscore-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.dscore-lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 44px;
}
.dscore-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.dscore-path {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    transition: border-color 0.2s;
}
.dscore-path:hover { border-color: var(--gold-dim); }
.dscore-path-icon { font-size: 30px; display: block; margin-bottom: 14px; }
.dscore-path-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 10px;
}
.dscore-path p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }
body.cd-landing .dscore-cta { display: inline-flex; }

/* ===== RESPONSIVE — Dominion Mode blocks ===== */
@media (max-width: 900px) {
    .round-grid { grid-template-columns: 1fr; }
    .dscore-paths { grid-template-columns: 1fr; }
    .prizes-grid { grid-template-columns: 1fr; }
    .prizes-grid .prize-card.gold { order: -1; }
    .arena-manifesto { padding: 44px 16px; }
    .arena-line { font-size: 21px; }
    .prizes-section, .dscore-section { padding-left: 16px; padding-right: 16px; }
}
