/* ── Hall of Fame ─────────────────────────────────────────── */
.hof-hero {
    text-align: center;
    padding: 3rem 1rem 2.5rem;
    position: relative;
}
.hof-hero h1 { font-size: 2.6rem; margin-bottom: .5rem; }
.hof-hero p  { color: var(--text-dim); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* Gold shimmer on hero title */
.hof-hero h1 .hof-accent {
    background: linear-gradient(90deg, var(--accent-gold), #ffe566, var(--accent-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ── Record cards ─────────────────────────────────────────── */
.records-section {
    max-width: 960px;
    margin: 0 auto 3.5rem;
}
.records-section h2 { font-size: 1.5rem; margin-bottom: 1.4rem; }

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.1rem;
}

.record-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.3rem 1.3rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.record-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

/* Color variants */
.record-card.gold   { border-color: rgba(255,215,0,.3); }
.record-card.cyan   { border-color: rgba(0,240,255,.25); }
.record-card.green  { border-color: rgba(0,255,136,.25); }
.record-card.red    { border-color: rgba(255,71,87,.25); }
.record-card.purple { border-color: rgba(168,85,247,.25); }

.record-card.gold::before   { background: radial-gradient(circle at top right, rgba(255,215,0,.12) 0%, transparent 60%); }
.record-card.cyan::before   { background: radial-gradient(circle at top right, rgba(0,240,255,.1) 0%, transparent 60%); }
.record-card.green::before  { background: radial-gradient(circle at top right, rgba(0,255,136,.1) 0%, transparent 60%); }
.record-card.red::before    { background: radial-gradient(circle at top right, rgba(255,71,87,.1) 0%, transparent 60%); }
.record-card.purple::before { background: radial-gradient(circle at top right, rgba(168,85,247,.1) 0%, transparent 60%); }
.record-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rc-icon   { font-size: 2rem; display: block; margin-bottom: .6rem; line-height: 1; }
.rc-title  { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: .3rem; }
.rc-value  {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .4rem;
}
.record-card.gold   .rc-value { color: var(--accent-gold); }
.record-card.cyan   .rc-value { color: var(--accent); }
.record-card.green  .rc-value { color: var(--accent-green); }
.record-card.red    .rc-value { color: var(--accent-red); }
.record-card.purple .rc-value { color: var(--accent-purple); }

.rc-holder { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.rc-holder a { color: var(--text); transition: color var(--transition); }
.rc-holder a:hover { color: var(--accent); }
.rc-subtitle { font-size: .73rem; color: var(--text-muted); line-height: 1.4; }

.no-records {
    grid-column: 1/-1;
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

/* ── Season champions wall ────────────────────────────────── */
.champs-section {
    max-width: 960px;
    margin: 0 auto 3.5rem;
}
.champs-section h2 { font-size: 1.5rem; margin-bottom: 1.4rem; }

.champs-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.champ-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.4rem;
    transition: border-color var(--transition), background var(--transition);
}
.champ-row:hover {
    border-color: rgba(255,215,0,.3);
    background: rgba(255,215,0,.03);
}
.champ-trophy { font-size: 1.6rem; flex-shrink: 0; }
.champ-season { flex: 0 0 160px; }
.champ-season-name { font-weight: 700; font-size: .95rem; }
.champ-season-date { font-size: .75rem; color: var(--text-muted); margin-top: .1rem; }
.champ-player { flex: 1; }
.champ-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent-gold);
}
.champ-name a { color: inherit; transition: color var(--transition); }
.champ-name a:hover { color: #ffe566; }
.champ-kills {
    font-size: .8rem;
    color: var(--text-dim);
    margin-top: .15rem;
}
.champ-crown { font-size: 1.3rem; }
.no-champs {
    text-align: center;
    color: var(--text-muted);
    padding: 2.5rem;
    font-style: italic;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

/* ── Monthly champions timeline ───────────────────────────── */
.monthly-section {
    max-width: 960px;
    margin: 0 auto 3.5rem;
}
.monthly-section h2 { font-size: 1.5rem; margin-bottom: 1.4rem; }

.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .9rem;
}
.monthly-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}
.monthly-card:hover {
    border-color: rgba(0,240,255,.25);
    transform: translateY(-2px);
}
.monthly-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.monthly-card:hover::after { opacity: 1; }

.mc-period { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.mc-icon   { font-size: 1.5rem; margin-bottom: .4rem; }
.mc-name   { font-weight: 700; font-size: .9rem; word-break: break-word; }
.mc-name a { color: var(--text); }
.mc-name a:hover { color: var(--accent); }
.mc-value  { font-size: .78rem; color: var(--text-dim); margin-top: .25rem; }

/* ── Legends of the wall ──────────────────────────────────── */
.wall-section {
    max-width: 960px;
    margin: 0 auto 2.5rem;
}
.wall-section h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.wall-desc { color: var(--text-dim); font-size: .9rem; margin-bottom: 1.4rem; }

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, rgba(255,215,0,.08), rgba(168,85,247,.06));
    border: 1px solid rgba(255,215,0,.2);
    border-radius: 30px;
    padding: .55rem 1.1rem;
    margin: .3rem;
    font-size: .9rem;
    font-weight: 600;
    transition: border-color var(--transition), transform var(--transition);
    cursor: default;
}
.legend-item:hover {
    border-color: rgba(255,215,0,.5);
    transform: scale(1.03);
}
.legend-item a { color: var(--text); }
.legend-item a:hover { color: var(--accent-gold); }
.legend-count {
    font-size: .72rem;
    color: var(--accent-gold);
    font-weight: 700;
    background: rgba(255,215,0,.15);
    border-radius: 10px;
    padding: .1rem .45rem;
}
.wall-empty {
    color: var(--text-muted);
    font-style: italic;
    font-size: .9rem;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--text-dim);
    font-size: .88rem;
    margin-bottom: 2rem;
    transition: color var(--transition);
}
.back-link:hover { color: var(--accent); }
