/* =========================================================
   ANAVOYD STUDIO — PROJECT
   YET NO7/NOT
========================================================= */

:root {

    --black: #050505;
    --black-soft: #0a0a0a;
    --black-panel: #0d0d0d;

    --yellow: #ffe600;
    --gold: #ffb700;

    --pink: #ff2d95;
    --pink-light: #ff66b3;
    --pink-dark: #a91d62;

    --white: #f5f5f0;
    --text: #c7c7bd;
    --gray: #77776d;
    --dark-gray: #3d3d37;

    --border: rgba(255, 230, 0, 0.12);
    --pink-border: rgba(255, 45, 149, 0.22);

    --mouse-x: 0px;
    --mouse-y: 0px;
}


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

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


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    background: var(--black);

    color: var(--white);

    font-family:
        "JetBrains Mono",
        monospace;

    overflow-x: hidden;
}


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

.background {

    position: fixed;

    inset: 0;

    z-index: -20;

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(255, 230, 0, 0.055),
            transparent 30%
        ),

        radial-gradient(
            circle at 78% 60%,
            rgba(255, 45, 149, 0.035),
            transparent 24%
        ),

        linear-gradient(
            135deg,
            #030303,
            #090909 50%,
            #040404
        );
}


.grid {

    position: fixed;

    inset: -200px;

    z-index: -19;

    background-image:

        linear-gradient(
            rgba(255, 230, 0, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 230, 0, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    transform:
        perspective(600px)
        rotateX(58deg)
        scale(1.7);

    transform-origin: center bottom;

    animation:
        gridMove 20s linear infinite;

    opacity: 0.45;
}


@keyframes gridMove {

    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 55px, 55px 0;
    }
}


/* =========================================================
   NOISE
========================================================= */

.noise {

    position: fixed;

    inset: -50%;

    z-index: 40;

    pointer-events: none;

    opacity: 0.025;

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

    animation:
        noiseMove 0.2s steps(2) infinite;
}


@keyframes noiseMove {

    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(2%, -1%);
    }

    50% {
        transform: translate(-1%, 2%);
    }

    75% {
        transform: translate(1%, 1%);
    }

    100% {
        transform: translate(-2%, -1%);
    }
}


/* =========================================================
   SCANLINES
========================================================= */

.scanlines {

    position: fixed;

    inset: 0;

    z-index: 45;

    pointer-events: none;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 3px,
            rgba(255,255,255,0.018) 4px
        );

    animation:
        scanMove 12s linear infinite;
}


@keyframes scanMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 100vh;
    }
}


/* =========================================================
   VIGNETTE
========================================================= */

.vignette {

    position: fixed;

    inset: 0;

    z-index: 44;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            transparent 45%,
            rgba(0,0,0,0.86) 100%
        );
}


/* =========================================================
   HEADER
========================================================= */

.project-header {

    position: relative;

    width: 100%;

    min-height: 90px;

    padding: 0 4%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid rgba(255,230,0,0.1);

    background:
        rgba(4,4,4,0.76);

    backdrop-filter:
        blur(10px);

    z-index: 30;

    animation:
        headerIn 0.8s ease both;
}


@keyframes headerIn {

    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.project-header::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 28%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--yellow),
            var(--pink),
            transparent
        );

    animation:
        headerGlow 5s ease-in-out infinite;
}


@keyframes headerGlow {

    0%,
    100% {
        width: 18%;
    }

    50% {
        width: 38%;
    }
}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 13px;

    color: var(--white);

    text-decoration: none;

    min-width: 220px;
}


.brand-logo {

    width: 45px;
    height: 45px;

    display: flex;

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

    border:
        1px solid rgba(255,230,0,0.15);

    background:
        rgba(255,230,0,0.025);

    position: relative;

    overflow: hidden;
}


.brand-logo::before {

    content: "";

    position: absolute;

    inset: -30%;

    background:
        linear-gradient(
            120deg,
            transparent 40%,
            rgba(255,230,0,0.25),
            transparent 60%
        );

    animation:
        logoSweep 4s linear infinite;
}


@keyframes logoSweep {

    from {
        transform: translateX(-80%);
    }

    to {
        transform: translateX(80%);
    }
}


.brand-logo img {

    width: 32px;
    height: 32px;

    object-fit: contain;

    position: relative;

    filter:
        drop-shadow(
            0 0 7px
            rgba(255,230,0,0.35)
        );
}


.brand-text {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.brand-text strong {

    font-family: "Rajdhani", sans-serif;

    font-size: 20px;

    letter-spacing: 2px;
}


.brand-text strong span {

    color: var(--yellow);
}


.brand-text small {

    color: var(--gray);

    font-size: 6px;

    letter-spacing: 3px;
}


/* =========================================================
   NAV
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 25px;
}


.main-nav a {

    position: relative;

    color: var(--gray);

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    padding: 8px 0;

    transition:
        color 0.25s,
        transform 0.25s;
}


.main-nav a:hover {

    color: var(--white);

    transform:
        translateY(-2px);
}


.main-nav a.active {

    color: var(--yellow);
}


.main-nav a::before {

    content: ">";

    position: absolute;

    left: -12px;

    color: var(--pink);

    opacity: 0;

    transition: 0.2s;
}


.main-nav a:hover::before,
.main-nav a.active::before {

    opacity: 1;
}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--yellow),
            var(--pink)
        );

    transition: 0.3s;
}


.main-nav a:hover::after,
.main-nav a.active::after {

    width: 100%;
}


/* =========================================================
   HEADER STATUS
========================================================= */

.header-status {

    min-width: 220px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    color: var(--gray);

    font-size: 7px;

    letter-spacing: 2px;
}


.status-dot {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 0 8px var(--yellow);

    animation:
        statusBlink 2s infinite;
}


@keyframes statusBlink {

    50% {
        opacity: 0.3;
    }
}


.status-divider {

    color: #3c3c34;
}


.status-pink {

    color: var(--pink);
}


/* =========================================================
   SIDE LINES
========================================================= */

.side-line {

    position: fixed;

    top: 90px;
    bottom: 0;

    width: 1px;

    z-index: 5;

    background:
        linear-gradient(
            transparent,
            rgba(255,230,0,0.14) 30%,
            rgba(255,45,149,0.08) 70%,
            transparent
        );

    pointer-events: none;
}


.side-left {
    left: 4%;
}


.side-right {
    right: 4%;
}


/* =========================================================
   CONTAINER
========================================================= */

.project-container {

    width: min(1200px, 88%);

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


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

.game-hero {

    min-height: 620px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-bottom:
        1px solid rgba(255,230,0,0.09);
}


.hero-background-number {

    position: absolute;

    right: -30px;
    bottom: -90px;

    font-family: "Rajdhani", sans-serif;

    font-size: 420px;

    font-weight: 700;

    line-height: 1;

    color: rgba(255,230,0,0.018);

    pointer-events: none;

    user-select: none;

    transform:
        translate(
            var(--mouse-x),
            var(--mouse-y)
        );

    transition:
        transform 0.3s ease;
}


.hero-content {

    position: relative;

    text-align: center;

    width: 100%;

    padding: 90px 20px;

    animation:
        heroAppear 1s ease both;
}


@keyframes heroAppear {

    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


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

.system-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: var(--gray);

    font-size: 7px;

    letter-spacing: 3px;

    margin-bottom: 24px;
}


.label-number {

    color: var(--pink);
}


.label-line {

    width: 80px;

    height: 1px;

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


/* =========================================================
   PROJECT STATUS
========================================================= */

.project-status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 6px 11px;

    border:
        1px solid
        rgba(255,45,149,0.17);

    background:
        rgba(255,45,149,0.025);

    color: var(--gray);

    font-size: 7px;

    letter-spacing: 2px;

    margin-bottom: 22px;

    animation:
        statusFloat 4s ease-in-out infinite;
}


@keyframes statusFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


.status-pulse {

    width: 5px;
    height: 5px;

    background: var(--pink);

    border-radius: 50%;

    box-shadow:
        0 0 9px var(--pink);

    animation:
        statusBlink 1.5s infinite;
}


.project-status strong {

    color: var(--pink);
}


/* =========================================================
   TITLE
========================================================= */

.game-title {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-family:
        "Rajdhani",
        sans-serif;

    font-size:
        clamp(65px, 10vw, 125px);

    font-weight: 700;

    line-height: 0.8;

    letter-spacing: -4px;

    margin-bottom: 25px;
}


.title-main {

    color: var(--white);

    text-shadow:
        0 0 30px rgba(255,230,0,0.04);
}


.title-divider {

    color: var(--yellow);

    font-size: 0.8em;

    animation:
        dividerPulse 3s infinite;
}


@keyframes dividerPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}


.title-secondary {

    color: var(--pink);

    text-shadow:
        0 0 25px
        rgba(255,45,149,0.2);
}


/* =========================================================
   TAGLINE
========================================================= */

.game-tagline {

    color: var(--gray);

    font-size: 9px;

    line-height: 1.9;

    letter-spacing: 3px;
}


.game-tagline span {

    color: #55554c;
}


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

.hero-line {

    width: 360px;

    max-width: 80%;

    height: 1px;

    margin: 30px auto;

    position: relative;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,230,0,0.2),
            rgba(255,45,149,0.25),
            transparent
        );
}


.hero-line span {

    position: absolute;

    top: 0;

    left: 50%;

    width: 55px;

    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            var(--yellow),
            var(--pink)
        );

    box-shadow:
        0 0 12px
        rgba(255,45,149,0.3);

    animation:
        heroLineMove 3s ease-in-out infinite;
}


@keyframes heroLineMove {

    0%,
    100% {
        width: 35px;
    }

    50% {
        width: 100px;
    }
}


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

.hero-meta {

    display: flex;

    justify-content: center;

    gap: 45px;
}


.hero-meta div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-meta small {

    color: #55554b;

    font-size: 6px;

    letter-spacing: 3px;
}


.hero-meta strong {

    font-family: "Rajdhani", sans-serif;

    font-size: 15px;

    letter-spacing: 2px;
}


.pink-text {

    color: var(--pink) !important;
}


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

.hero-decoration {

    position: absolute;

    display: flex;

    flex-direction: column;

    gap: 8px;

    opacity: 0.6;
}


.hero-decoration-left {
    left: 30px;
}


.hero-decoration-right {
    right: 30px;
}


.hero-decoration span {

    width: 45px;

    height: 1px;

    background:
        var(--border);

    animation:
        decorationPulse 4s ease-in-out infinite;
}


.hero-decoration span:nth-child(2) {

    width: 25px;

    background:
        var(--pink-border);
}


.hero-decoration span:nth-child(3) {

    width: 65px;

    background:
        rgba(255,230,0,0.08);
}


@keyframes decorationPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}


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

.hero-bottom {

    position: absolute;

    bottom: 18px;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;

    padding: 0 15px;

    color: #45453c;

    font-size: 6px;

    letter-spacing: 2px;
}


.hero-bottom i {

    display: inline-block;

    width: 4px;
    height: 4px;

    margin-right: 5px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 6px var(--pink);
}


/* =========================================================
   SECTION COMMON
========================================================= */

.story-section,
.characters-section,
.development-section {

    padding: 110px 0;

    border-bottom:
        1px solid rgba(255,230,0,0.08);
}


.section-header {

    display: grid;

    grid-template-columns:
        70px
        1fr
        auto;

    align-items: center;

    gap: 20px;

    margin-bottom: 65px;
}


.section-number {

    font-family: "Rajdhani", sans-serif;

    font-size: 42px;

    font-weight: 700;

    color: rgba(255,230,0,0.35);

    line-height: 1;
}


.section-label {

    display: block;

    color: var(--pink);

    font-size: 7px;

    letter-spacing: 3px;

    margin-bottom: 4px;
}


.section-header h2 {

    font-family: "Rajdhani", sans-serif;

    font-size: 42px;

    letter-spacing: 2px;

    line-height: 1;
}


.section-code {

    color: #494940;

    font-size: 7px;

    letter-spacing: 2px;
}


/* =========================================================
   STORY
========================================================= */

.story-grid {

    display: grid;

    grid-template-columns:
        60px
        1fr
        230px;

    gap: 35px;
}


.story-index {

    border-right:
        1px solid
        rgba(255,45,149,0.12);

    display: flex;

    justify-content: center;
}


.vertical-text {

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    color: #48483f;

    font-size: 6px;

    letter-spacing: 3px;
}


.story-content {

    max-width: 690px;
}


.story-content h3 {

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 48px;

    line-height: 1;

    margin-bottom: 35px;

    letter-spacing: 1px;
}


.story-content h3 span {

    color: var(--pink);

    text-shadow:
        0 0 15px
        rgba(255,45,149,0.15);
}


.story-content p {

    color: var(--text);

    font-size: 13px;

    line-height: 2;

    margin-bottom: 23px;
}


.story-content strong {

    color: var(--yellow);

    font-weight: 700;
}


.story-content strong.pink-text {

    color: var(--pink);
}


/* =========================================================
   STORY DATA
========================================================= */

.story-data {

    align-self: start;

    border:
        1px solid
        rgba(255,230,0,0.1);

    background:
        linear-gradient(
            135deg,
            rgba(255,230,0,0.025),
            rgba(255,45,149,0.018)
        );
}


.data-item {

    padding: 17px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    border-bottom:
        1px solid
        rgba(255,230,0,0.07);
}


.data-item span {

    color: #515148;

    font-size: 6px;

    letter-spacing: 2px;
}


.data-item strong {

    font-family: "Rajdhani", sans-serif;

    font-size: 14px;

    letter-spacing: 2px;
}


.data-warning {

    padding: 15px;

    color: var(--pink);

    font-size: 6px;

    line-height: 1.7;

    letter-spacing: 1px;

    display: flex;

    align-items: center;

    gap: 9px;
}


.data-warning span {

    width: 20px;
    height: 20px;

    display: flex;

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

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

    color: var(--pink);
}


/* =========================================================
   CHARACTERS
========================================================= */

.characters-grid {

    display: grid;

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

    gap: 25px;
}


.character-card {

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(0,0,0,0.35)
        );

    border:
        1px solid
        rgba(255,230,0,0.1);

    position: relative;

    overflow: hidden;

    transition:
        transform 0.4s,
        border-color 0.4s,
        box-shadow 0.4s;
}


.character-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,45,149,0.35);

    box-shadow:
        0 15px 50px
        rgba(0,0,0,0.5),
        0 0 25px
        rgba(255,45,149,0.04);
}


/* =========================================================
   CHARACTER VISUAL
========================================================= */

.character-visual {

    height: 390px;

    position: relative;

    overflow: hidden;

    background:
        #080808;
}


.character-visual img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    filter:
        grayscale(15%)
        contrast(1.08)
        brightness(0.72);

    transform:
        scale(1.02);

    transition:
        transform 0.8s,
        filter 0.8s;
}


.character-card:hover .character-visual img {

    transform:
        scale(1.07);

    filter:
        grayscale(0%)
        contrast(1.08)
        brightness(0.82);
}


.image-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.08) 50%,
            rgba(0,0,0,0.92)
        );

    pointer-events: none;
}


.image-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,230,0,0.08),
            transparent 35%,
            transparent 65%,
            rgba(255,45,149,0.08)
        );

    mix-blend-mode: screen;
}


.image-scan {

    position: absolute;

    left: 0;

    top: -30%;

    width: 100%;

    height: 25px;

    z-index: 3;

    background:
        linear-gradient(
            transparent,
            rgba(255,45,149,0.2),
            transparent
        );

    filter:
        blur(3px);

    animation:
        imageScan 5s linear infinite;
}


@keyframes imageScan {

    from {
        top: -30%;
    }

    to {
        top: 110%;
    }
}


/* =========================================================
   IMAGE CORNERS
========================================================= */

.image-corner {

    position: absolute;

    width: 20px;
    height: 20px;

    z-index: 5;

    border-color:
        var(--pink);

    border-style: solid;
}


.top-left {

    top: 15px;
    left: 15px;

    border-width:
        1px 0 0 1px;
}


.top-right {

    top: 15px;
    right: 15px;

    border-width:
        1px 1px 0 0;
}


.bottom-left {

    bottom: 15px;
    left: 15px;

    border-width:
        0 0 1px 1px;
}


.bottom-right {

    bottom: 15px;
    right: 15px;

    border-width:
        0 1px 1px 0;
}


/* =========================================================
   CHARACTER VISUAL DATA
========================================================= */

.character-id {

    position: absolute;

    top: 17px;
    left: 18px;

    z-index: 6;

    color: var(--white);

    font-size: 6px;

    letter-spacing: 2px;

    text-shadow:
        0 1px 3px #000;
}


.character-signal {

    position: absolute;

    right: 18px;
    top: 17px;

    z-index: 6;

    color: var(--gray);

    font-size: 6px;

    letter-spacing: 1px;
}


.character-signal span {

    display: inline-block;

    width: 4px;
    height: 4px;

    margin-right: 5px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 6px var(--pink);
}


/* =========================================================
   CHARACTER INFO
========================================================= */

.character-info {

    padding: 28px;
}


.character-top {

    display: flex;

    justify-content: space-between;

    color: var(--pink);

    font-size: 6px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.character-top span:last-child {

    color: #46463d;
}


.character-info h3 {

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 42px;

    line-height: 1;

    letter-spacing: 1px;

    margin-bottom: 12px;
}


.character-info h3 span {

    color: var(--yellow);
}


.character-line {

    width: 100%;

    height: 1px;

    margin-bottom: 20px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            rgba(255,45,149,0.1),
            transparent
        );
}


.character-info p {

    color: var(--text);

    font-size: 11px;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* =========================================================
   CHARACTER DATA
========================================================= */

.character-data {

    display: grid;

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

    gap: 1px;

    margin-top: 25px;

    background:
        rgba(255,230,0,0.07);
}


.character-data div {

    padding: 12px;

    background:
        #090909;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.character-data small {

    color: #4d4d44;

    font-size: 5px;

    letter-spacing: 2px;
}


.character-data strong {

    font-family: "Rajdhani", sans-serif;

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================================
   TYLER PLACEHOLDER
========================================================= */

.placeholder {

    display: flex;

    align-items: center;

    justify-content: center;
}


.placeholder-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,45,149,0.05) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,45,149,0.05) 1px,
            transparent 1px
        );

    background-size:
        35px 35px;

    transform:
        perspective(400px)
        rotateX(55deg)
        scale(1.5);

    opacity: 0.5;

    animation:
        placeholderMove 12s linear infinite;
}


@keyframes placeholderMove {

    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 35px, 35px 0;
    }
}


.placeholder-center {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;
}


.placeholder-number {

    color: var(--pink);

    font-size: 8px;

    letter-spacing: 4px;
}


.placeholder-center strong {

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 55px;

    letter-spacing: 5px;

    color: #77776d;

    animation:
        placeholderPulse 4s ease-in-out infinite;
}


@keyframes placeholderPulse {

    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 1;
    }
}


.placeholder-center small {

    color: #414139;

    font-size: 6px;

    letter-spacing: 2px;
}


/* =========================================================
   DEVELOPMENT
========================================================= */

.development-panel {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    padding: 45px;

    border:
        1px solid
        rgba(255,230,0,0.1);

    background:
        linear-gradient(
            135deg,
            rgba(255,230,0,0.025),
            rgba(255,45,149,0.025)
        );

    position: relative;

    overflow: hidden;
}


.development-panel::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background:
        linear-gradient(
            var(--yellow),
            var(--pink)
        );
}


/* =========================================================
   DEVELOPMENT STATUS
========================================================= */

.development-status {

    display: flex;

    align-items: center;

    gap: 25px;
}


.status-ring {

    width: 110px;
    height: 110px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(255,45,149,0.25);

    border-radius: 50%;

    display: flex;

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

    position: relative;

    animation:
        ringFloat 5s ease-in-out infinite;
}


.status-ring::before {

    content: "";

    position: absolute;

    inset: 9px;

    border:
        1px dashed
        rgba(255,230,0,0.2);

    border-radius: 50%;

    animation:
        ringRotate 15s linear infinite;
}


.status-ring::after {

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    top: 7px;
    left: 50%;

    transform:
        translateX(-50%);

    background: var(--pink);

    border-radius: 50%;

    box-shadow:
        0 0 10px var(--pink);
}


@keyframes ringFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


@keyframes ringRotate {

    to {
        transform: rotate(360deg);
    }
}


.status-ring span {

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 28px;

    color: var(--yellow);

    z-index: 2;
}


.development-status small {

    color: #55554b;

    font-size: 6px;

    letter-spacing: 3px;
}


.development-status h3 {

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 38px;

    margin: 4px 0;

    letter-spacing: 2px;
}


.status-live {

    color: var(--pink);

    font-size: 6px;

    letter-spacing: 1px;
}


.status-live i {

    display: inline-block;

    width: 4px;
    height: 4px;

    margin-right: 5px;

    background: var(--pink);

    border-radius: 50%;

    box-shadow:
        0 0 6px var(--pink);
}


/* =========================================================
   DEVELOPMENT DESCRIPTION
========================================================= */

.development-description {

    align-self: center;
}


.development-description p {

    color: var(--text);

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 15px;
}


/* =========================================================
   DEVELOPMENT PROGRESS
========================================================= */

.development-progress {

    grid-column:
        1 / -1;

    margin-top: 10px;
}


.progress-header,
.progress-footer {

    display: flex;

    justify-content: space-between;

    color: #4c4c43;

    font-size: 6px;

    letter-spacing: 2px;
}


.progress-header {

    margin-bottom: 10px;
}


.progress-header span:last-child {

    color: var(--pink);
}


.progress-track {

    width: 100%;

    height: 3px;

    background:
        rgba(255,255,255,0.04);

    overflow: hidden;

    position: relative;
}


.progress-track span {

    position: absolute;

    left: 0;
    top: 0;

    width: 28%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--yellow),
            var(--pink)
        );

    box-shadow:
        0 0 12px
        rgba(255,45,149,0.35);

    animation:
        progressPulse 3s ease-in-out infinite;
}


@keyframes progressPulse {

    0%,
    100% {
        opacity: 0.6;
        width: 20%;
    }

    50% {
        opacity: 1;
        width: 35%;
    }
}


.progress-footer {

    margin-top: 9px;
}


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

.project-footer {

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #414139;

    font-size: 6px;

    letter-spacing: 2px;
}


.project-footer span:nth-child(2) {

    color: #55554a;
}


.project-footer span:last-child {

    color: var(--pink);

    opacity: 0.6;
}


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

@media (max-width: 1050px) {

    .project-header {

        flex-wrap: wrap;

        gap: 15px;

        padding:
            15px 4%;
    }


    .brand,
    .header-status {

        min-width: auto;
    }


    .main-nav {

        order: 3;

        width: 100%;

        justify-content: center;

        padding-bottom: 5px;
    }


    .story-grid {

        grid-template-columns:
            40px
            1fr;
    }


    .story-data {

        grid-column:
            2;
    }


    .development-panel {

        grid-template-columns:
            1fr;
    }


    .development-progress {

        grid-column: 1;
    }
}


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

@media (max-width: 750px) {

    .project-container {

        width: 92%;
    }


    .project-header {

        min-height: 0;

        padding: 15px 4%;

        flex-direction: column;

        align-items: center;

        gap: 16px;
    }


    .brand {

        width: 100%;

        justify-content: center;
    }


    .header-status {

        display: none;
    }


    .main-nav {

        gap: 14px;

        flex-wrap: wrap;
    }


    .main-nav a {

        font-size: 7px;
    }


    .side-line {

        display: none;
    }


    .game-hero {

        min-height: 570px;
    }


    .hero-background-number {

        font-size: 280px;

        right: -15px;
    }


    .hero-content {

        padding:
            70px 10px;
    }


    .system-label {

        font-size: 6px;

        letter-spacing: 2px;
    }


    .game-title {

        flex-direction: column;

        gap: 3px;

        font-size:
            clamp(55px, 17vw, 90px);

        letter-spacing: -2px;
    }


    .title-divider {

        line-height: 0.7;
    }


    .game-tagline {

        font-size: 7px;

        letter-spacing: 2px;
    }


    .hero-meta {

        gap: 25px;
    }


    .hero-decoration {

        display: none;
    }


    .hero-bottom {

        font-size: 5px;
    }


    .hero-bottom span:nth-child(2) {

        display: none;
    }


    .section-header {

        grid-template-columns:
            45px 1fr;

        gap: 12px;

        margin-bottom: 45px;
    }


    .section-number {

        font-size: 32px;
    }


    .section-header h2 {

        font-size: 32px;
    }


    .section-code {

        display: none;
    }


    .story-grid {

        display: block;
    }


    .story-index {

        display: none;
    }


    .story-content h3 {

        font-size: 38px;
    }


    .story-content p {

        font-size: 11px;

        line-height: 1.9;
    }


    .story-data {

        margin-top: 35px;
    }


    .characters-grid {

        grid-template-columns:
            1fr;
    }


    .character-visual {

        height: 340px;
    }


    .development-panel {

        padding: 30px 25px;

        gap: 35px;
    }


    .development-status {

        gap: 18px;
    }


    .status-ring {

        width: 85px;
        height: 85px;
    }


    .development-status h3 {

        font-size: 30px;
    }


    .project-footer {

        font-size: 5px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .main-nav {

        gap: 11px;
    }


    .main-nav a {

        font-size: 6px;

        letter-spacing: 1px;
    }


    .brand-text strong {

        font-size: 17px;
    }


    .hero-meta {

        gap: 16px;
    }


    .hero-meta strong {

        font-size: 12px;
    }


    .story-section,
    .characters-section,
    .development-section {

        padding: 75px 0;
    }


    .character-info {

        padding: 22px;
    }


    .character-info h3 {

        font-size: 35px;
    }


    .character-data {

        grid-template-columns:
            1fr;
    }


    .development-status {

        flex-direction: column;

        align-items: flex-start;
    }


    .project-footer span:nth-child(2) {

        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }
}