
/* =====================================================
   DEMONIA ESPORT
   HORROR / DEMON THEME
===================================================== */


:root {

    --black: #030303;
    --black-2: #070707;
    --black-3: #0d0d0d;

    --red: #b00020;
    --red-bright: #ff123f;
    --red-dark: #45000d;

    --white: #eeeeee;
    --gray: #777;
    --dark-gray: #292929;

    --border: rgba(255,255,255,0.08);

    --cinzel: "Cinzel", serif;
    --orbitron: "Orbitron", sans-serif;
    --poppins: "Poppins", sans-serif;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background:
        radial-gradient(
            circle at 50% 0%,
            #160307 0%,
            var(--black) 40%
        );

    color: var(--white);

    font-family: var(--poppins);

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font-family: inherit;

}


/* =====================================================
   NOISE
===================================================== */

.noise {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 9999;

    opacity: .045;

    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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");

}


/* =====================================================
   BACKGROUND GRID
===================================================== */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    opacity: .18;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

}


/* =====================================================
   BLOOD MIST
===================================================== */

.blood-mist {

    position: fixed;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    filter: blur(140px);

    opacity: .08;

    pointer-events: none;

    z-index: -2;

}

.mist-one {

    background: var(--red);

    top: -300px;

    left: -200px;

}

.mist-two {

    background: #700019;

    bottom: -350px;

    right: -200px;

}


/* =====================================================
   BACKGROUND SYMBOL
===================================================== */

.background-symbol {

    position: fixed;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    font-size: 500px;

    font-family: var(--cinzel);

    color: rgba(255,0,30,.015);

    pointer-events: none;

    z-index: -3;

}


/* =====================================================
   PRELOADER
===================================================== */

.preloader {

    position: fixed;

    inset: 0;

    background: #020202;

    z-index: 10000;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: 1s;

}


.preloader.hide {

    opacity: 0;

    pointer-events: none;

}


.preloader-symbol {

    width: 100px;

    height: 100px;

    border:

        1px solid

        rgba(255,18,63,.5);

    display: grid;

    place-items: center;

    transform: rotate(45deg);

    animation:
        loaderRotate 4s linear infinite;

}


.preloader-symbol span {

    transform: rotate(-45deg);

    font-size: 35px;

    color: var(--red-bright);

}


.preloader p {

    margin-top: 35px;

    font-family: var(--orbitron);

    font-size: 9px;

    letter-spacing: 4px;

    color: #777;

}


.loader {

    width: 180px;

    height: 2px;

    background: #171717;

    margin-top: 15px;

    overflow: hidden;

}


.loader span {

    display: block;

    width: 0%;

    height: 100%;

    background: var(--red-bright);

    animation:
        loading 2.2s forwards;

}


@keyframes loading {

    to {
        width: 100%;
    }

}


@keyframes loaderRotate {

    to {
        transform: rotate(405deg);
    }

}


/* =====================================================
   CURSOR
===================================================== */

.cursor {

    position: fixed;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--red-bright);

    pointer-events: none;

    z-index: 10001;

}


.cursor-ring {

    position: fixed;

    width: 30px;

    height: 30px;

    border:

        1px solid

        rgba(255,18,63,.5);

    border-radius: 50%;

    pointer-events: none;

    z-index: 10000;

    transition:
        width .2s,
        height .2s;

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    height: 85px;

    padding:
        0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(255,255,255,.05);

    background:
        rgba(3,3,3,.75);

    backdrop-filter:
        blur(20px);

    z-index: 500;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-logo {

    width: 45px;

    height: 45px;

}


.brand-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 12px
            rgba(255,0,30,.4)
        );

}


.brand-name strong {

    display: block;

    font-family: var(--orbitron);

    font-size: 15px;

    letter-spacing: 3px;

}


.brand-name span {

    color: var(--red-bright);

    font-family: var(--orbitron);

    font-size: 7px;

    letter-spacing: 5px;

}


.navbar nav {

    display: flex;

    gap: 45px;

}


.navbar nav a {

    position: relative;

    font-family: var(--orbitron);

    font-size: 9px;

    letter-spacing: 2px;

    color: #666;

    transition: .3s;

}


.navbar nav a::after {

    content: "";

    position: absolute;

    bottom: -10px;

    left: 0;

    width: 0;

    height: 1px;

    background: var(--red-bright);

    transition: .3s;

}


.navbar nav a:hover,
.navbar nav a.active {

    color: white;

}


.navbar nav a:hover::after,
.navbar nav a.active::after {

    width: 100%;

}


.nav-right {

    display: flex;

    align-items: center;

    gap: 8px;

    font-family: var(--orbitron);

    font-size: 8px;

    color: #555;

    letter-spacing: 1px;

}


.live-dot {

    width: 6px;

    height: 6px;

    background: #00ff66;

    border-radius: 50%;

    box-shadow:
        0 0 10px #00ff66;

    animation:
        pulse 1.5s infinite;

}


@keyframes pulse {

    50% {
        opacity: .3;
    }

}


.mobile-menu {

    display: none;

    background: none;

    border: 0;

}


.mobile-menu span {

    display: block;

    width: 25px;

    height: 2px;

    background: white;

    margin: 5px;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    padding:
        140px 7% 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    overflow: hidden;

}


.hero-content {

    width: 55%;

    position: relative;

    z-index: 5;

}


.hero-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--red-bright);

    font-family: var(--orbitron);

    font-size: 8px;

    letter-spacing: 4px;

    margin-bottom: 30px;

}


.hero-kicker span {

    width: 30px;

    height: 1px;

    background:
        var(--red-bright);

}


.hero h1 {

    font-family: var(--cinzel);

    font-size:
        clamp(55px, 8vw, 120px);

    line-height: .86;

    font-weight: 900;

    letter-spacing: -5px;

}


.hero h1 span {

    display: block;

}


.hero h1 .thin {

    font-size: .35em;

    font-family: var(--orbitron);

    letter-spacing: 5px;

    color: #666;

    margin-bottom: 15px;

}


.hero h1 .red {

    color: var(--red-bright);

    text-shadow:
        0 0 50px
        rgba(255,18,63,.25);

}


.hero-description {

    max-width: 500px;

    margin-top: 35px;

    color: #777;

    font-size: 14px;

    line-height: 1.9;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 40px;

}


.btn-primary {

    display: flex;

    align-items: center;

    gap: 30px;

    padding: 17px 25px;

    background:
        var(--red);

    font-family: var(--orbitron);

    font-size: 9px;

    letter-spacing: 2px;

    clip-path:
        polygon(
            0 0,
            90% 0,
            100% 50%,
            90% 100%,
            0 100%
        );

    transition: .3s;

}


.btn-primary:hover {

    background:
        var(--red-bright);

    box-shadow:
        0 0 40px
        rgba(255,0,40,.3);

    padding-left: 35px;

}


.btn-secondary {

    display: flex;

    align-items: center;

    padding: 17px 25px;

    border:
        1px solid
        #292929;

    font-family: var(--orbitron);

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

    transition: .3s;

}


.btn-secondary:hover {

    color: white;

    border-color:
        var(--red);

}


.hero-meta {

    display: flex;

    gap: 50px;

    margin-top: 70px;

}


.hero-meta div {

    display: flex;

    flex-direction: column;

}


.hero-meta strong {

    font-family: var(--cinzel);

    font-size: 30px;

    color: white;

}


.hero-meta span {

    color: #555;

    font-family: var(--orbitron);

    font-size: 7px;

    letter-spacing: 2px;

}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    width: 45%;

    height: 650px;

    position: relative;

    display: grid;

    place-items: center;

}


.hero-logo {

    width: 330px;

    height: 330px;

    position: relative;

    z-index: 5;

    display: grid;

    place-items: center;

}


.hero-logo img {

    width: 240px;

    height: 240px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 30px
            rgba(255,0,30,.45)
        );

    animation:
        demonFloat 5s ease-in-out infinite;

}


@keyframes demonFloat {

    50% {

        transform:
            translateY(-15px)
            scale(1.03);

    }

}


/* =====================================================
   DEMON EYE
===================================================== */

.demon-eye {

    position: absolute;

    width: 300px;

    height: 150px;

    border-radius:
        50% 50% 50% 50%;

    border:
        2px solid
        rgba(255,0,40,.2);

    transform:
        rotate(-10deg);

    filter:
        drop-shadow(
            0 0 25px
            rgba(255,0,40,.4)
        );

    animation:
        eyePulse 3s infinite;

}


.demon-eye::before {

    content: "";

    position: absolute;

    inset: 20px 50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ff003c 0%,
            #650010 30%,
            transparent 70%
        );

}


.eye-core {

    position: absolute;

    width: 35px;

    height: 70px;

    background:
        var(--black);

    border-radius: 50%;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    z-index: 2;

}


@keyframes eyePulse {

    50% {

        transform:
            rotate(-10deg)
            scale(1.05);

        opacity: .7;

    }

}


/* =====================================================
   ORBITS
===================================================== */

.orbit {

    position: absolute;

    border:
        1px solid
        rgba(255,0,40,.12);

    border-radius: 50%;

}


.orbit-one {

    width: 500px;

    height: 500px;

    animation:
        orbit 20s linear infinite;

}


.orbit-two {

    width: 600px;

    height: 300px;

    transform:
        rotate(45deg);

    animation:
        orbit 14s linear infinite reverse;

}


.orbit-three {

    width: 420px;

    height: 420px;

    border-style: dashed;

    animation:
        orbit 30s linear infinite;

}


@keyframes orbit {

    to {
        transform:
            rotate(360deg);
    }

}


/* =====================================================
   FLOATING RUNES
===================================================== */

.floating-rune {

    position: absolute;

    color:
        rgba(255,0,40,.4);

    font-family:
        var(--cinzel);

    font-size: 25px;

}


.rune-one {

    top: 15%;

    right: 10%;

}


.rune-two {

    bottom: 20%;

    left: 10%;

}


.rune-three {

    top: 35%;

    left: 5%;

}


/* =====================================================
   HERO SCROLL
===================================================== */

.hero-scroll {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 3px;

    color: #444;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}


.hero-scroll span {

    width: 1px;

    height: 35px;

    background:
        linear-gradient(
            var(--red),
            transparent
        );

}


/* =====================================================
   DIVIDER
===================================================== */

.blood-divider {

    display: flex;

    align-items: center;

    gap: 20px;

    padding:
        0 7%;

}


.blood-divider span {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--red-dark)
        );

}


.blood-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            var(--red-dark),
            transparent
        );

}


.blood-divider i {

    color:
        var(--red);

    font-style: normal;

}


/* =====================================================
   GENERAL SECTION
===================================================== */

section {

    padding:
        150px 7%;

}


.section-heading > span {

    font-family:
        var(--orbitron);

    color:
        var(--red-bright);

    font-size: 8px;

    letter-spacing: 4px;

}


.section-heading h2 {

    margin-top: 15px;

    font-family:
        var(--cinzel);

    font-size:
        clamp(40px, 6vw, 75px);

    line-height: 1;

    font-weight: 800;

}


.section-heading h2 em {

    color:
        var(--red-bright);

    font-style: normal;

}


.section-heading.centered {

    text-align: center;

}


.section-heading.centered p {

    color: #555;

    font-size: 12px;

    margin-top: 20px;

}


/* =====================================================
   LORE
===================================================== */

.lore-grid {

    margin-top: 80px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.lore-visual {

    height: 500px;

    position: relative;

    display: grid;

    place-items: center;

}


.lore-circle {

    width: 350px;

    height: 350px;

    border:
        1px solid
        rgba(255,0,40,.2);

    border-radius: 50%;

    display: grid;

    place-items: center;

    box-shadow:
        0 0 100px
        rgba(255,0,40,.05);

}


.lore-circle::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    border:
        1px dashed
        rgba(255,0,40,.2);

    border-radius: 50%;

}


.lore-circle img {

    width: 200px;

    height: 200px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 30px
            rgba(255,0,40,.4)
        );

}


.lore-rune {

    position: absolute;

    font-size: 180px;

    color:
        rgba(255,0,40,.04);

}


.lore-text {

    max-width: 600px;

}


.small-title {

    color:
        var(--red-bright);

    font-family:
        var(--orbitron);

    font-size: 8px;

    letter-spacing: 4px;

}


.lore-text p {

    color: #666;

    line-height: 2;

    font-size: 14px;

    margin-top: 30px;

}


.lore-text .large {

    color: white;

    font-family:
        var(--cinzel);

    font-size: 32px;

    line-height: 1.3;

}


.lore-text .large span {

    color:
        var(--red-bright);

}


.lore-text strong {

    color: white;

}


.lore-signature {

    margin-top: 45px;

    padding-left: 20px;

    border-left:
        2px solid
        var(--red);

}


.lore-signature span {

    display: block;

    font-family:
        var(--orbitron);

    color: #555;

    font-size: 8px;

    letter-spacing: 3px;

}


.lore-signature strong {

    font-family:
        var(--cinzel);

    color:
        var(--red-bright);

    letter-spacing: 3px;

}


/* =====================================================
   ROSTER
===================================================== */

.roster {

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(100,0,15,.04),
            transparent
        );

}


.roster-grid {

    max-width: 1500px;

    margin:
        80px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.demon-card {

    position: relative;

    background:
        linear-gradient(
            145deg,
            #101010,
            #050505
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    overflow: hidden;

    transition:
        transform .5s,
        border-color .5s,
        box-shadow .5s;

}


.demon-card:hover {

    border-color:
        rgba(255,0,40,.4);

    box-shadow:
        0 25px 80px
        rgba(0,0,0,.7),
        0 0 40px
        rgba(255,0,40,.05);

    transform:
        translateY(-8px);

}


.card-top {

    height: 45px;

    padding:
        0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid
        var(--border);

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 2px;

    color: #555;

}


.card-top > span:last-child {

    color:
        #00c853;

}


.classified-text {

    color:
        var(--red-bright) !important;

}


/* =====================================================
   PLAYER PHOTO
===================================================== */

.player-photo {

    height: 350px;

    position: relative;

    overflow: hidden;

    background: #080808;

}


.player-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* geser fokus foto ke bawah */
    object-position: center 18%;

    transition:
        transform .8s,
        filter .8s;

    filter:
        grayscale(25%)
        contrast(1.15);
}


.demon-card:hover
.player-photo img {

    transform:
        scale(1.08);

    filter:
        grayscale(0%)
        contrast(1.2);

}


.photo-vignette {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 40%,
            #050505 100%
        );

}


.photo-red {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,0,30,.15),
            transparent 50%
        );

    mix-blend-mode:
        screen;

}


.scan {

    position: absolute;

    left: 0;

    right: 0;

    height: 1px;

    background:
        rgba(255,0,40,.6);

    box-shadow:
        0 0 15px
        rgba(255,0,40,.8);

    animation:
        scanMove 4s linear infinite;

}


@keyframes scanMove {

    from {
        top: 0;
    }

    to {
        top: 100%;
    }

}


.card-number {

    position: absolute;

    right: 20px;

    bottom: 10px;

    font-family:
        var(--cinzel);

    font-size: 70px;

    font-weight: 900;

    color:
        rgba(255,255,255,.07);

}


/* =====================================================
   PLAYER DATA
===================================================== */

.player-data {

    padding: 25px;

}


.role {

    color:
        var(--red-bright);

    font-family:
        var(--orbitron);

    font-size: 8px;

    letter-spacing: 3px;

}


.player-data h3 {

    font-family:
        var(--cinzel);

    font-size: 40px;

    margin-top: 5px;

    font-weight: 900;

}


.player-data > p {

    color: #555;

    font-size: 10px;

    margin-top: 3px;

}


.data-row {

    display: flex;

    gap: 15px;

    margin-top: 20px;

    padding-top: 15px;

    border-top:
        1px solid
        var(--border);

    color: #666;

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 1px;

}


/* =====================================================
   STATS
===================================================== */

.stats {

    margin-top: 20px;

}


.stats > div {

    margin-top: 10px;

}


.stats span {

    display: block;

    color: #444;

    font-family:
        var(--orbitron);

    font-size: 7px;

    margin-bottom: 5px;

}


.stat-bar {

    height: 3px;

    background:
        #1b1b1b;

}


.stat-bar i {

    display: block;

    height: 100%;

    background:
        var(--red-bright);

    box-shadow:
        0 0 8px
        rgba(255,0,40,.5);

}


/* =====================================================
   CARD FOOTER
===================================================== */

.card-footer {

    padding:
        15px 25px;

    border-top:
        1px solid
        var(--border);

    display: flex;

    justify-content: space-between;

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 2px;

    color: #444;

}


.card-footer strong {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #00c853;

}


.card-footer strong i {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        #00c853;

    box-shadow:
        0 0 8px
        #00c853;

}


.red-status {

    color:
        var(--red-bright) !important;

}


.red-status i {

    background:
        var(--red-bright) !important;

    box-shadow:
        0 0 8px
        var(--red-bright) !important;

}


/* =====================================================
   SECRET PLAYER
===================================================== */

.secret-photo img {

    filter:
        grayscale(100%)
        brightness(.12)
        blur(8px);

    transform:
        scale(1.08);

}


.secret-dark {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle,
            rgba(100,0,20,.15),
            #020202 80%
        );

}


.secret-lines {

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 5px,
            rgba(255,0,40,.06) 6px
        );

}


.classified-box {

    position: absolute;

    left: 20px;

    top: 20px;

    padding: 8px 12px;

    border:
        1px solid
        rgba(255,0,40,.4);

    background:
        rgba(0,0,0,.7);

}


.classified-box span {

    display: block;

    font-family:
        var(--orbitron);

    color: #555;

    font-size: 6px;

    letter-spacing: 2px;

}


.classified-box strong {

    font-family:
        var(--orbitron);

    color:
        var(--red-bright);

    font-size: 8px;

    letter-spacing: 2px;

}


.question {

    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    z-index: 5;

    font-family:
        var(--cinzel);

    font-size: 130px;

    font-weight: 900;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,0,40,.7);

    text-shadow:
        0 0 40px
        rgba(255,0,40,.3);

    animation:
        questionGlitch 2s infinite;

}


@keyframes questionGlitch {

    0%,90%,100% {

        transform:
            translate(0);

    }

    92% {

        transform:
            translate(-5px,2px);

    }

    95% {

        transform:
            translate(5px,-2px);

    }

}


.classified-bar {

    margin-top: 20px;

}


.classified-bar span {

    display: block;

    color: #444;

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 2px;

}


.classified-bar div {

    margin-top: 8px;

    color:
        var(--red-dark);

    letter-spacing: 5px;

}


/* =====================================================
   REVEALED
===================================================== */

.secret-card.revealed
.secret-photo img {

    filter:
        grayscale(0%)
        brightness(1)
        blur(0);

    transform:
        scale(1);

}


.secret-card.revealed
.question {

    opacity: 0;

    transform:
        scale(2);

}


.secret-card.revealed
.secret-dark {

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0,0,0,.8)
        );

}


.secret-card.revealed
.classified-box {

    border-color:
        #00c853;

}


.secret-card.revealed
.classified-box strong {

    color:
        #00c853;

}


/* =====================================================
   REVEAL AREA
===================================================== */

.reveal-area {

    text-align: center;

    margin-top: 70px;

}


.reveal-warning {

    color: #444;

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.reveal-warning span {

    color:
        var(--red-bright);

}


.reveal-button {

    position: relative;

    padding:
        20px 35px;

    border:
        1px solid
        var(--red);

    background:
        rgba(255,0,40,.03);

    color: white;

    cursor: pointer;

    font-family:
        var(--orbitron);

    font-size: 9px;

    letter-spacing: 3px;

    transition: .4s;

    overflow: hidden;

}


.reveal-button::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background:
        var(--red);

    transition: .4s;

    z-index: -1;

}


.reveal-button:hover::before {

    left: 0;

}


.reveal-button:hover {

    box-shadow:
        0 0 40px
        rgba(255,0,40,.3);

}


.button-icon {

    margin-right: 15px;

    color:
        var(--red-bright);

}


.reveal-area > p {

    color: #444;

    font-size: 9px;

    margin-top: 15px;

}


/* =====================================================
   MANIFESTO
===================================================== */

.manifesto {

    min-height: 600px;

    position: relative;

    display: grid;

    place-items: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #250009,
            #030303 65%
        );

}


.manifesto::before {

    content: "⛧";

    position: absolute;

    font-size: 500px;

    color:
        rgba(255,0,40,.025);

}


.manifesto-content {

    position: relative;

    z-index: 2;

}


.manifesto-content > span {

    color:
        var(--red-bright);

    font-family:
        var(--orbitron);

    font-size: 8px;

    letter-spacing: 4px;

}


.manifesto h2 {

    font-family:
        var(--cinzel);

    font-size:
        clamp(60px, 10vw, 140px);

    margin-top: 20px;

    line-height: .9;

}


.manifesto h2 em {

    display: block;

    color:
        var(--red-bright);

    font-style: normal;

}


.manifesto p {

    max-width: 600px;

    margin:
        35px auto 0;

    color: #555;

    font-family:
        var(--cinzel);

    font-style: italic;

    line-height: 1.8;

}


/* =====================================================
   SOCIAL
===================================================== */

.social-grid {

    max-width: 1200px;

    margin:
        70px auto 0;

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;

}


.social-card {

    min-height: 130px;

    padding: 30px;

    border:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,.015);

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    transition: .3s;

}


.social-card:hover {

    border-color:
        rgba(255,0,40,.4);

    background:
        rgba(255,0,40,.03);

}


.social-card span {

    color: #444;

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 3px;

}


.social-card strong {

    margin-top: 8px;

    font-family:
        var(--cinzel);

    font-size: 20px;

}


.social-card b {

    position: absolute;

    right: 30px;

    color:
        var(--red-bright);

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    min-height: 120px;

    padding:
        30px 7%;

    border-top:
        1px solid
        var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-brand img {

    width: 40px;

    height: 40px;

    object-fit: contain;

}


.footer-brand strong {

    display: block;

    font-family:
        var(--orbitron);

    font-size: 11px;

    letter-spacing: 2px;

}


.footer-brand span {

    display: block;

    color:
        var(--red-bright);

    font-size: 7px;

    letter-spacing: 3px;

}


.footer-center {

    display: flex;

    gap: 8px;

    font-family:
        var(--orbitron);

    font-size: 7px;

    color: #444;

}


.footer-center strong {

    color:
        var(--red-bright);

}


footer > p {

    color: #333;

    font-family:
        var(--orbitron);

    font-size: 7px;

}


/* =====================================================
   MODAL
===================================================== */

.reveal-modal {

    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,.94);

    backdrop-filter:
        blur(15px);

    z-index: 9000;

    display: grid;

    place-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .5s;

}


.reveal-modal.show {

    opacity: 1;

    visibility: visible;

}


.modal-content {

    text-align: center;

    padding: 60px;

    border:
        1px solid
        rgba(255,0,40,.3);

    background:
        radial-gradient(
            circle,
            #170307,
            #050505 70%
        );

    max-width: 600px;

    position: relative;

}


.modal-close {

    position: absolute;

    right: 20px;

    top: 15px;

    border: 0;

    background: none;

    color: #555;

    font-size: 30px;

    cursor: pointer;

}


.modal-kicker {

    font-family:
        var(--orbitron);

    color:
        var(--red-bright);

    font-size: 8px;

    letter-spacing: 3px;

}


.modal-content h2 {

    font-family:
        var(--cinzel);

    font-size: 55px;

    line-height: 1;

    margin-top: 20px;

}


.modal-content h2 em {

    color:
        var(--red-bright);

    font-style: normal;

}


.modal-content p {

    color: #555;

    margin-top: 20px;

    font-size: 12px;

}


.modal-enter {

    margin-top: 30px;

    padding:
        15px 25px;

    background:
        var(--red);

    border: 0;

    color: white;

    cursor: pointer;

    font-family:
        var(--orbitron);

    font-size: 8px;

    letter-spacing: 2px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

    .hero {

        padding-left: 5%;

        padding-right: 5%;

    }


    .hero-visual {

        transform:
            scale(.8);

    }


    .roster-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:800px) {

    .navbar nav,
    .nav-right {

        display: none;

    }


    .mobile-menu {

        display: block;

    }


    .hero {

        padding-top: 130px;

        flex-direction: column;

        text-align: center;

    }


    .hero-content {

        width: 100%;

    }


    .hero-kicker {

        justify-content: center;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-meta {

        justify-content: center;

    }


    .hero-visual {

        width: 100%;

        height: 450px;

        transform:
            scale(.65);

        margin-top: -40px;

    }


    .lore-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .lore-visual {

        height: 350px;

    }


    .roster-grid {

        grid-template-columns:
            1fr;

        max-width: 500px;

    }


    .social-grid {

        grid-template-columns:
            1fr;

    }


    footer {

        flex-direction: column;

        gap: 25px;

        text-align: center;

    }


    .footer-center {

        flex-wrap: wrap;

        justify-content: center;

    }

}


@media(max-width:500px) {

    section {

        padding:
            100px 5%;

    }


    .hero h1 {

        letter-spacing: -3px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-meta {

        gap: 25px;

    }


    .hero-meta strong {

        font-size: 24px;

    }


    .modal-content {

        margin: 20px;

        padding: 40px 25px;

    }


    .modal-content h2 {

        font-size: 38px;

    }

}

/* =====================================================
   PRELOADER FIX
===================================================== */

.preloader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: #020202;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    z-index: 99999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* =====================================================
   DEMONIA BLACKLIST POPUP
===================================================== */


/* =====================================================
   POPUP ROOT
===================================================== */

.wanted-popup {

    position: fixed;

    inset: 0;

    z-index: 9998;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .5s ease,
        visibility .5s ease;

}


/* OPEN */

.wanted-popup.show {

    opacity: 1;

    visibility: visible;

}


/* =====================================================
   BACKDROP
===================================================== */

.wanted-backdrop {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at center,
            rgba(80,0,15,.35),
            rgba(0,0,0,.97) 70%
        );

    backdrop-filter:
        blur(15px);

}


/* RED AMBIENT LIGHT */

.wanted-backdrop::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        rgba(160,0,25,.12);

    filter:
        blur(100px);

}


/* =====================================================
   POPUP CONTAINER
===================================================== */

.wanted-container {

    position: relative;

    width: min(
        1050px,
        100%
    );

    background:

        linear-gradient(
            145deg,
            #111,
            #050505
        );

    border:
        1px solid
        rgba(255,0,40,.35);

    box-shadow:

        0 40px 120px
        rgba(0,0,0,.9),

        0 0 80px
        rgba(255,0,40,.08);

    transform:
        translateY(30px)
        scale(.96);

    opacity: 0;

    transition:
        transform .7s cubic-bezier(.16,1,.3,1),
        opacity .6s ease;

    overflow: hidden;

}


/* POPUP OPEN */

.wanted-popup.show
.wanted-container {

    transform:
        translateY(0)
        scale(1);

    opacity: 1;

}


/* =====================================================
   TOP WARNING
===================================================== */

.wanted-warning {

    min-height: 70px;

    padding:
        15px 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,0,30,.025);

    font-family:
        var(--orbitron);

}


.warning-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--red-bright);

    color:
        var(--red-bright);

    font-size: 18px;

    animation:
        warningPulse 1.5s infinite;

}


@keyframes warningPulse {

    50% {

        box-shadow:
            0 0 25px
            rgba(255,0,40,.35);

        background:
            rgba(255,0,40,.08);

    }

}


.warning-small {

    display: block;

    color: #444;

    font-size: 6px;

    letter-spacing: 3px;

    margin-bottom: 5px;

}


.warning-code {

    margin-left: auto;

    color:
        #444;

    font-size: 7px;

    letter-spacing: 2px;

}


.wanted-warning strong {

    display: block;

    color:
        var(--red-bright);

    font-size: 9px;

    letter-spacing: 2px;

}


/* =====================================================
   MAIN CONTENT
===================================================== */

.wanted-content {

    display: grid;

    grid-template-columns:
        43% 57%;

    min-height: 500px;

}


/* =====================================================
   PHOTO
===================================================== */

.wanted-photo-wrapper {

    padding: 25px;

    border-right:
        1px solid
        rgba(255,255,255,.06);

}


.wanted-photo {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 450px;

    overflow: hidden;

    background: #030303;

}


/* PHOTO */

.wanted-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    filter:

        grayscale(35%)

        contrast(1.2)

        brightness(.72);

    transform:
        scale(1.03);

    transition: 1s;

}


.wanted-popup.show
.wanted-photo img {

    animation:
        photoReveal 1.2s ease forwards;

}


@keyframes photoReveal {

    from {

        transform:
            scale(1.15);

        filter:
            grayscale(100%)
            contrast(1.4)
            brightness(.25);

    }

    to {

        transform:
            scale(1.03);

        filter:
            grayscale(35%)
            contrast(1.2)
            brightness(.72);

    }

}


/* =====================================================
   PHOTO OVERLAY
===================================================== */

.wanted-photo-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            rgba(255,0,40,.22),
            transparent 40%
        ),

        linear-gradient(
            to bottom,
            transparent 40%,
            rgba(0,0,0,.9)
        );

    pointer-events: none;

}


/* =====================================================
   SCANLINE
===================================================== */

.wanted-scan {

    position: absolute;

    left: 0;

    right: 0;

    top: 0;

    height: 2px;

    background:
        var(--red-bright);

    box-shadow:

        0 0 15px
        var(--red-bright),

        0 0 35px
        var(--red-bright);

    opacity: .6;

    animation:
        wantedScan 3s linear infinite;

}


@keyframes wantedScan {

    from {
        top: 0%;
    }

    to {
        top: 100%;
    }

}


/* =====================================================
   WANTED STAMP
===================================================== */

.wanted-stamp {

    position: absolute;

    top: 25px;

    right: 20px;

    padding:
        10px 18px;

    border:
        2px solid
        var(--red-bright);

    color:
        var(--red-bright);

    font-family:
        var(--orbitron);

    font-weight: 900;

    font-size: 17px;

    letter-spacing: 4px;

    transform:
        rotate(-8deg);

    text-shadow:
        0 0 15px
        rgba(255,0,40,.5);

    box-shadow:
        inset 0 0 15px
        rgba(255,0,40,.08),

        0 0 15px
        rgba(255,0,40,.1);

}


/* =====================================================
   THREAT LABEL
===================================================== */

.threat-label {

    position: absolute;

    bottom: 20px;

    left: 20px;

    right: 20px;

    z-index: 3;

}


.threat-label span {

    display: block;

    font-family:
        var(--orbitron);

    color:
        #555;

    font-size: 6px;

    letter-spacing: 3px;

}


.threat-label strong {

    display: block;

    margin-top: 5px;

    color:
        var(--red-bright);

    font-size: 10px;

    letter-spacing: 5px;

}


/* =====================================================
   WANTED INFO
===================================================== */

.wanted-info {

    padding:
        45px 45px 30px;

}


.wanted-kicker {

    color:
        var(--red-bright);

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 4px;

}


.wanted-info h2 {

    margin-top: 10px;

    font-family:
        var(--cinzel);

    font-size:
        clamp(50px,6vw,75px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -2px;

    color: white;

    text-shadow:
        0 0 40px
        rgba(255,0,40,.12);

}


.wanted-alias {

    margin-top: 12px;

    font-family:
        var(--cinzel);

    font-style: italic;

    color:
        #777;

    font-size: 12px;

}


.wanted-line {

    width: 100%;

    height: 1px;

    margin:
        25px 0;

    background:
        linear-gradient(
            90deg,
            var(--red),
            transparent
        );

}


/* =====================================================
   DATA
===================================================== */

.wanted-data {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;

}


.wanted-data-item {

    padding:
        15px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.05);

}


.wanted-data-item span {

    display: block;

    color: #444;

    font-family:
        var(--orbitron);

    font-size: 6px;

    letter-spacing: 2px;

}


.wanted-data-item strong {

    display: block;

    margin-top: 8px;

    color:
        #aaa;

    font-family:
        var(--orbitron);

    font-size: 8px;

    letter-spacing: 1px;

}


.wanted-data-item .danger {

    color:
        var(--red-bright);

    text-shadow:
        0 0 10px
        rgba(255,0,40,.3);

}


/* =====================================================
   WARNING MESSAGE
===================================================== */

.wanted-message {

    display: flex;

    gap: 12px;

    margin-top: 20px;

    padding:
        15px;

    border-left:
        2px solid
        var(--red);

    background:
        rgba(255,0,40,.025);

}


.wanted-message > span {

    color:
        var(--red-bright);

    font-size: 15px;

}


.wanted-message p {

    color:
        #555;

    font-family:
        var(--orbitron);

    font-size: 7px;

    line-height: 1.8;

    letter-spacing: 1px;

}


.wanted-message strong {

    color:
        var(--red-bright);

}


/* =====================================================
   STATUS
===================================================== */

.wanted-status {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    font-family:
        var(--orbitron);

    font-size: 7px;

    color: #444;

    letter-spacing: 2px;

}


.status-dot {

    width: 6px;

    height: 6px;

    background:
        var(--red-bright);

    border-radius: 50%;

    box-shadow:
        0 0 12px
        var(--red-bright);

    animation:
        statusPulse 1s infinite;

}


@keyframes statusPulse {

    50% {
        opacity: .3;
    }

}


.wanted-status strong {

    color:
        var(--red-bright);

}


/* =====================================================
   BUTTONS
===================================================== */

.wanted-actions {

    display: flex;

    gap: 10px;

    margin-top: 25px;

}


.wanted-actions button {

    cursor: pointer;

    font-family:
        var(--orbitron);

    font-size: 7px;

    letter-spacing: 2px;

    transition: .3s;

}


.wanted-btn-primary {

    border: 0;

    background:
        var(--red);

    color: white;

    padding:
        16px 20px;

}


.wanted-btn-primary span {

    margin-left: 20px;

}


.wanted-btn-primary:hover {

    background:
        var(--red-bright);

    box-shadow:
        0 0 30px
        rgba(255,0,40,.3);

}


.wanted-btn-secondary {

    border:
        1px solid
        #292929;

    background:
        transparent;

    color:
        #666;

    padding:
        16px 20px;

}


.wanted-btn-secondary:hover {

    color: white;

    border-color:
        var(--red);

}


/* =====================================================
   FOOTER
===================================================== */

.wanted-footer {

    height: 40px;

    padding:
        0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    color:
        #333;

    font-family:
        var(--orbitron);

    font-size: 5px;

    letter-spacing: 2px;

}


/* =====================================================
   GLITCH EFFECT
===================================================== */

.wanted-container::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 4px,
            rgba(255,0,40,.015) 5px
        );

    mix-blend-mode:
        screen;

}


/* =====================================================
   CLOSE ANIMATION
===================================================== */

.wanted-popup.closing {

    opacity: 0;

}


.wanted-popup.closing
.wanted-container {

    transform:
        scale(.95)
        translateY(20px);

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:800px) {

    .wanted-popup {

        padding: 15px;

        overflow-y: auto;

        align-items: flex-start;

        padding-top: 30px;

        padding-bottom: 30px;

    }


    .wanted-content {

        grid-template-columns:
            1fr;

    }


    .wanted-photo-wrapper {

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.06);

        padding: 15px;

    }


    .wanted-photo {

        min-height: 350px;

        height: 350px;

    }


    .wanted-info {

        padding:
            30px 20px;

    }


    .wanted-info h2 {

        font-size: 55px;

    }


    .wanted-warning {

        padding:
            12px 15px;

    }


    .warning-code {

        display: none;

    }


    .wanted-footer {

        display: none;

    }

}


@media(max-width:500px) {

    .wanted-photo {

        min-height: 280px;

        height: 280px;

    }


    .wanted-data {

        grid-template-columns:
            1fr;

    }


    .wanted-actions {

        flex-direction:
            column;

    }


    .wanted-actions button {

        width: 100%;

    }


    .wanted-stamp {

        font-size: 13px;

        padding:
            8px 12px;

    }

}