/* =====================================================
   LEGENDS ORDER
   MAIN WEBSITE STYLES
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #09080d;
    color: #f5f3fa;
    font-family: 'Inter', Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --bg: #09080d;
    --bg-soft: #0e0c14;
    --bg-card: #111019;

    --white: #f5f3fa;
    --muted: #8f8b99;

    --purple: #9b5cff;
    --purple-bright: #b77aff;
    --purple-dark: #6e35c7;

    --border: rgba(255,255,255,0.10);
    --border-light: rgba(255,255,255,0.16);

    --max-width: 1500px;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 0 42px;

    background: rgba(9,8,13,0.78);

    border-bottom: 1px solid rgba(255,255,255,0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;

    white-space: nowrap;
}

.logo-box {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #09080d;

    font-size: 18px;
    font-weight: 900;

    transform: skew(-8deg);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.logo:hover .logo-box {
    background: var(--purple);
    color: #fff;
    transform: skew(-8deg) rotate(-5deg);
}


/* SOCIAL ICONS */

.nav-socials {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-left: 30px;
}

.social-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.11);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.social-icon svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-3px);

    background: var(--purple);

    border-color: var(--purple);

    box-shadow:
        0 8px 30px rgba(155,92,255,0.28);
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;

    margin-left: auto;
    margin-right: 35px;
}

.nav-links a {
    position: relative;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;

    color: #b7b3bf;

    transition:
        color 0.25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--purple);

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}


/* NAV BUTTON */

.nav-button {
    height: 42px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 0 17px;

    background: #fff;
    color: #09080d;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-button span {
    font-size: 16px;
}

.nav-button:hover {
    background: var(--purple);
    color: #fff;

    transform: translateY(-2px);
}


/* =====================================================
   IMAGE HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100vh;
    width: 100%;

    overflow: hidden;

    display: flex;
    align-items: center;

    background: #050507;
    color: #ffffff;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.hero-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    background-image: url("images/fortnite.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    transform: scale(1.03);
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            1deg,
            rgba(0, 0, 0, 0.74) 100%,
            rgb(0, 0, 0) 100%,
            rgba(0, 0, 0, 0.993) 100%
        );

    pointer-events: none;
}


/* EXTRA DARKNESS */

.hero-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.473) 100%,
            transparent 100%,
            transparent 100%,
            rgba(0, 0, 0, 0.726) 100%
        );
}


/* =====================================================
   PURPLE GLOW
===================================================== */

.hero-glow {
    position: absolute;

    z-index: 2;

    width: 700px;
    height: 700px;

    right: -250px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(111, 53, 199, 0.20),
            transparent 65%
        );

    filter: blur(50px);

    pointer-events: none;
}


/* =====================================================
   TOP META
===================================================== */

.hero-meta {
    position: absolute;

    z-index: 5;

    top: 105px;

    left: 45px;
    right: 45px;

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,0.5);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: var(--max-width);

    margin: 0 auto;

    padding: 150px 45px 100px;
}


/* LABEL */

.hero-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.65);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.16em;
}


/* PURPLE DOT */

.pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #9b5cff;

    box-shadow:
        0 0 15px rgba(155,92,255,0.8);

    animation: heroPulse 2s ease-in-out infinite;
}


@keyframes heroPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }

}


/* =====================================================
   MAIN TITLE
===================================================== */

.hero h1 {
    margin: 0;

    display: flex;

    flex-direction: column;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(90px, 13vw, 210px);

    line-height: 0.72;

    letter-spacing: -0.085em;

    text-transform: uppercase;
}


.hero h1 span {
    display: block;
}


/* OUTLINE */

.hero-outline {
    color: transparent;

    -webkit-text-stroke:
        2px rgba(255,255,255,0.85);

    margin-left: 8vw;
}


/* =====================================================
   HERO BOTTOM
===================================================== */

.hero-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-top: 65px;
}


/* DESCRIPTION */

.hero-description {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-description span {
    color: rgba(255,255,255,0.5);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.hero-description strong {
    font-size: 14px;

    font-weight: 900;

    letter-spacing: 0.08em;
}


.hero-description p {
    margin: 14px 0 0;

    color: rgba(255,255,255,0.4);

    font-size: 8px;

    font-weight: 700;

    line-height: 1.7;

    letter-spacing: 0.12em;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.hero-cta {
    display: flex;

    align-items: center;

    gap: 35px;

    padding: 18px 22px;

    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(0,0,0,0.3);

    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.13em;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.hero-cta strong {
    font-size: 18px;
}


.hero-cta:hover {
    background: #6e35c7;

    border-color: #6e35c7;

    transform: translateY(-4px);
}


/* =====================================================
   STATS
===================================================== */

.hero-stats {
    position: absolute;

    z-index: 5;

    right: 45px;
    bottom: 45px;

    display: flex;

    gap: 45px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-stats strong {
    font-family: 'Space Grotesk', sans-serif;

    font-size: 20px;
}


.hero-stats span {
    color: rgba(255,255,255,0.4);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


/* =====================================================
   SCROLL
===================================================== */

.hero-scroll {
    position: absolute;

    z-index: 5;

    left: 45px;
    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: rgba(255,255,255,0.4);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.hero-scroll div {
    width: 45px;

    height: 1px;

    background: rgba(255,255,255,0.25);
}


.hero-scroll strong {
    color: #ffffff;

    font-size: 13px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .hero {
        min-height: 750px;
    }

    .hero-meta {
        top: 90px;

        left: 20px;
        right: 20px;

        font-size: 6px;
    }

    .hero-meta span:nth-child(2) {
        display: none;
    }

    .hero-content {
        padding: 150px 20px 100px;
    }

    .hero h1 {
        font-size: 20vw;
    }

    .hero-outline {
        margin-left: 8vw;

        -webkit-text-stroke-width: 1px;
    }

    .hero-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;

        margin-top: 50px;
    }

    .hero-stats {
        display: none;
    }

    .hero-scroll {
        left: 20px;

        bottom: 25px;
    }

    .hero-glow {
        width: 400px;
        height: 400px;
    }

}


/* =====================================================
   MARQUEE
===================================================== */

.marquee {
    overflow: hidden;

    padding: 22px 0;

    background: var(--purple);

    color: #fff;

    transform: rotate(-1.2deg) scale(1.02);

    margin: 0;
}

.marquee-inner {
    display: flex;
    align-items: center;

    width: max-content;

    gap: 25px;

    animation: marquee 25s linear infinite;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: -0.02em;
}

.marquee-inner b {
    opacity: 0.5;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    position: relative;

    display: grid;

    grid-template-columns: 80px 1.1fr 0.9fr;

    gap: 60px;

    max-width: var(--max-width);

    margin: auto;

    padding: 180px 45px;
}

.intro-number {
    color: #615d68;

    font-size: 11px;
    font-weight: 700;
}

.small-heading {
    margin-bottom: 35px;

    color: var(--purple);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.intro-main h2 {
    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(55px, 7vw, 110px);

    line-height: 0.87;

    letter-spacing: -0.065em;
}

.intro-main h2 span {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,0.45);
}

.intro-right {
    padding-top: 80px;
}

.intro-line {
    width: 100%;
    height: 1px;

    margin-bottom: 35px;

    background: rgba(255,255,255,0.12);
}

.intro-big {
    max-width: 450px;

    margin-bottom: 25px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 28px;
    line-height: 1.05;

    letter-spacing: -0.04em;
}

.intro-big strong {
    color: var(--purple);
}

.intro-right > p:not(.intro-big) {
    max-width: 460px;

    color: #817d88;

    font-size: 13px;

    line-height: 1.8;
}

.intro-right a {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;

    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255,255,255,0.3);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.12em;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.intro-right a:hover {
    color: var(--purple);

    border-color: var(--purple);
}


/* =====================================================
   SECTION HEADERS
===================================================== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,0.10);

    color: #88838f;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.section-header > div {
    display: flex;
    gap: 12px;
}

.section-number {
    color: var(--purple);
}


/* =====================================================
   ROSTER
===================================================== */

.roster {
    max-width: var(--max-width);

    margin: auto;

    padding: 100px 45px 180px;
}

.roster-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 70px 0 55px;
}

.roster-title h2 {
    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(60px, 8vw, 130px);

    line-height: 0.8;

    letter-spacing: -0.07em;
}

.roster-title h2 span {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.roster-title p {
    color: #77727f;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


/* PLAYERS */

.players {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}


/* PLAYER CARD */

.player-card {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    display: block;

    color: inherit;

    background:
        linear-gradient(
            145deg,
            #17131e,
            #0c0a10
        );

    border: 1px solid rgba(255,255,255,0.08);

    cursor: pointer;

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.player-card:hover {
    transform: translateY(-9px);

    border-color: rgba(155,92,255,0.55);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.45);
}


/* GLOW */

.player-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(155,92,255,0.38),
            transparent 70%
        );

    filter: blur(25px);

    opacity: 0;

    transition: opacity 0.5s ease;
}

.player-card:hover .player-glow {
    opacity: 1;
}


/* PLAYER NUMBER */

.player-number {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 4;

    color: #77727f;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.1em;
}


/* TYPE */

.player-type {
    position: absolute;

    top: 22px;
    right: 22px;

    z-index: 4;

    max-width: 160px;

    color: #77727f;

    font-size: 8px;
    font-weight: 700;

    text-align: right;

    line-height: 1.5;

    letter-spacing: 0.12em;
}


/* PLAYER IMAGE */

.player-image {
    position: absolute;

    inset: 50px 0 0;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    overflow: hidden;
}

.player-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.045);

    filter:
        drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}


/* GRADIENT */

.player-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 30%,
            rgba(7,6,10,0.15) 50%,
            rgba(7,6,10,0.98) 100%
        );

    pointer-events: none;
}


/* PLAYER NAME */

.player-name {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 55px;

    z-index: 5;
}

.player-name small {
    display: block;

    margin-bottom: 5px;

    color: #8c8793;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.player-name strong {
    display: block;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(25px, 3vw, 42px);

    line-height: 0.95;

    letter-spacing: -0.05em;
}


/* FOOTER */

.player-footer {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 22px;

    z-index: 5;

    display: flex;
    justify-content: space-between;

    color: #77727f;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.player-footer span:last-child {
    color: #fff;

    font-size: 18px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.player-card:hover .player-footer span:last-child {
    color: var(--purple);

    transform: translate(4px,-4px);
}


/* =====================================================
   CONTENT
===================================================== */

.content {
    position: relative;

    padding: 120px 45px 170px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #eeeaf4 0%,
            #ded8e8 100%
        );

    color: #111016;
}

.content-background {
    position: absolute;

    top: 20px;
    right: -20px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 18vw;
    font-weight: 900;

    line-height: 0.8;

    color: rgba(0,0,0,0.025);

    pointer-events: none;

    user-select: none;
}

.content-top,
.content-title,
.shorts-carousel {
    position: relative;

    max-width: var(--max-width);

    margin-left: auto;
    margin-right: auto;
}

.content-top {
    padding-bottom: 25px;

    border-bottom: 1px solid rgba(0,0,0,0.13);

    color: #55505d;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.content-top > div {
    display: flex;
    gap: 12px;
}

.section-number.dark {
    color: #6e35c7;
}

.content-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 70px 0 50px;
}

.content-title h2 {
    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(65px, 8vw, 125px);

    line-height: 0.8;

    letter-spacing: -0.07em;
}

.content-title h2 span {
    color: #6e35c7;
}

.content-title p {
    color: #706a77;

    font-size: 9px;
    font-weight: 800;

    line-height: 1.5;

    letter-spacing: 0.14em;
}


/* =====================================================
   SHORTS CAROUSEL
===================================================== */

.shorts-carousel {
    overflow-x: auto;

    padding-bottom: 20px;

    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 transparent;
}

.shorts-carousel::-webkit-scrollbar {
    height: 5px;
}

.shorts-carousel::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.08);
}

.shorts-carousel::-webkit-scrollbar-thumb {
    background: #8b5cf6;
}


/* TRACK */

.carousel-track {
    display: flex;

    gap: 18px;

    width: max-content;
}


/* SHORT */

.short-slide {
    width: 330px;

    flex-shrink: 0;

    color: #111016;

    transition:
        transform 0.35s ease;
}

.short-slide:hover {
    transform: translateY(-8px);
}

.short-slide.featured {
    width: 430px;
}


/* MEDIA */

.short-media {
    position: relative;

    height: 470px;

    overflow: hidden;

    background: #141218;
}

.short-slide.featured .short-media {
    height: 550px;
}

.short-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.short-slide:hover .short-media img {
    transform: scale(1.05);
}


/* DARK */

.short-dark {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.65)
        );
}


/* INDEX */

.short-index {
    position: absolute;

    top: 18px;
    left: 18px;

    color: #fff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.1em;
}


/* PLAY */

.short-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.55);

    border-radius: 50%;

    background: rgba(0,0,0,0.2);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 17px;

    padding-left: 3px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.short-slide:hover .short-play {
    background: var(--purple);

    border-color: var(--purple);

    transform: translate(-50%,-50%) scale(1.1);
}


/* CATEGORY */

.short-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    color: rgba(255,255,255,0.7);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.15em;
}


/* DETAILS */

.short-details {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding-top: 18px;

    border-top: 1px solid rgba(0,0,0,0.12);
}

.short-details small {
    display: block;

    margin-bottom: 7px;

    color: #77727f;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.short-details h3 {
    font-family: 'Space Grotesk', sans-serif;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: -0.03em;
}

.short-arrow {
    font-size: 22px;

    transition:
        transform 0.25s ease;
}

.short-slide:hover .short-arrow {
    transform: translate(4px,-4px);
}


/* =====================================================
   SIMPLE BRANDS SECTION
===================================================== */

.partners {
    padding: 140px 0 120px;

    overflow: hidden;

    background: #e4dfeb;

    color: #111016;
}


/* =====================================================
   HEADING
===================================================== */

.partners-heading {
    max-width: var(--max-width);

    margin: 0 auto;

    padding: 0 45px 70px;
}


.partners-label {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(0,0,0,0.12);

    color: #66616d;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.partners-heading h2 {
    margin-top: 65px;
    text-align: center;

    font-family: 'Arial', sans-serif;

    font-size: clamp(65px, 9vw, 100px);

    line-height: 0.78;

    letter-spacing: -0.075em;
}


.partners-heading h2 span {
    display: block;

    color: #6e35c7;
}


/* =====================================================
   CAROUSEL
===================================================== */

.brand-carousel {
    width: 100%;

    overflow: hidden;

    border-top: 1px solid rgba(0,0,0,0.10);

    border-bottom: 1px solid rgba(0,0,0,0.10);
}


.brand-track {
    display: flex;
    align-items: center;

    width: max-content;

    animation: brandScroll 25s linear infinite;
}


/* =====================================================
   BRAND
===================================================== */

.brand-logo {
    width: 260px;
    height: 150px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 50px;
}


.brand-logo img {
    max-width: 150px;
    max-height: 80px;

    object-fit: contain;

    opacity: 0.65;

    filter: grayscale(1);

    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;
}


.brand-logo:hover img {
    opacity: 1;

    filter: grayscale(0);

    transform: scale(1.05);
}


.brand-logo span {
    font-family: 'Space Grotesk', sans-serif;

    font-size: 25px;
    font-weight: 800;

    color: rgba(17,16,22,0.25);

    letter-spacing: -0.05em;
}


/* =====================================================
   INFINITE LOOP
===================================================== */

@keyframes brandScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =====================================================
   CONTACT
===================================================== */

.partner-contact {
    max-width: var(--max-width);

    margin: 60px auto 0;

    padding: 25px 45px 0;

    border-top: 1px solid rgba(0,0,0,0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.partner-contact > span {
    color: #77717e;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


.partner-contact > a {
    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.13em;

    border-bottom: 1px solid #111016;

    padding-bottom: 7px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.partner-contact > a:hover {
    color: #6e35c7;

    border-color: #6e35c7;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .partners {
        padding: 100px 0;
    }

    .partners-heading {
        padding: 0 20px 50px;
    }

    .partners-heading h2 {
        margin-top: 45px;

        font-size: 18vw;
    }

    .brand-logo {
        width: 190px;
        height: 120px;

        padding: 20px 30px;
    }

    .brand-logo img {
        max-width: 110px;
        max-height: 60px;
    }

    .brand-logo span {
        font-size: 20px;
    }

    .partner-contact {
        margin-top: 45px;

        padding: 20px 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}


/* =====================================================
   FINAL CTA
===================================================== */

.final {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(155,92,255,0.22),
            transparent 35%
        ),
        #09080d;
}

.final-light {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 5%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(155,92,255,0.22),
            transparent 68%
        );

    filter: blur(20px);
}

.final-giant {
    position: absolute;

    right: -3%;
    bottom: -30px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 20vw;
    font-weight: 900;

    line-height: 0.7;

    color: rgba(255,255,255,0.025);

    user-select: none;
}

.final-content {
    position: relative;

    width: min(var(--max-width), calc(100% - 90px));

    margin: auto;

    z-index: 2;
}

.final-content > span {
    color: var(--purple);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.final-content h2 {
    margin: 30px 0 45px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(65px, 9vw, 145px);

    line-height: 0.82;

    letter-spacing: -0.07em;
}

.final-content h2 em {
    color: transparent;

    font-style: normal;

    -webkit-text-stroke: 1px rgba(255,255,255,0.6);
}

.final-button {
    display: inline-flex;
    align-items: center;
    gap: 50px;

    padding: 20px 23px;

    background: #fff;
    color: #09080d;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.12em;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.final-button strong {
    font-size: 19px;
}

.final-button:hover {
    background: var(--purple);

    color: #fff;

    transform: translateY(-4px);
}

/* =====================================================
   CAREERS / JOIN LEGENDS
===================================================== */

.careers {
    position: relative;

    padding: 150px 45px 130px;

    background: #111016;

    color: #ffffff;

    overflow: hidden;
}


/* HEADER */

.careers-header {
    max-width: var(--max-width);

    margin: 0 auto;
}


.careers-label {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255,255,255,0.13);

    color: rgba(255,255,255,0.5);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
}


.careers-label .section-number {
    color: #9b5cff;
}


/* HEADING */

.careers-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 75px 0 70px;
}


.careers-heading h2 {
    margin: 0;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(65px, 9vw, 135px);

    line-height: 0.78;

    letter-spacing: -0.075em;
}


.careers-heading h2 span {
    display: block;

    color: #9b5cff;
}


.careers-heading p {
    max-width: 330px;

    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 10px;

    font-weight: 700;

    line-height: 1.8;

    letter-spacing: 0.08em;
}


/* =====================================================
   JOB LIST
===================================================== */

.jobs {
    max-width: var(--max-width);

    margin: 0 auto;

    border-top: 1px solid rgba(255,255,255,0.13);
}


.job {
    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr 130px 40px;

    align-items: center;

    gap: 30px;

    min-height: 125px;

    border-bottom: 1px solid rgba(255,255,255,0.13);

    color: #ffffff;

    transition:
        padding 0.35s ease,
        background 0.35s ease;
}


.job:hover {
    padding-left: 20px;

    background: rgba(155,92,255,0.08);
}


/* NUMBER */

.job-number {
    color: rgba(255,255,255,0.3);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


/* JOB INFO */

.job-info span {
    display: block;

    margin-bottom: 8px;

    color: #9b5cff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.15em;
}


.job-info h3 {
    margin: 0;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(22px, 3vw, 38px);

    font-weight: 700;

    letter-spacing: -0.045em;
}


/* TYPE */

.job-type {
    color: rgb(0, 255, 115);
    font-family: 'Space Grotesk', sans-serif;

    font-size: 8px;

    font-weight: 100;

    letter-spacing: 0.2em;

    text-align: right;
}


/* ARROW */

.job-arrow {
    color: rgba(255,255,255,0.45);

    font-size: 22px;

    text-align: right;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.job:hover .job-arrow {
    color: #9b5cff;

    transform: translate(5px,-5px);
}


/* =====================================================
   BOTTOM
===================================================== */

.careers-bottom {
    max-width: var(--max-width);

    margin: 55px auto 0;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.careers-bottom span {
    color: rgba(255,255,255,0.35);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.careers-bottom a {
    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.13em;

    border-bottom: 1px solid rgba(255,255,255,0.4);

    padding-bottom: 7px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.careers-bottom a:hover {
    color: #9b5cff;

    border-color: #9b5cff;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .careers {
        padding: 100px 20px;
    }


    .careers-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;

        padding: 55px 0;
    }


    .careers-heading h2 {
        font-size: 18vw;
    }


    .careers-heading p {
        max-width: 100%;
    }


    .job {
        grid-template-columns: 35px 1fr 30px;

        gap: 15px;

        min-height: 105px;
    }


    .job-type {
        display: none;
    }


    .job-info h3 {
        font-size: 20px;
    }


    .careers-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 60px 45px 30px;

    background: #06050a;

    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-main {
    max-width: var(--max-width);

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 50px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;

    font-size: 42px;
    font-weight: 800;

    letter-spacing: -0.06em;
}

.footer-logo span {
    color: var(--purple);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #817c88;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;

    transition:
        color 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: var(--max-width);

    margin: auto;

    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: #5f5a65;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.13em;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-socials {
        margin-left: 15px;
    }

    .nav-links {
        gap: 20px;
        margin-right: 20px;
    }

    .hero-content {
        width: calc(100% - 50px);
    }

    .hero-meta {
        left: 25px;
        right: 25px;
    }

    .intro {
        grid-template-columns: 50px 1fr;
    }

    .intro-right {
        grid-column: 2;
        padding-top: 30px;
    }

    .players {
        grid-template-columns: repeat(2,1fr);
    }

    .player-card {
        min-height: 500px;
    }
}


/* TABLET */

@media (max-width: 800px) {

    .navbar {
        height: auto;
        min-height: 72px;

        padding: 14px 18px;

        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .nav-button {
        order: 2;

        margin-left: auto;
    }

    .nav-socials {
        order: 3;

        width: 100%;

        margin: 12px 0 0;

        justify-content: center;
    }

    .nav-links {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 850px;
    }

    .hero-meta {
        top: 115px;

        left: 20px;
        right: 20px;

        font-size: 7px;
    }

    .hero-meta span:nth-child(2) {
        display: none;
    }

    .hero-content {
        width: calc(100% - 40px);

        padding-top: 100px;
    }

    .hero h1 {
        font-size: 25vw;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 35px;

        margin-top: 45px;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-stats {
        right: 20px;
        bottom: 30px;

        gap: 20px;
    }

    .hero-scroll {
        left: 20px;
        bottom: 30px;
    }

    .hero-scroll span,
    .hero-scroll div {
        display: none;
    }

    .hero-orb {
        width: 300px;
        height: 300px;

        right: -100px;
    }


    /* INTRO */

    .intro {
        display: block;

        padding: 100px 20px;
    }

    .intro-number {
        margin-bottom: 30px;
    }

    .intro-right {
        padding-top: 60px;
    }


    /* ROSTER */

    .roster {
        padding: 80px 20px 110px;
    }

    .section-header > span:last-child {
        display: none;
    }

    .roster-title {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .players {
        grid-template-columns: 1fr;
    }

    .player-card {
        min-height: 550px;
    }


    /* CONTENT */

    .content {
        padding: 90px 20px 110px;
    }

    .content-title {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .short-slide,
    .short-slide.featured {
        width: 290px;
    }

    .short-media,
    .short-slide.featured .short-media {
        height: 440px;
    }


    /* PARTNERS */

    .partners {
        padding: 90px 20px 110px;
    }

    .partners-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .partners-header p {
        text-align: left;
    }

    .partner-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .partner {
        min-height: 150px;
    }

    .partner-contact {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }


    /* FINAL */

    .final {
        min-height: 600px;
    }

    .final-content {
        width: calc(100% - 40px);
    }


    /* FOOTER */

    footer {
        padding: 50px 20px 25px;
    }

    .footer-main {
        align-items: flex-start;

        flex-direction: column;

        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 18px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {

    .logo span {
        display: none;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .nav-button {
        height: 38px;

        padding: 0 12px;
    }

    .hero h1 {
        font-size: 27vw;
    }

    .hero-description strong {
        font-size: 12px;
    }

    .intro-main h2 {
        font-size: 17vw;
    }

    .roster-title h2 {
        font-size: 18vw;
    }

    .content-title h2 {
        font-size: 18vw;
    }

    .partners-title h2 {
        font-size: 17vw;
    }

    .final-content h2 {
        font-size: 18vw;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .short-slide,
    .short-slide.featured {
        width: 270px;
    }

    .short-media,
    .short-slide.featured .short-media {
        height: 410px;
    }
    
}