/* ===== Root Variables ===== */

:root {
    --color-bg: #0C1013;
    --color-surface: #192026;
    --color-surface-alt: #272E34;
    --color-accent: #3DAE45;
    --color-text: #f5f5f5;
    --color-text-placeholder: rgba(255,255,255,0.5);
    --color-error: #d9534f;

    --max-width: 1200px;
    --radius: 8px;
}

/* ===== Fonts ===== */

@font-face {
    font-family: "Toxigenesis";
    src: url("/resources/fonts/ToxigenesisRg-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "JUSTSans";
    src: url("/resources/fonts/JUSTSans-Rg.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Toxigenesis", "Open Sans", sans-serif;
}

.site__main {
    flex: 1;
}

body.full {
    height: 100%;
    overflow: hidden;
}

body.full .site__main {
    flex: 1 0 auto;
    display: flex;
}

/* ===== Typography ===== */

p {
    font-family: "JUSTSans", "Open Sans", sans-serif;
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3, h4 {
    margin: 0;
}

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

/* ===== Layout ===== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: 800px;
}

.u-accent {
    color: var(--color-accent);
}

.is-disabled {
    opacity: 0.6;
    pointer-events: none;
}

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

.hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(23, 27, 31, 0.95), rgba(39, 46, 52, 0.85)),
        url("/resources/images/abstract-green.png") center / cover no-repeat;
    background-blend-mode: multiply;
}

.hero--bosskill {
    background:
        linear-gradient(rgba(23, 27, 31, 0.95), rgba(39, 46, 52, 0.85)),
        url("/resources/images/bosskill-neon.png") center / cover no-repeat;
}

.hero__inner {
    text-align: center;
}

.hero__title {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow:
        0 0 10px rgba(61, 174, 69, 0.6),
        0 0 20px rgba(61, 174, 69, 0.3);
}

.hero__tagline {
    max-width: 680px;
    margin: 2rem auto 0;
    font-size: 1.5rem;
}

.hero__actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ===== Button Block ===== */

.button {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-family: "Toxigenesis", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.button--primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
}

.button--outline {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

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

/* ===== Responsive (Mobile Adjustments) ===== */

@media (max-width: 1023px) {
    .hero__title {
        font-size: 3.5rem;
    }

    .hero__tagline {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem;
    }
}