@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");


:root {
    --bg: #0e1116;
    --surface: #121824;
    --text: #e7eaf0;
    --muted: #a8b0bf;
    --line: #263146;
    --accent: #b85c5c;
    --accent-2: #caa45b;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --font-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    font-size: 18px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
}

.container {
    width: min(1100px, calc(100% - 48px));
    margin-inline: auto;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    line-height: 1.15;
    margin: 0 0 48px 0;
    letter-spacing: .2px;
}

h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin-top: 36px;
}

h3 {
    font-size: 1.25rem;
    margin-top: 24px;
}

p {
    margin: 0 0 48px 0;
    line-height: 2;
    color: var(--text);
}

.small,
small {
    font-size: .92rem;
    color: var(--muted);
}

.section--hero {
    display: flex;
    justify-content: center;
}

.section--hero h1 {
    margin: 0;
}

section {
    padding: 96px 0;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: .72rem;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    text-align: center;
}

.section-title {
    text-transform: uppercase;
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--accent-2);
    text-align: center;
}

.section--history {
    background: linear-gradient(180deg, #1c2438, #151C2F00), url(hptcg-history-bg.webp) center;
    background-size: cover;
}

.section--footer {
    background: #0d0c0f;
    padding-bottom: 0;
}

.section--footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .section--footer .container {
        gap: 48px;
        flex-direction: row;
    }

    .section--footer P {
        margin: 0;
    }

    .section--footer {
        padding: 0;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    gap: 10px;
    font-family: var(--font-serif);
    text-transform: uppercase;
    padding: 10px 14px;
    background: var(--accent);
    color: var(--text);
    font-weight: 400;
    cursor: pointer;
    font-size: 0.8rem;
}