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

:root {
    --black: #07080b;
    --dark: #0d0f14;
    --panel: #11141b;
    --white: #f1f0eb;
    --muted: #898b94;
    --purple: #8b5cf6;
    --purple-bright: #a78bfa;
    --cyan: #48d8ff;
    --red: #ff4567;
    --border: rgba(255,255,255,.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, sans-serif;
}

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

.site {
    overflow: hidden;
}

/* NAV */

.navbar {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.brand-games {
    color: var(--purple-bright);
    margin-left: 5px;
}

.brand-mark {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    gap: 3px;
}

    .brand-mark span {
        display: block;
        width: 7px;
        background: var(--purple);
        transform: skew(-18deg);
    }

        .brand-mark span:nth-child(1) {
            height: 15px;
        }

        .brand-mark span:nth-child(2) {
            height: 22px;
        }

        .brand-mark span:nth-child(3) {
            height: 28px;
        }

.nav-links {
    display: flex;
    gap: 42px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .nav-links a {
        color: #a5a6ad;
        transition: color .2s;
    }

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

.menu-button {
    display: none;
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 10vw 100px;
    background: radial-gradient( circle at 75% 45%, rgba(108, 65, 210, .25), transparent 30% ), #08090d;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(7,8,11,1) 0%, rgba(7,8,11,.88) 40%, rgba(7,8,11,.25) 100% ), radial-gradient( circle at 78% 50%, rgba(139,92,246,.5), transparent 28% );
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, transparent, black);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.section-label {
    color: var(--purple-bright);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.pulse,
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple-bright);
    box-shadow: 0 0 12px var(--purple);
}

.hero h1 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(70px, 10vw, 100px);
    font-weight: 700;
    line-height: .78;
    letter-spacing: -3px;
}

    .hero h1 span {
        color: transparent;
        -webkit-text-stroke: 2px rgba(255,255,255,.75);
    }

.hero-description {
    max-width: 510px;
    margin: 38px 0;
    color: #a7a8b0;
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 16px 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all .25s;
}

.button-primary {
    background: var(--purple);
}

    .button-primary:hover {
        background: var(--purple-bright);
        transform: translateY(-2px);
    }

.button-ghost {
    border: 1px solid var(--border);
}

    .button-ghost:hover {
        background: rgba(255,255,255,.05);
    }

.hero-status {
    position: absolute;
    z-index: 2;
    bottom: 35px;
    left: 10vw;
    right: 10vw;
    display: flex;
    justify-content: space-between;
    color: #63656d;
    font-size: 9px;
    letter-spacing: 2px;
}

    .hero-status div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

/* SECTIONS */

.featured,
.games,
.studio,
.news {
    padding: 120px 8vw;
}

.featured {
    background: #0a0b0f;
}

.featured-content {
    margin-top: 45px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 600px;
}

.featured-art {
    position: relative;
    overflow: hidden;
    background: radial-gradient( ellipse at 55% 40%, rgba(126, 71, 255, .65), transparent 27% ), radial-gradient( ellipse at 60% 60%, rgba(26, 155, 255, .2), transparent 45% ), linear-gradient(135deg, #17112c, #090c15);
    border: 1px solid var(--border);
}

    .featured-art::before {
        content: "";
        position: absolute;
        inset: 15%;
        border: 1px solid rgba(167,139,250,.2);
        border-radius: 50%;
        box-shadow: 0 0 100px rgba(139,92,246,.2), inset 0 0 100px rgba(139,92,246,.1);
    }

    .featured-art::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%) rotate(45deg);
        border: 1px solid rgba(72,216,255,.2);
    }

.art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 70%, rgba(0,0,0,.75)), repeating-linear-gradient( 45deg, transparent, transparent 5px, rgba(255,255,255,.015) 5px, rgba(255,255,255,.015) 6px );
}

.featured-title {
    position: absolute;
    left: 45px;
    bottom: 45px;
    font-family: "Barlow Condensed", sans-serif;
}

    .featured-title span {
        display: block;
        color: var(--purple-bright);
        font-size: 12px;
        letter-spacing: 4px;
    }

    .featured-title strong {
        font-size: 100px;
        line-height: .8;
    }

.coming-soon {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 2px;
}

    .coming-soon span {
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--red);
    }

.featured-info {
    padding: 55px;
    background: #11131a;
    border: 1px solid var(--border);
    border-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-number {
    color: var(--purple-bright);
    font-size: 10px;
    letter-spacing: 3px;
}

.featured-info h2 {
    margin: 15px 0 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 90px;
    line-height: .8;
}

.game-tagline {
    margin: 30px 0 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: .95;
}

.featured-info > p:not(.game-tagline) {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.game-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

    .game-meta div {
        padding: 18px 10px;
        border-right: 1px solid var(--border);
    }

        .game-meta div:last-child {
            border: 0;
        }

    .game-meta span,
    .game-meta strong {
        display: block;
    }

    .game-meta span {
        color: #686a73;
        margin-bottom: 7px;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .game-meta strong {
        font-size: 9px;
        letter-spacing: .5px;
    }

.text-link {
    width: fit-content;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--purple-bright);
}

    .text-link span {
        margin-left: 10px;
    }

/* NEWS */

.news {
    background: #090a0e;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.news-card {
    border: 1px solid var(--border);
    background: #0e1015;
}

.news-image {
    min-height: 230px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-color: #17141f;
}

.news-image-one {
    background: radial-gradient(circle, #7445cf, transparent 25%), #151124;
}

.news-image-two {
    background: radial-gradient(circle, #cf4564, transparent 25%), #241116;
}

.news-image-three {
    background: radial-gradient(circle, #36a9b9, transparent 25%), #0f1d20;
}

.news-image span {
    font-size: 8px;
    letter-spacing: 2px;
}

.news-date {
    padding: 25px 25px 0;
    color: var(--purple-bright);
    font-size: 8px;
    letter-spacing: 2px;
}

.news-card h3 {
    padding: 0 25px;
    font-family: "Barlow Condensed";
    font-size: 30px;
    line-height: 1;
}

.news-card p {
    padding: 0 25px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.news-card > a {
    display: inline-block;
    padding: 15px 25px 25px;
    color: var(--purple-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* GAMES */

.games {
    background: var(--black);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

    .section-heading h2,
    .studio h2,
    .cta h2 {
        margin: 18px 0 0;
        font-family: "Barlow Condensed", sans-serif;
        font-size: clamp(55px, 7vw, 100px);
        line-height: .82;
    }

        .section-heading h2 span,
        .studio h2 span,
        .cta h2 span {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,.6);
        }

    .section-heading > p {
        max-width: 300px;
        margin: 0;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.7;
    }

.game-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 15px;
}

.game-card {
    background: var(--panel);
    border: 1px solid var(--border);
    transition: transform .3s, border-color .3s;
}

    .game-card:hover {
        transform: translateY(-7px);
        border-color: rgba(167,139,250,.5);
    }

.card-art {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background-color: #151722;
}

.nexus-art {
    background: radial-gradient(circle at 50% 45%, #7c3aed, transparent 22%), linear-gradient(135deg, #1c1435, #080b13);
}

.void-art {
    background: radial-gradient(circle at 55% 45%, #db3158, transparent 20%), linear-gradient(135deg, #2c111c, #09090e);
}

.unknown-art {
    background: radial-gradient(circle at 50% 45%, #21a7b9, transparent 18%), linear-gradient(135deg, #0e2228, #080a0d);
}

.card-art::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    box-shadow: 0 0 100px currentColor;
}

.card-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0,0,0,.8)), repeating-linear-gradient( 90deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px );
}

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 2;
    color: rgba(255,255,255,.3);
    font-family: "Barlow Condensed";
    font-size: 40px;
}

.card-title {
    position: relative;
    z-index: 3;
}

    .card-title small {
        display: block;
        color: var(--purple-bright);
        font-size: 8px;
        letter-spacing: 3px;
    }

    .card-title h3 {
        margin: 2px 0 0;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 65px;
        line-height: .8;
    }

.card-status {
    position: absolute;
    z-index: 3;
    top: 28px;
    left: 28px;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    border-top: 1px solid var(--border);
    font-size: 8px;
    letter-spacing: 1px;
}

    .card-info div {
        display: flex;
        gap: 15px;
        color: #777983;
    }

/* STUDIO */

.studio {
    position: relative;
    background: #101219;
}

.studio-background {
    position: absolute;
    inset: 0;
    opacity: .3;
    background: radial-gradient( circle at 75% 50%, rgba(139,92,246,.3), transparent 30% );
}

.studio > *:not(.studio-background) {
    position: relative;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12vw;
    margin-top: 55px;
}

.studio-heading h2 {
    margin: 0;
}

.studio-copy {
    padding-top: 10px;
}

    .studio-copy p {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.9;
    }

    .studio-copy .large-copy {
        color: var(--white);
        font-size: 19px;
        line-height: 1.5;
    }

.studio-values-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

    .studio-values-row div {
        padding-top: 20px;
    }

    .studio-values-row strong {
        display: block;
        color: var(--purple-bright);
        font-family: "Barlow Condensed";
        font-size: 45px;
    }

    .studio-values-row span {
        color: #666873;
        font-size: 8px;
        letter-spacing: 2px;
    }

/* CTA */

.cta {
    position: relative;
    padding: 150px 10vw;
    text-align: center;
    background: radial-gradient( circle at center, rgba(112, 65, 220, .28), transparent 35% ), #08090d;
}

.cta-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139,92,246,.1);
    border-radius: 50%;
}

.cta h2 {
    position: relative;
    margin: 30px 0;
}

.cta p {
    position: relative;
    max-width: 430px;
    margin: auto auto 35px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.cta-actions {
    position: relative;
    justify-content: center;
}

/* FOOTER */

footer {
    padding: 45px 6vw;
    background: #050608;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

    .footer-top p {
        color: #51535b;
        font-family: "Barlow Condensed";
        font-size: 14px;
        letter-spacing: 2px;
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
    color: #4f5159;
    font-size: 8px;
    letter-spacing: 1.5px;
}

    .footer-bottom div {
        display: flex;
        gap: 25px;
    }

    .footer-bottom a:hover {
        color: white;
    }

/* MOBILE */

@media (max-width: 900px) {

    .navbar {
        padding: 22px 6vw;
    }

    .nav-links {
        display: none;
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        gap: 6px;
        border: 0;
        background: transparent;
    }

        .menu-button span {
            display: block;
            width: 25px;
            height: 1px;
            background: white;
        }

    .hero {
        padding: 150px 7vw 100px;
    }

        .hero h1 {
            font-size: 18vw;
        }

    .hero-status {
        left: 7vw;
        right: 7vw;
    }

        .hero-status > span {
            display: none;
        }

    .featured,
    .games,
    .studio,
    .news {
        padding: 80px 6vw;
    }

    .featured-content,
    .studio-content {
        grid-template-columns: 1fr;
    }

    .featured-art {
        min-height: 500px;
    }

    .featured-info {
        border-left: 1px solid var(--border);
        border-top: 0;
    }

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

    .game-card-large {
        grid-column: auto;
    }

    .section-heading {
        display: block;
    }

        .section-heading > p {
            margin-top: 25px;
        }

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

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

@media (max-width: 500px) {

    .hero h1 {
        font-size: 22vw;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        justify-content: center;
    }

    .featured-title strong {
        font-size: 70px;
    }

    .featured-info {
        padding: 35px 25px;
    }

        .featured-info h2 {
            font-size: 70px;
        }

    .game-meta {
        grid-template-columns: 1fr;
    }

        .game-meta div {
            border-right: 0;
            border-bottom: 1px solid var(--border);
        }

    .studio-stat-row {
        gap: 10px;
    }

        .studio-stat-row strong {
            font-size: 35px;
        }
}
