/* ==========================================================
   THE 8 — OFFICIAL WEBSITE
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto+Condensed:wght@300;400;600;700;900&display=swap');


:root {
    --black: #050505;
    --black2: #090909;
    --card: #0e0e0e;

    --white: #eeeeee;
    --grey: #999999;

    --red: #d40d18;

    --title: "Anton", Impact, sans-serif;
    --text: "Roboto Condensed", Arial, sans-serif;

    --max: 1280px;
}


/* ==========================================================
   RESET
   ========================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}


/* ==========================================================
   CRT
   ========================================================== */

.crt {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .4;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,.018) 0px,
            rgba(255,255,255,.018) 1px,
            rgba(0,0,0,.04) 2px,
            rgba(0,0,0,.04) 4px
        );
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;

    box-shadow:
        inset 0 0 130px rgba(0,0,0,.65);
}


/* ==========================================================
   NAV
   ========================================================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(5,5,5,.94);
    border-bottom: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);
}

.navbar {
    max-width: var(--max);
    min-height: 74px;
    margin: auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--title);
    font-size: 2rem;
    letter-spacing: 3px;
}

.logo span,
.footer-logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: .2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-newsletter {
    padding: 9px 14px;
    border: 1px solid var(--red);
}

.nav-newsletter:hover {
    color: white !important;
    background: var(--red);
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 8% 80px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(180,0,10,.22),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            #050505 0%,
            #090909 55%,
            #130507 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;

    width: 750px;
    max-width: 100%;
}

.hero-eight {
    position: absolute;
    right: 2%;
    top: 50%;

    transform: translateY(-50%);

    font-family: var(--title);
    font-size: min(75vw,850px);
    line-height: .7;

    color: rgba(190,0,15,.10);
}

.eyebrow {
    color: var(--red);

    font-size: .8rem;
    font-weight: 900;
    letter-spacing: 4px;

    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--title);
    font-size: clamp(6rem,15vw,12rem);
    line-height: .75;
    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--red);
}

.tagline {
    margin-top: 45px;

    font-family: var(--title);
    font-size: clamp(2rem,5vw,4rem);
    line-height: 1;
}

.intro {
    max-width: 600px;
    margin-top: 25px;

    color: #aaa;
    font-size: 1.15rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 35px;
}

.button {
    display: inline-block;

    padding: 15px 24px;
    border: 1px solid;

    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 1.5px;

    transition: .2s;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--red);
    border-color: var(--red);
}

.button-secondary {
    border-color: #555;
}

.button-secondary:hover {
    border-color: white;
    background: #111;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;

    color: var(--red);

    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,100% {
        transform: translate(-50%,0);
    }

    50% {
        transform: translate(-50%,8px);
    }
}


/* ==========================================================
   SECTIONS
   ========================================================== */

.section {
    max-width: var(--max);
    margin: auto;
    padding: 110px 28px;
}

.full-section {
    max-width: none;
    margin: 0;
}

.content-width {
    max-width: var(--max);
    margin: auto;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 20px;
}

.section-number {
    color: var(--red);

    font-family: var(--title);
    font-size: 1.2rem;
}

.section-heading h2 {
    font-family: var(--title);
    font-size: clamp(3rem,6vw,5rem);
    line-height: 1;
}

.section-intro {
    max-width: 750px;
    margin-bottom: 55px;

    color: #aaa;
    font-size: 1.15rem;
}


/* ==========================================================
   CONCEPT
   ========================================================== */

.concept-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    margin-top: 50px;
}

.concept-card {
    min-height: 300px;
    padding: 30px;

    border: 1px solid #222;
    background: #0b0b0b;
}

.concept-card strong {
    display: block;

    color: #292929;

    font-family: var(--title);
    font-size: 6rem;
    line-height: 1;
}

.concept-card h3 {
    margin: 25px 0 10px;

    font-family: var(--title);
    font-size: 2rem;
}

.concept-card p {
    color: #888;
}

.concept-final {
    background:
        linear-gradient(
            145deg,
            #0c0c0c,
            rgba(150,0,10,.2)
        );
}

.concept-final strong,
.concept-final h3 {
    color: var(--red);
}


/* ==========================================================
   STORY
   ========================================================== */

.story-section {
    padding: 110px 28px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(120,0,10,.12),
            transparent 35%
        ),
        #090909;

    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
}

.story {
    max-width: 850px;
    margin-top: 55px;
}

.story h3 {
    margin-bottom: 40px;

    font-family: var(--title);
    font-size: clamp(2.5rem,6vw,4.5rem);
    line-height: 1;
}

.story p {
    margin-bottom: 18px;

    color: #aaa;
    font-size: 1.08rem;
}

.gang-list {
    color: #ddd !important;

    font-weight: 900;
    letter-spacing: 1px;
}

.story blockquote {
    margin: 50px 0;
    padding: 30px 35px;

    border-left: 5px solid var(--red);
    background: rgba(255,255,255,.025);

    font-family: var(--title);
    font-size: clamp(2rem,5vw,3.5rem);
    line-height: 1.1;
}

.story-question {
    margin-top: 50px;

    color: var(--red);

    font-family: var(--title);
    font-size: clamp(3rem,7vw,6rem);
    line-height: 1;
}


/* ==========================================================
   FIGHTERS
   ========================================================== */

.fighters-grid {
    margin-top: 60px;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fighter-card {
    --gang: var(--red);
    --gang-soft: rgba(210,10,20,.15);

    position: relative;

    display: grid;
    grid-template-columns: 42% 58%;

    /* plus compact que l'ancienne version 570px */
    min-height: 460px;

    overflow: hidden;

    background: #0d0d0d;
    border-top: 1px solid var(--gang);
}

.fighter-card.reverse {
    grid-template-columns: 58% 42%;
}

.fighter-card.reverse .fighter-image {
    order: 2;
}

.fighter-card.reverse .fighter-content {
    order: 1;
}

.fighter-card::before {
    content: "";

    position: absolute;
    z-index: 8;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background: var(--gang);

    box-shadow:
        0 0 22px var(--gang);
}


/* ----------------------------------------------------------
   GANG COLORS
   ---------------------------------------------------------- */

.gang-vipers {
    --gang: #c13bf1;
    --gang-soft: rgba(193,59,241,.18);
}

.gang-iron {
    --gang: #a87955;
    --gang-soft: rgba(168,121,85,.17);
}

.gang-redmeat {
    --gang: #cf111b;
    --gang-soft: rgba(207,17,27,.20);
}

.gang-syndicate {
    --gang: #c4a253;
    --gang-soft: rgba(196,162,83,.17);
}

.gang-blackout {
    --gang: #e7d728;
    --gang-soft: rgba(231,215,40,.15);
}

.gang-demolition {
    --gang: #e3791d;
    --gang-soft: rgba(227,121,29,.17);
}

.gang-riders {
    --gang: #a60d18;
    --gang-soft: rgba(166,13,24,.2);
}

.gang-order {
    --gang: #89c6ba;
    --gang-soft: rgba(137,198,186,.15);
}


/* ----------------------------------------------------------
   FIGHTER IMAGE
   ---------------------------------------------------------- */

.fighter-image {
    position: relative;

    height: 460px;
    min-height: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            var(--gang-soft),
            #070707 68%
        );
}


/* VRAIES PHOTOS DES PERSONNAGES */

.fighter-photo {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
       On privilégie le haut du portrait.
       Cela évite de couper le visage tout en gardant
       une présentation compacte.
    */
    object-position: center 18%;

    display: block;

    z-index: 0;
}


/* Overlay cinématique sur la photo */

.fighter-image::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.70) 0%,
            rgba(0,0,0,.20) 42%,
            rgba(0,0,0,.03) 75%
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.08),
            transparent 55%,
            rgba(0,0,0,.20)
        );
}


/* Numéro */

.fighter-number {
    position: absolute;

    z-index: 5;

    top: 15px;
    left: 25px;

    color: rgba(255,255,255,.15);

    font-family: var(--title);
    font-size: 4rem;

    line-height: 1;
}


/* Nom du gang en watermark */

.gang-watermark {
    position: absolute;

    z-index: 4;

    top: 60px;
    left: 50%;

    transform:
        translateX(-50%)
        rotate(-5deg);

    color: var(--gang);

    opacity: .12;

    white-space: nowrap;

    font-family: var(--title);
    font-size: clamp(2.5rem,5vw,5rem);
    letter-spacing: 3px;
}


/* Ancien placeholder :
   conservé au cas où une photo manque */

.image-placeholder {
    position: relative;

    z-index: 3;

    margin-bottom: 35px;

    color: rgba(255,255,255,.13);

    font-family: var(--title);
    font-size: clamp(3rem,7vw,7rem);
    line-height: 1;

    text-align: center;
}


/* VIPERS */

.gang-vipers .fighter-image {
    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 35px,
            rgba(230,40,255,.035) 36px,
            transparent 38px
        ),
        radial-gradient(
            circle,
            rgba(180,20,210,.40),
            #080508 68%
        );
}


/* IRON FISTS */

.gang-iron .fighter-image {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,.025) 0,
            rgba(255,255,255,.025) 2px,
            transparent 2px,
            transparent 18px
        ),
        radial-gradient(
            circle,
            rgba(120,80,50,.42),
            #080706 70%
        );
}


/* RED MEAT */

.gang-redmeat .fighter-image {
    background:
        linear-gradient(
            90deg,
            transparent 49%,
            rgba(120,0,0,.15) 50%,
            transparent 51%
        ),
        linear-gradient(
            transparent 49%,
            rgba(120,0,0,.12) 50%,
            transparent 51%
        ),
        radial-gradient(
            circle,
            rgba(150,0,10,.4),
            #080606 70%
        );

    background-size:
        70px 70px,
        70px 70px,
        auto;
}


/* SYNDICATE */

.gang-syndicate .fighter-image {
    background:
        linear-gradient(
            135deg,
            rgba(200,160,60,.12),
            transparent 40%
        ),
        radial-gradient(
            circle,
            rgba(90,75,45,.45),
            #060606 70%
        );
}


/* BLACKOUT */

.gang-blackout .fighter-image {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(240,220,30,.07),
            rgba(240,220,30,.07) 10px,
            transparent 10px,
            transparent 22px
        ),
        radial-gradient(
            circle,
            rgba(170,160,20,.3),
            #050505 68%
        );
}


/* DEMOLITION */

.gang-demolition .fighter-image {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(230,120,20,.11) 0,
            rgba(230,120,20,.11) 15px,
            transparent 15px,
            transparent 32px
        ),
        radial-gradient(
            circle,
            rgba(130,70,20,.32),
            #080706 70%
        );
}


/* RIDERS */

.gang-riders .fighter-image {
    background:
        linear-gradient(
            150deg,
            transparent 45%,
            rgba(160,0,10,.18)
        ),
        radial-gradient(
            circle,
            #292929,
            #050505 70%
        );
}


/* ORDER */

.gang-order .fighter-image {
    background:
        linear-gradient(
            rgba(150,210,200,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(150,210,200,.035) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle,
            rgba(120,180,170,.25),
            #050909 70%
        );

    background-size:
        35px 35px,
        35px 35px,
        auto;
}


/* ----------------------------------------------------------
   FIGHTER CONTENT
   ---------------------------------------------------------- */

.fighter-content {
    position: relative;

    padding: 48px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        linear-gradient(
            120deg,
            var(--gang-soft),
            transparent 32%
        );
}

.gang-name {
    margin-bottom: 8px;

    color: var(--gang);

    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.fighter-content h3 {
    font-family: var(--title);

    font-size: clamp(3.2rem,6vw,5.5rem);

    line-height: .95;

    text-shadow:
        0 0 25px var(--gang-soft);
}

.fighter-role {
    margin: 12px 0 25px !important;

    color: var(--gang) !important;

    font-weight: 900;
    letter-spacing: 1px;
}

.fighter-content p {
    max-width: 600px;
    margin-bottom: 12px;

    color: #aaa;
}

.fighter-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 20px;
}

.fighter-stats span {
    padding: 7px 10px;

    border: 1px solid #333;

    color: #aaa;

    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.fighter-stats span:first-child {
    color: var(--gang);
    border-color: var(--gang);
}


/* ==========================================================
   ARENAS
   ========================================================== */

.arenas-section {
    padding: 110px 28px;

    background: #080808;

    border-top: 1px solid #191919;
    border-bottom: 1px solid #191919;
}

.arenas-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 3px;
}

.arena-card {
    --arena: var(--red);

    position: relative;

    min-height: 370px;
    padding: 45px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        radial-gradient(
            circle at 80% 20%,
            color-mix(in srgb, var(--arena) 18%, transparent),
            transparent 35%
        ),
        #0c0c0c;

    border-top:
        2px solid var(--arena);

    transition:
        transform .25s,
        background .25s;
}

.arena-card:hover {
    transform: translateY(-5px);
}

.arena-number {
    position: absolute;

    right: 25px;
    top: 15px;

    color: rgba(255,255,255,.06);

    font-family: var(--title);
    font-size: 6rem;
}

.arena-gang {
    color: var(--arena);

    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.arena-card h3 {
    max-width: 550px;

    margin: 10px 0 20px;

    font-family: var(--title);
    font-size: clamp(2rem,4vw,3.3rem);
    line-height: 1;
}

.arena-card p {
    max-width: 520px;

    color: #999;
}

.arena-vipers {
    --arena: #c13bf1;
}

.arena-iron {
    --arena: #a87955;
}

.arena-redmeat {
    --arena: #cf111b;
}

.arena-syndicate {
    --arena: #c4a253;
}

.arena-blackout {
    --arena: #e7d728;
}

.arena-demolition {
    --arena: #e3791d;
}

.arena-riders {
    --arena: #a60d18;
}

.arena-order {
    --arena: #89c6ba;
}


/* ==========================================================
   GAMEPLAY
   ========================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);

    margin-top: 45px;
}

.feature {
    min-height: 280px;
    padding: 28px;

    border: 1px solid #222;
    background: #0b0b0b;

    transition: .2s;
}

.feature:hover {
    transform: translateY(-5px);

    background: #111;
}

.feature > span {
    display: block;

    margin-bottom: 45px;

    color: #444;

    font-family: var(--title);
    font-size: 2rem;
}

.feature h3 {
    margin-bottom: 12px;

    font-family: var(--title);
    font-size: 2rem;
}

.feature p {
    color: #888;
    font-size: .92rem;
}

.danger-feature h3,
.executed-feature h3 {
    color: var(--red);
}

.executed-feature {
    background:
        linear-gradient(
            145deg,
            #0b0b0b,
            rgba(160,0,10,.18)
        );
}


/* ==========================================================
   PHYSICAL
   ========================================================== */

.physical-section {
    padding: 120px 28px;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(170,0,10,.25),
            transparent 28%
        ),
        #080808;
}

.physical-inner {
    max-width: var(--max);
    margin: auto;

    display: grid;
    grid-template-columns: 55% 45%;
}

.physical-content {
    max-width: 650px;
}

.physical-content h2 {
    margin: 10px 0 35px;

    font-family: var(--title);
    font-size: clamp(4rem,8vw,7rem);
    line-height: .88;
}

.physical-content > p {
    margin-bottom: 17px;

    color: #aaa;
}

.development-warning {
    margin: 35px 0;
    padding: 22px;

    border-left: 5px solid var(--red);

    background: rgba(180,0,10,.08);
}

.development-warning strong {
    color: var(--red);

    font-family: var(--title);
    font-size: 1.4rem;
}

.development-warning p {
    margin-top: 7px;

    color: #999;
}

.cartridge-mockup {
    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1000px;
}

.cartridge {
    position: relative;

    width: min(370px,70vw);
    height: min(490px,90vw);

    border: 4px solid #3b3b3b;
    border-radius: 20px 20px 55px 55px;

    background:
        linear-gradient(
            135deg,
            #333,
            #111 45%,
            #292929
        );

    box-shadow:
        30px 40px 70px rgba(0,0,0,.7);

    transform:
        rotateY(-12deg)
        rotateX(4deg)
        rotateZ(3deg);
}

.cartridge-lines {
    position: absolute;

    top: 30px;
    left: 8%;
    right: 8%;

    height: 7px;

    background: #090909;

    box-shadow:
        0 14px #090909,
        0 28px #090909;
}

.cartridge-label {
    position: absolute;

    top: 25%;
    left: 12%;
    right: 12%;

    height: 55%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 2px solid #555;

    background:
        radial-gradient(
            circle,
            rgba(180,0,10,.5),
            #070707 65%
        );

    font-family: var(--title);
    font-size: 5rem;
}

.cartridge-label span {
    color: var(--red);
}

.cartridge-label small {
    color: #777;

    font-family: var(--text);
    font-size: .7rem;
    letter-spacing: 4px;
}

.cartridge-label em {
    margin-top: 15px;

    color: #777;

    font-family: var(--text);
    font-size: .65rem;
    font-style: normal;
    letter-spacing: 2px;
}


/* ==========================================================
   NEWS
   ========================================================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 3px;

    margin-top: 50px;
}

.news-card {
    min-height: 320px;
    padding: 30px;

    border: 1px solid #1b1b1b;

    background: #0d0d0d;

    transition: .2s;
}

.news-card:hover {
    transform: translateY(-5px);

    background: #141414;
}

.news-card time {
    color: #555;

    font-size: .72rem;
    font-weight: 900;
}

.news-category {
    display: block;

    margin-top: 35px;

    color: var(--red);

    font-size: .68rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.news-card h3 {
    margin: 10px 0 18px;

    font-family: var(--title);
    font-size: 2rem;
    line-height: 1.05;
}

.news-card p {
    color: #888;
}


/* ==========================================================
   NEWSLETTER
   ========================================================== */

.newsletter-section {
    position: relative;

    padding: 130px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #050505,
            #260306
        );
}

.newsletter-section::after {
    content: "8";

    position: absolute;

    right: -30px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(255,0,20,.06);

    font-family: var(--title);
    font-size: 40rem;
    line-height: .7;
}

.newsletter-inner {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;
}

.newsletter-inner h2 {
    margin-bottom: 25px;

    font-family: var(--title);
    font-size: clamp(4rem,9vw,7rem);
    line-height: .87;
}

.newsletter-inner > p {
    max-width: 650px;

    color: #aaa;
}

#newsletter-form {
    margin-top: 40px;
}

#newsletter-form > label:first-child {
    display: block;

    margin-bottom: 8px;

    color: #aaa;

    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.newsletter-form-row {
    display: flex;

    max-width: 720px;
}

.newsletter-form-row input {
    flex: 1;
    min-width: 0;

    padding: 17px;

    border: 1px solid #444;

    background: #090909;
    color: white;

    outline: none;
}

.newsletter-form-row input:focus {
    border-color: var(--red);
}

.newsletter-form-row button {
    padding: 0 25px;

    border: 0;

    background: var(--red);
    color: white;

    font-weight: 900;
    letter-spacing: 1px;

    cursor: pointer;
}

.privacy-check {
    max-width: 720px;

    margin-top: 15px;

    display: flex;
    gap: 10px;

    color: #777;

    font-size: .75rem;
}

.privacy-check input {
    margin-top: 5px;
}

#newsletter-message {
    margin-top: 15px;

    color: var(--red);

    font-weight: 900;
}


/* ==========================================================
   FOOTER
   ========================================================== */

footer {
    padding: 70px 28px;

    text-align: center;

    background: #030303;

    border-top: 1px solid #171717;
}

.footer-logo {
    margin-bottom: 12px;

    font-family: var(--title);
    font-size: 3.5rem;
}

.footer-tagline {
    margin-bottom: 25px;

    color: var(--red) !important;

    font-weight: 900;
    letter-spacing: 2px;
}

footer p {
    margin-bottom: 7px;

    color: #777;
}

.copyright {
    margin-top: 30px;

    color: #555;

    font-size: .8rem;
}

.legal {
    max-width: 650px;

    margin: 15px auto 0;

    color: #444;

    font-size: .72rem;
}


/* ==========================================================
   REVEAL — utilisé par script.js
   ========================================================== */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .7s,
        transform .7s;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* ==========================================================
   BLACKOUT FLASH
   ========================================================== */

@keyframes electricPulse {
    0%,94%,100% {
        filter: none;
    }

    95% {
        filter: brightness(1.25);
    }

    97% {
        filter: brightness(.85);
    }

    99% {
        filter: brightness(1.1);
    }
}

.gang-blackout {
    animation:
        electricPulse 7s infinite;
}


/* ==========================================================
   SCROLLBAR
   ========================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

::selection {
    color: white;

    background: var(--red);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

    .concept-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .feature-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .feature:last-child {
        grid-column: span 2;
    }

    .fighter-card {
        grid-template-columns: 44% 56%;
    }

    .fighter-card.reverse {
        grid-template-columns: 56% 44%;
    }

    .fighter-content {
        padding: 40px 35px;
    }

    .physical-inner {
        grid-template-columns:
            55% 45%;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 850px) {

    .navbar {
        min-height: 65px;
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 65px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 20px 25px;

        background: rgba(5,5,5,.98);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 5px;

        border-bottom: 1px solid #171717;
    }

    .nav-newsletter {
        margin-top: 10px;

        text-align: center;
    }

    .hero {
        min-height: 92vh;

        padding: 110px 24px 70px;
    }

    .hero-eight {
        right: -15%;
    }

    .section,
    .story-section,
    .arenas-section {
        padding:
            80px 22px;
    }

    .fighter-card,
    .fighter-card.reverse {
        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .fighter-card.reverse .fighter-image,
    .fighter-card.reverse .fighter-content {
        order: initial;
    }

    .fighter-card::before {
        width: 100%;
        height: 3px;
    }

    .fighter-image {
        width: 100%;
        height: 400px;
        min-height: 400px;
    }

    .fighter-photo {
        object-position: center 15%;
    }

    .fighter-content {
        padding: 40px 25px 50px;
    }

    .arenas-grid {
        grid-template-columns: 1fr;
    }

    .arena-card {
        min-height: 300px;
        padding: 30px;
    }

    .physical-section {
        padding: 85px 22px;
    }

    .physical-inner {
        display: flex;
        flex-direction: column;

        gap: 70px;
    }

    .cartridge {
        width: 270px;
        height: 360px;
    }

    .cartridge-label {
        font-size: 3.5rem;
    }

    .news-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;

        text-align: center;
    }

    .concept-grid {
        display: block;
    }

    .concept-card {
        min-height: 230px;

        margin-bottom: 3px;
    }

    .feature-grid {
        display: block;
    }

    .feature {
        min-height: 220px;

        margin-bottom: 3px;
    }

    .fighter-image {
        height: 340px;
        min-height: 340px;
    }

    .fighter-photo {
        object-position: center 12%;
    }

    .fighter-number {
        font-size: 3rem;
    }

    .gang-watermark {
        top: 50px;
        font-size: 2.5rem;
    }

    .fighter-content h3 {
        font-size: 3.3rem;
    }

    .arena-card {
        min-height: 280px;
    }

    .news-grid {
        display: block;
    }

    .news-card {
        min-height: 270px;

        margin-bottom: 3px;
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-form-row button {
        margin-top: 7px;

        padding: 17px;
    }
}
.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
