@font-face {
    font-family: "Bounce Dash";
    src: url("fonts/BounceDash.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #0d0d0d;
    --panel: #141414;
    --panel-hover: #191919;

    --border: #242424;
    --border-soft: #1c1c1c;

    --text: #ededed;
    --muted: #777;

    --green: #5bde4e;
    --purple: #9147ff;

    --max-width: 980px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(91, 222, 78, 0.035),
            transparent 34rem
        ),
        var(--bg);

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

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


/* NAVIGATION */

.nav {
    position: fixed;
    inset: 0 0 auto;

    z-index: 20;

    height: 66px;

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

    padding: 0 34px;

    background: rgba(13, 13, 13, 0.82);

    border-bottom: 1px solid var(--border-soft);

    backdrop-filter: blur(14px);
}

.brand {
    font-family: "Bounce Dash", Arial, sans-serif;

    font-size: 28px;
    line-height: 1;

    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 26px;

    color: #aaa;

    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.nav-links a:hover {
    color: var(--text);
}

.menu-button {
    display: none;

    border: 0;

    color: var(--text);

    background: transparent;

    font-size: 21px;

    cursor: pointer;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100vh;

    display: grid;
    place-items: center;

    overflow: hidden;

    padding: 100px 24px 70px;
}

.hero-inner {
    position: relative;

    z-index: 2;

    max-width: 900px;

    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;

    color: #777;

    font-family: "Courier New", monospace;
    font-size: 11px;

    letter-spacing: 0.16em;
}

h1 {
    margin: 0;

    font-family: "Bounce Dash", Arial, sans-serif;

    font-size: clamp(74px, 15vw, 190px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 0.02em;
}

.hero-text {
    margin: 28px 0;

    color: #888;

    font-size: 15px;
}

.primary-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 12px 17px;

    border: 1px solid #303030;

    background: rgba(20, 20, 20, 0.72);

    color: #ddd;

    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 500;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.primary-link:hover {
    border-color: #555;

    transform: translateY(-2px);
}


/* GLOW */

.glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.11;

    pointer-events: none;
}

.glow-green {
    background: var(--green);

    left: 5%;
    top: 15%;
}

.glow-purple {
    background: var(--purple);

    right: 3%;
    bottom: 5%;
}

.scroll {
    position: absolute;

    bottom: 28px;

    color: #444;

    font-family: "Courier New", monospace;
    font-size: 10px;

    letter-spacing: 0.15em;
}


/* SECTIONS */

.section {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding: 115px 0;

    border-top: 1px solid var(--border-soft);
}

.section-head {
    display: flex;
    align-items: baseline;

    gap: 15px;

    margin-bottom: 34px;
}

.section-head > span {
    color: #4f4f4f;

    font-family: "Courier New", monospace;
    font-size: 11px;
}

h2 {
    margin: 0;

    font-family: "Bounce Dash", Arial, sans-serif;

    font-size: 39px;

    font-weight: 400;
}


/* SOCIALS */

.social-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.social-card {
    position: relative;

    min-height: 145px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 22px;

    border: 1px solid var(--border);

    background: var(--panel);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.social-card:hover {
    background: var(--panel-hover);

    transform: translateY(-3px);
}

.social-card .card-label {
    position: absolute;

    top: 20px;
    left: 22px;

    color: #666;

    font-family: "Courier New", monospace;
    font-size: 10px;

    letter-spacing: 0.1em;
}

.social-card strong {
    font-family: "Bounce Dash", Arial, sans-serif;

    font-size: 25px;

    font-weight: 400;

    line-height: 1;
}

.arrow {
    position: absolute;

    right: 21px;
    bottom: 20px;

    color: #666;
}

.twitch:hover {
    border-color: rgba(145, 71, 255, 0.6);
}

.tiktok:hover {
    border-color: #666;
}

.youtube:hover {
    border-color: #777;
}


/* ABOUT */

.about-copy {
    max-width: 690px;

    color: #999;

    font-size: 16px;
}

.about-copy p {
    margin: 0 0 15px;
}

.about-copy b {
    color: #ddd;
}


/* LINKS */

.link-list {
    border-top: 1px solid var(--border);
}

.link-list a {
    min-height: 58px;

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

    padding: 0 16px;

    border-bottom: 1px solid var(--border);

    color: #aaa;

    font-family: "Courier New", monospace;
    font-size: 13px;

    transition:
        padding-left 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.link-list a:hover {
    padding-left: 22px;

    color: var(--text);

    background: #111;
}


/* FOOTER */

footer {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: auto;

    padding: 28px 0 38px;

    display: flex;
    justify-content: space-between;

    color: #444;

    border-top: 1px solid var(--border-soft);

    font-family: "Courier New", monospace;
    font-size: 10px;
}

footer a:hover {
    color: #777;
}


/* IMPRESSUM */

.legal-page {
    width: min(
        820px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding: 130px 0 80px;
}

.legal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

    color: #555;

    font-family: "Courier New", monospace;
    font-size: 10px;

    letter-spacing: 0.1em;
}

.back:hover {
    color: #aaa;
}

.legal-card {
    padding: clamp(28px, 6vw, 60px);

    border: 1px solid var(--border);

    background: rgba(20, 20, 20, 0.78);
}

.legal-card h1 {
    margin-bottom: 55px;

    font-size: clamp(58px, 10vw, 105px);
}

.legal-section {
    padding: 25px 0;

    border-top: 1px solid var(--border);
}

.legal-section h2 {
    margin: 0 0 10px;

    font-size: 27px;
}

.legal-section p {
    margin: 0;

    color: #999;

    font-size: 14px;
}

.legal-section a {
    color: #bbb;

    border-bottom: 1px solid #444;
}

.legal-section a:hover {
    color: var(--text);
}


/* MOBILE */

@media (max-width: 700px) {

    .nav {
        padding: 0 20px;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 66px;
        left: 0;
        right: 0;

        display: none;

        padding: 17px 20px 22px;

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

        gap: 18px;

        background: rgba(13, 13, 13, 0.97);

        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-text {
        font-size: 14px;
    }

    .section {
        width: min(
            100% - 32px,
            var(--max-width)
        );

        padding: 80px 0;
    }

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

    .social-card {
        min-height: 125px;
    }

    footer {
        width: min(
            100% - 32px,
            var(--max-width)
        );

        flex-direction: column;

        gap: 8px;
    }

    .legal-page {
        width: min(
            100% - 24px,
            820px
        );

        padding-top: 105px;
    }

    .legal-card {
        padding: 28px 22px;
    }

    .legal-card h1 {
        margin-bottom: 35px;
    }
}