@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --bg: #050806;
    --bg-soft: #0a100c;
    --card: #0c130f;
    --card-hover: #101a13;

    --green: #78d66a;
    --green-light: #b5f5a4;
    --green-dark: #315b35;

    --white: #f2f6f1;
    --gray: #9aa79d;
    --gray-dark: #58635b;

    --border: rgba(150, 190, 155, 0.13);

    --radius: 18px;
}


/* ========================================
   RESET
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}


/* ========================================
   BACKGROUND
======================================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: -2;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(74, 145, 72, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(50, 110, 70, 0.08),
            transparent 30%
        );
}


body::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: 50;

    opacity: 0.025;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ========================================
   HERO
======================================== */

.hero {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            rgba(4, 8, 5, 0.15),
            var(--bg)
        );
}


/* Pixel grid */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(150, 220, 150, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(150, 220, 150, 0.12) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}


/* Glow */

.hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -250px;
    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(98, 190, 91, 0.14),
            transparent 65%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* ========================================
   NAVIGATION
======================================== */

.nav {
    width: min(1180px, 90%);

    margin: 0 auto;

    padding: 27px 0;

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

    position: relative;
    z-index: 5;

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


.logo {
    font-family: "Space Grotesk", sans-serif;

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

    letter-spacing: 1px;
}


.logo span {
    color: var(--green);
}


.nav-links {
    display: flex;
    gap: 32px;

    font-size: 13px;
    font-weight: 600;

    color: var(--gray);
}


.nav-links a {
    position: relative;

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


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width 0.2s ease;
}


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


.nav-links a:hover::after {
    width: 100%;
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
    width: min(1180px, 90%);

    margin: auto;

    padding: 90px 0 130px;

    position: relative;
    z-index: 2;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--green);

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

    letter-spacing: 3px;
}


.eyebrow::before {
    content: "";

    width: 26px;
    height: 1px;

    background: var(--green);
}


h1 {
    margin: 24px 0;

    max-width: 1000px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(52px, 8vw, 108px);

    line-height: 0.91;

    letter-spacing: -6px;

    font-weight: 700;
}


h1 span {
    color: var(--green);

    text-shadow:
        0 0 45px rgba(120, 214, 106, 0.16);
}


.hero-text {
    max-width: 570px;

    color: var(--gray);

    font-size: 17px;

    line-height: 1.8;
}


.buttons {
    display: flex;

    gap: 12px;

    margin-top: 36px;

    flex-wrap: wrap;
}


.button {
    display: inline-flex;

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

    min-height: 50px;

    padding: 0 22px;

    border-radius: 9px;

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

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

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


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


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

    color: #061006;

    border-color: var(--green);

    box-shadow:
        0 10px 35px rgba(83, 180, 75, 0.14);
}


.primary:hover {
    background: var(--green-light);
}


.secondary {
    background: rgba(255,255,255,0.025);

    color: var(--white);
}


.secondary:hover {
    border-color: rgba(120, 214, 106, 0.4);
}


/* ========================================
   SCROLL
======================================== */

.scroll {
    position: absolute;

    bottom: 28px;
    left: 5%;

    color: var(--gray-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 4px;

    z-index: 3;
}


/* ========================================
   SECTIONS
======================================== */

.section {
    width: min(1180px, 90%);

    margin: auto;

    padding: 125px 0;
}


.section-label {
    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;
}


h2 span {
    color: var(--green);
}


/* ========================================
   INTRO
======================================== */

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


.two-col {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-top: 40px;
}


.two-col > div:last-child {
    padding-top: 8px;
}


.two-col p {
    max-width: 560px;

    margin-bottom: 20px;

    color: var(--gray);

    font-size: 15px;

    line-height: 1.9;
}


/* ========================================
   PLAYERS
======================================== */

.players {
    position: relative;
}


.players > h2 {
    margin-top: 12px;
    margin-bottom: 45px;
}


.player-grid {
    display: grid;

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

    gap: 14px;
}


.player {
    position: relative;

    min-height: 300px;

    padding: 25px;

    overflow: hidden;

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

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(20, 31, 23, 0.95),
            rgba(8, 13, 10, 0.95)
        );

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


.player::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(120,214,106,0.14),
            transparent 70%
        );

    transition: transform 0.3s ease;
}


.player:hover {
    transform: translateY(-7px);

    border-color:
        rgba(120,214,106,0.35);

    background:
        linear-gradient(
            145deg,
            #111c14,
            #0b110d
        );
}


.player:hover::before {
    transform: scale(1.5);
}


.player.admin {
    border-color:
        rgba(120,214,106,0.3);
}


.rank {
    color: var(--gray-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


.admin .rank {
    color: var(--green);
}


.avatar {
    width: 62px;
    height: 62px;

    margin: 35px 0 18px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    border: 1px solid
        rgba(120,214,106,0.25);

    background:
        linear-gradient(
            145deg,
            #18251a,
            #0b110d
        );

    color: var(--green);

    font-family: "Space Grotesk", sans-serif;

    font-size: 24px;
    font-weight: 700;

    box-shadow:
        inset 0 0 25px
        rgba(100,190,90,0.05);
}


.player h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    margin-bottom: 5px;
}


.player p {
    min-height: 48px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.6;
}


.gear {
    display: inline-block;

    margin-top: 18px;

    color: #c0ccc3;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .3px;
}


.ice .gear {
    color: #8bd8ff;
}


/* ========================================
   AVENTURE
======================================== */

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


.adventure h2 {
    margin-top: 12px;
}


.timeline {
    position: relative;

    margin-top: 55px;

    border-left:
        1px solid
        rgba(120,214,106,0.18);
}


.step {
    display: grid;

    grid-template-columns: 75px 1fr;

    gap: 25px;

    padding: 27px 30px;

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

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


.step:hover {
    background:
        rgba(120,214,106,0.025);

    padding-left: 38px;
}


.number {
    color: var(--gray-dark);

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;

    font-weight: 700;
}


.step h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;

    margin-bottom: 4px;
}


.step p {
    color: var(--gray);

    font-size: 13px;
}


.step.done .number {
    color: var(--green-dark);
}


.step.final {
    margin-top: 10px;

    border: 1px solid
        rgba(120,214,106,0.25);

    border-radius: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(120,214,106,0.08),
            rgba(120,214,106,0.015)
        );

    box-shadow:
        0 20px 60px
        rgba(80,180,70,0.04);
}


.step.final .number,
.step.final h3 {
    color: var(--green);
}


/* ========================================
   MUSIQUE
======================================== */

.music {
    padding-top: 100px;
}


.music-card {
    position: relative;

    margin-top: 40px;

    min-height: 260px;

    padding: 40px;

    display: flex;

    align-items: center;

    gap: 40px;

    overflow: hidden;

    border-radius: 22px;

    border: 1px solid
        rgba(120,214,106,0.18);

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(120,214,106,0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #101a12,
            #080d09
        );

    box-shadow:
        0 30px 100px
        rgba(0,0,0,0.25);
}


.music-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -130px;

    border-radius: 50%;

    border: 1px solid
        rgba(120,214,106,0.08);

    box-shadow:
        0 0 0 30px rgba(120,214,106,0.015),
        0 0 0 60px rgba(120,214,106,0.01);
}


/* VINYLE */

.vinyl {
    width: 150px;
    height: 150px;

    min-width: 150px;

    position: relative;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            #0b0e0b 0 5px,
            #1a211b 6px 7px
        );

    border: 7px solid #060806;

    box-shadow:
        0 0 0 1px #344035,
        0 20px 60px rgba(0,0,0,0.4);

    animation:
        spin 10s linear infinite;
}


.vinyl::before {
    content: "";

    width: 28px;
    height: 28px;

    position: absolute;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 20px rgba(120,214,106,0.2);
}


.vinyl::after {
    content: "";

    width: 7px;
    height: 7px;

    position: absolute;

    border-radius: 50%;

    background: #071007;

    z-index: 2;
}


.vinyl {
    font-size: 0;
}


@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* MUSIQUE TEXT */

.music-info {
    position: relative;
    z-index: 2;
}


.small {
    color: var(--green);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.music-info h2 {
    margin: 7px 0 10px;

    font-size: 42px;
}


.music-info > p:not(.small) {
    max-width: 650px;

    color: var(--gray);

    font-size: 14px;
}


/* AUDIO */

.audio-player {
    margin-top: 24px;

    width: 100%;
}


.audio-player audio {
    width: min(650px, 100%);

    height: 48px;

    border-radius: 8px;
}


/* ========================================
   CITATION
======================================== */

.quote {
    padding: 145px 5%;

    text-align: center;

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

    background:
        radial-gradient(
            circle at center,
            rgba(100,180,90,0.055),
            transparent 50%
        );
}


.quote p {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(30px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.quote span {
    color: var(--green);

    text-shadow:
        0 0 35px
        rgba(120,214,106,0.15);
}


/* ========================================
   FOOTER
======================================== */

footer {
    width: min(1180px, 90%);

    margin: auto;

    padding: 38px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

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

    color: var(--gray-dark);

    font-size: 11px;
}


footer strong {
    color: var(--gray);

    font-family: "Space Grotesk", sans-serif;
}


footer p {
    margin-top: 3px;
}


.footer-right {
    display: flex;

    gap: 25px;
}


/* ========================================
   RESPONSIVE TABLET
======================================== */

@media (max-width: 900px) {

    .nav-links {
        gap: 18px;
    }


    .two-col {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .player-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .music-card {
        padding: 30px;
    }

}


/* ========================================
   RESPONSIVE MOBILE
======================================== */

@media (max-width: 600px) {

    .nav {
        padding: 20px 0;
    }


    .nav-links {
        display: none;
    }


    .hero-content {
        padding:
            100px 0
            120px;
    }


    h1 {
        font-size: 53px;

        letter-spacing: -4px;
    }


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


    .section {
        padding: 90px 0;
    }


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


    .player {
        min-height: 260px;
    }


    .step {
        grid-template-columns: 45px 1fr;

        gap: 12px;

        padding: 23px 18px;
    }


    .step:hover {
        padding-left: 23px;
    }


    .music-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;

        gap: 30px;
    }


    .vinyl {
        width: 120px;
        height: 120px;

        min-width: 120px;
    }


    .music-info h2 {
        font-size: 34px;
    }


    .quote {
        padding: 100px 20px;
    }


    .quote p {
        letter-spacing: -2px;
    }


    footer {
        align-items: flex-start;
    }


    .footer-right {
        display: none;
    }

}