@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080608;
    --bg2: #0e0a0e;
    --bg3: #130e14;
    --bg4: #1a1020;

    --red: #8b1a1a;
    --red-bright: #c0392b;
    --red-glow: rgba(139, 26, 26, 0.35);
    --red-subtle: rgba(139, 26, 26, 0.08);

    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --gold-dim: #8a6830;
    --gold-glow: rgba(201, 168, 76, 0.2);
    --gold-subtle: rgba(201, 168, 76, 0.07);

    --purple: #6b2fa0;
    --purple-light: #9b59d0;
    --purple-glow: rgba(107, 47, 160, 0.3);

    --text: #e8ddd0;
    --text-muted: #7a6e6a;
    --text-dim: #a89888;

    --border: rgba(201, 168, 76, 0.12);
    --border-red: rgba(139, 26, 26, 0.25);
    --radius: 4px;
    --radius-lg: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold-light);
}

code {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.87em;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-alt {
    background: var(--bg2);
}

.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.leagueoflegends.com/page-data/static/media/noxus-splash.4ced4745.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.04) saturate(0.3);
    pointer-events: none;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-bright);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--red-bright);
}

.section-desc {
    color: var(--text-muted);
    max-width: 620px;
    font-size: 0.97rem;
    line-height: 1.8;
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dim);
}

::selection {
    background: rgba(139, 26, 26, 0.4);
    color: var(--gold-light);
}