:root {
    --bg: #030303;
    --bg-2: #080808;
    --bg-soft: #121212;

    --text: #ffffff;
    --muted: #a7a7a7;
    --muted-2: #6f6f6f;

    --primary: #ff7b00;
    --primary-light: #ffb35c;
    --primary-soft: rgba(255, 123, 0, .12);

    --card: rgba(255, 255, 255, .065);
    --card-strong: rgba(255, 255, 255, .10);

    --border: rgba(255, 255, 255, .12);
    --border-strong: rgba(255, 123, 0, .36);

    --shadow: 0 28px 90px rgba(0, 0, 0, .48);

    --radius: 26px;
    --radius-lg: 34px;

    --header-height: 92px;
    --container: 1580px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family: Inter, Arial, Helvetica, sans-serif;

    color: var(--text);

    background:
        radial-gradient(circle at top left, rgba(255,123,0,.14), transparent 28%),
        radial-gradient(circle at top right, rgba(255,179,92,.08), transparent 30%),
        linear-gradient(180deg, #020202 0%, #050505 45%, #030303 100%);

    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 64px 64px;

    mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(circle at 18% 18%, rgba(255,123,0,.045), transparent 26%),
        radial-gradient(circle at 82% 42%, rgba(255,179,92,.05), transparent 28%);

    filter: blur(4px);
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

::selection {
    background: rgba(255,123,0,.24);
    color: white;
}

/* HEADER */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background: rgba(3,3,3,.78);

    border-bottom: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.site-header::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(180deg, rgba(255,123,0,.10), transparent 80%),
        radial-gradient(circle at 50% -80%, rgba(255,123,0,.22), transparent 45%);
}

.header-inner {
    position: relative;

    max-width: var(--container);

    height: var(--header-height);

    margin: auto;

    padding: 0 52px;

    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;

    gap: 28px;
}

/* LOGO */

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: max-content;
}

.logo-area img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    filter: drop-shadow(0 0 18px rgba(255,123,0,.22));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: white;

    font-size: 26px;
    font-weight: 950;

    letter-spacing: -.06em;
}

.logo-text strong span {
    color: var(--primary);
}

.logo-text small {
    margin-top: 8px;

    color: rgba(255,255,255,.48);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .24em;
}

/* NAVBAR */

.main-nav {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;
}

.main-nav a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: rgba(255,255,255,.62);

    font-size: 16px;
    font-weight: 850;

    transition: .25s ease;

    white-space: nowrap;
}

.main-nav a:hover {
    color: white;
}

.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    transform: translateX(-50%);

    background: var(--primary);

    box-shadow: 0 0 18px rgba(255,123,0,.85);
}

/* ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.discord-btn {
    width: 52px;
    height: 52px;

    border-radius: 999px;

    display: grid;
    place-items: center;

    color: white;

    font-size: 19px;

    background: rgba(255,255,255,.055);

    border: 1px solid rgba(255,255,255,.15);

    transition: .25s ease;
}

.discord-btn:hover {
    color: var(--primary);

    border-color: rgba(255,123,0,.45);

    background: rgba(255,123,0,.09);
}

.play-btn {
    height: 54px;

    padding: 0 24px;

    border-radius: 14px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #111;

    background: var(--primary);

    font-size: 17px;
    font-weight: 950;

    box-shadow: 0 16px 40px rgba(255,123,0,.24);

    transition: .25s ease;
}

.play-btn:hover {
    transform: translateY(-2px);

    background: #ff8f22;
}

.play-btn strong {
    font-size: 24px;
    line-height: 1;
}

/* MOBILE */

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.12);

    background: rgba(255,255,255,.07);

    color: white;

    cursor: pointer;

    font-size: 22px;
}

/* MAIN */

.page-content {
    padding-top: var(--header-height);
    min-height: calc(100vh - 140px);
}

/* LABELS */

.section-label,
.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 9px 15px;

    border-radius: 999px;

    color: var(--primary);

    background: rgba(255,123,0,.08);

    border: 1px solid rgba(255,123,0,.18);

    font-size: 12px;
    font-weight: 950;

    letter-spacing: .11em;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.section-label::before,
.hero-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow: 0 0 16px rgba(255,123,0,.75);
}

/* BUTTONS */

.btn-primary,
.btn-secondary {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 14px 22px;

    border-radius: 14px;

    overflow: hidden;

    font-weight: 900;

    transition: .25s ease;
}

.btn-primary {
    color: #111;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    box-shadow:
        0 18px 40px rgba(255,123,0,.18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ff8f22;
}

.btn-secondary {
    color: white;

    background: rgba(255,255,255,.055);

    border: 1px solid rgba(255,255,255,.12);
}

.btn-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(255,123,0,.28);

    background: rgba(255,123,0,.08);
}

/* FOOTER */

.site-footer {
    position: relative;

    max-width: var(--container);

    margin: 70px auto 0;

    padding: 34px 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;

    color: var(--muted);

    border-top: 1px solid rgba(255,255,255,.10);
}

.site-footer::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 42px;

    width: 180px;
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--primary),
        transparent
    );
}

.site-footer strong {
    display: block;

    color: white;

    font-size: 18px;

    margin-bottom: 6px;
}

.site-footer p {
    color: var(--muted-2);
    line-height: 1.6;
}

.site-footer span {
    color: var(--muted-2);
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #030303;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #ff7b00,
        #ffb35c
    );

    border-radius: 999px;

    border: 2px solid #030303;
}

/* RESPONSIVE */

@media (max-width: 1180px) {

    .header-inner {
        grid-template-columns: auto 1fr auto;
        padding: 0 22px;
    }

    .main-nav {
        gap: 22px;
    }

    .header-actions {
        display: none;
    }
}

@media (max-width: 980px) {

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;

        top: calc(var(--header-height) - 2px);
        left: 18px;
        right: 18px;

        height: auto;

        display: none;

        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        padding: 12px;

        border-radius: 20px;

        background: rgba(8,8,8,.96);

        border: 1px solid rgba(255,255,255,.12);

        box-shadow: 0 24px 70px rgba(0,0,0,.55);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        height: auto;
        padding: 15px 16px;
        border-radius: 14px;
    }

    .main-nav a.active {
        background: rgba(255,123,0,.10);
    }

    .main-nav a.active::before {
        display: none;
    }
}

@media (max-width: 720px) {

    :root {
        --header-height: 82px;
    }

    .header-inner {
        padding: 0 18px;
    }

    .logo-area img {
        width: 48px;
        height: 48px;
    }

    .logo-text strong {
        font-size: 22px;
    }

    .logo-text small {
        font-size: 10px;
    }

    .site-footer {
        margin-top: 45px;

        padding: 28px 18px;

        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer::before {
        left: 18px;
    }
}

@media (max-width: 460px) {

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}