:root {
    --bg: #0d0f0e;
    --bg-deep: #080908;
    --panel: #151514;
    --panel-strong: #1f1d19;
    --text: #eee7dc;
    --muted: #b7afa4;
    --dim: #837b70;
    --line: rgba(238, 231, 220, 0.14);
    --brass: #c09a55;
    --brass-bright: #e0bc72;
    --blood: #7f2f2b;
    --steel: #7e9092;
    --shadow: rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mix-blend-mode: soft-light;
    opacity: 0.28;
}

a {
    color: inherit;
}

.container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(238, 231, 220, 0.1);
    background: rgba(8, 9, 8, 0.82);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(224, 188, 114, 0.75);
    color: var(--brass-bright);
    background: rgba(192, 154, 85, 0.12);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--bg-deep);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 9, 8, 0.94) 0%, rgba(8, 9, 8, 0.74) 32%, rgba(8, 9, 8, 0.25) 66%, rgba(8, 9, 8, 0.56) 100%),
        linear-gradient(180deg, rgba(8, 9, 8, 0.18) 0%, rgba(8, 9, 8, 0.7) 100%),
        radial-gradient(circle at 78% 34%, rgba(126, 144, 146, 0.24), transparent 18%),
        radial-gradient(circle at 68% 54%, rgba(192, 154, 85, 0.12), transparent 12%),
        radial-gradient(circle at 18% 72%, rgba(127, 47, 43, 0.17), transparent 20%),
        linear-gradient(120deg, #070807 0%, #111514 42%, #1b1a17 68%, #0a0b0a 100%);
    transform: scale(1.01);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 102px 0 72px;
}

.hero-copy {
    width: min(1160px, 100%);
    transform: translateY(-24px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brass-bright);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 10px;
    font-size: clamp(3rem, 6.15vw, 5.9rem);
    line-height: 0.92;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 0.98;
    font-weight: 700;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.15;
}

.hero-subtitle {
    margin-bottom: 22px;
    color: var(--brass-bright);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1rem, 2vw, 1.28rem);
    font-weight: 700;
    text-transform: uppercase;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--text);
    font-size: clamp(1.12rem, 2vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--brass-bright);
    color: #14110c;
}

.button.secondary {
    border-color: rgba(224, 188, 114, 0.68);
    color: var(--brass-bright);
    background: rgba(8, 9, 8, 0.3);
}

.hero-meta {
    width: min(1060px, 100%);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-meta span {
    padding: 7px 9px;
    border: 1px solid rgba(238, 231, 220, 0.14);
    background: rgba(8, 9, 8, 0.4);
    color: var(--muted);
}

.section {
    padding: clamp(72px, 9vw, 118px) 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: start;
}

.section-copy {
    color: var(--muted);
    font-size: 1.06rem;
}

.section-copy p:last-child {
    margin-bottom: 0;
}

.media-section {
    padding-block: clamp(56px, 6vw, 82px);
    background:
        radial-gradient(circle at 80% 12%, rgba(126, 144, 146, 0.12), transparent 28%),
        linear-gradient(180deg, #111210 0%, #151413 100%);
}

.media-heading {
    margin-bottom: 44px;
}

.media-list {
    display: grid;
    gap: 42px;
}

.media-list:empty {
    display: none;
}

.media-item h3 {
    margin-bottom: 14px;
    color: var(--text);
}

.media-frame {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 9, 8, 0.42);
}

.media-frame img,
.media-frame iframe,
.media-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    object-fit: cover;
}

.media-caption {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.community-section {
    background: #171716;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.social-link {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--text);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(224, 188, 114, 0.62);
    background: var(--panel-strong);
}

.social-link i {
    margin-bottom: auto;
    font-size: 1.7rem;
    color: var(--brass);
}

.social-link span {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.social-link small {
    color: var(--dim);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
}

.social-link:hover .fa-discord {
    color: #5865f2;
}

.social-link:hover .fa-youtube {
    color: #ff2d20;
}

.social-link:hover .fa-twitch {
    color: #9146ff;
}

.social-link:hover .fa-steam {
    color: #66c0f4;
}

.creator-section {
    background:
        linear-gradient(180deg, #121311, #0d0f0e);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 40px;
    max-width: 420px;
}

.contact-grid a {
    display: grid;
    gap: 7px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(238, 231, 220, 0.04);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
    border-color: rgba(224, 188, 114, 0.58);
}

.contact-grid span {
    color: var(--brass);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
    color: var(--dim);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
}

.footer-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner p {
    margin-bottom: 0;
}

.footer-inner a {
    color: var(--muted);
    text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
    color: var(--text);
}

@media (max-width: 980px) {
    h1 {
        white-space: normal;
    }

    .link-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 92px;
    }

    .container {
        width: min(100% - 28px, 1280px);
    }

    .header-inner {
        min-height: auto;
        padding: 15px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        font-size: 0.76rem;
    }

    .hero-grid {
        padding-top: 138px;
    }

    .hero-copy {
        transform: none;
    }

    h1 {
        font-size: clamp(2.75rem, 11vw, 4.4rem);
    }

    .hero-backdrop {
        background:
            linear-gradient(180deg, rgba(8, 9, 8, 0.88) 0%, rgba(8, 9, 8, 0.56) 40%, rgba(8, 9, 8, 0.92) 100%),
            radial-gradient(circle at 70% 34%, rgba(126, 144, 146, 0.22), transparent 22%),
            radial-gradient(circle at 22% 74%, rgba(127, 47, 43, 0.16), transparent 24%),
            linear-gradient(135deg, #070807, #151817 58%, #0a0b0a);
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .link-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}
