/* =========================
   Base
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    background: #0a0a0aff;
    color: #f2f2f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.8;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1.4rem;
}

h1,
h2 {
    margin: 0 0 1rem;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.0rem);
    color: #b89b5e;
    letter-spacing: 0.05em;
}

h2 {
    font-size: clamp(1.2rem, 3vw, 2.4rem);
}

/* =========================
   Header
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 16, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-logo {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #cfcfcf;
}

    .site-nav a {
        transition: color 0.2s ease;
    }

        .site-nav a:hover {
            color: #ffffff;
        }

/* =========================
   Hero
========================= */

.hero {
    padding: 88px 0 64px;
    background: linear-gradient(135deg, rgba(184, 155, 94, 0.16), transparent 45%), #14141480;
}

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

.eyebrow {
    margin-bottom: 14px;
    color: #b89b5e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================
   Buttons / Links
========================= */

.text-link {
    color: #d8bd7a;
    font-weight: 700;
    border-bottom: 1px solid rgba(216, 189, 122, 0.45);
}

    .text-link:hover {
        color: #f2d98f;
    }

/* =========================
   Sections
========================= */

.section {
    padding: 32px 0;
}

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

.section__inner--narrow {
    width: min(920px, calc(100% - 40px));
}

.section--light {
    background: #0f0f0f80;
}

/* =========================
   Fixed Page Backgrounds
========================= */

body.has-fixed-bg {
    background-image: linear-gradient( 90deg, rgba(10, 10, 10, 1.0) 0%, rgba(10, 10, 10, 0.5) 100% ), var(--page-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.home-page {
    --page-bg-image: url("assets/images/1920_1080_Fighter.jpg");
}

body.contact-page {
    --page-bg-image: url("assets/images/1920_1080_Shielder.jpg");
}


/* =========================
   Page Hero
========================= */

.page-hero {
    padding: 96px 0 72px;
    background: linear-gradient(135deg, rgba(184, 155, 94, 0.16), transparent 45%), #141414ff;
}

.page-hero__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

.page-hero p {
    color: #d8d8d8;
    max-width: 720px;
}

/* =========================
   Info List
========================= */

.info-list {
    margin: 32px 0 0;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .info-list div {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 24px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .info-list dt {
        color: #b89b5e;
        font-weight: 700;
    }

    .info-list dd {
        margin: 0;
        color: #f2f2f2;
    }

/* =========================
   Footer
========================= */

.site-footer {
    padding: 32px 0;
    color: #999;
    background: #09090a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.85rem;
}

.site-footer a {
    color: #bbb;
}

    .site-footer a:hover {
        color: #fff;
    }

/* =========================
   Responsive
========================= */

@media (max-width: 840px) {
    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 72px 0;
    }

    .info-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .site-footer__inner {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .site-header__inner,
    .hero__inner,
    .section__inner,
    .section__inner--narrow,
    .page-hero__inner,
    .site-footer__inner {
        width: min(100% - 28px, 1120px);
    }

    .section {
        padding: 64px 0;
    }
}

/* =========================
   Contact
========================= */

.official-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.steam-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

    .steam-button:hover {
        transform: translateY(-2px);
        background: rgba(20, 20, 22, 0.84);
        border-color: rgba(255, 255, 255, 0.65);
    }

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: transparent;
        text-decoration: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

        .social-links a:hover {
            transform: translateY(-2px);
            opacity: 0.75;
        }

.social-link--disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.steam-button--disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.social-icon {
    display: block;
    object-fit: contain;
}

.social-icon--x {
    width: 24px;
    height: 24px;
}

.social-icon--youtube {
    width: 48px;
    height: auto;
}

/* =========================
   Privacy Page
========================= */

.privacy-page .section h2 {
    margin-top: 40px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

    .privacy-page .section h2:first-child {
        margin-top: 0;
    }

.privacy-page .section p,
.privacy-page .section li {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.privacy-page .section ul {
    margin: 0 0 28px;
    padding-left: 1.4rem;
}

