:root {
    --blue: #2558A3;
    --blue-shadow: #0E213D;
    --red: #E63439;
    --red-shadow: #3D0E0F;
    --yellow: #E9AE05;
    --white: #FFFFFF;
    --gray-light: #E5E5E5;
    --gray-mid: #CCCCCC;
    --gray-dark: #333333;
    --gray-deep: #191919;
    --black: #000000;
    --header-height: 100px;
    --content-width: 1240px;
    --display-font: "Arial Black", "Arial Narrow", Impact, sans-serif;
    --body-font: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    --gradient: linear-gradient(90deg,rgba(37, 88, 163, 1) 0%, /*rgba(0, 0, 0, 1) 50%,*/ rgba(230, 52, 57, 1) 100%);
    --gradient-bg: linear-gradient(102deg,rgba(0, 0, 0, 0.9) 0%, rgba(17, 46, 90, 0.85) 25%, rgba(0, 6, 23, 0.9) 60%, rgba(61, 14, 15, 0.85) 100%);
    --gradient-bg2: linear-gradient(102deg,rgba(37, 88, 163, 0.6) 0%, rgba(28, 15, 15, 0.6) 63%, rgba(179, 0, 6, 0.6) 100%);
    --gradient-nav: linear-gradient(102deg,rgba(0, 0, 0, 0) 1%, rgba(37, 88, 163, 1) 2%, rgba(230, 52, 57, 1) 98%, rgba(0, 0, 0, 0) 99%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 14px);
    background: var(--black);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
}

body.nav-open,
body.lightbox-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--red);
    color: var(--white);
}

.container {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    z-index: 500;
    padding: 0.65rem 1rem;
    background: var(--white);
    color: var(--black);
}

.skip-link:focus {
    top: 1rem;
}

.section {
    position: relative;
    padding: 108px 0;
    scroll-margin-top: calc(var(--header-height) + 14px);
    overflow: hidden;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-bright {
    background-image: url("../img/background-bright.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--black);
}

.section-bright::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.76);
    content: "";
}

.section-bright-blue::before {
    background: linear-gradient(
        105deg,
        rgba(229, 229, 229, 0.94) 0%,
        rgba(229, 229, 229, 0.82) 52%,
        rgba(37, 88, 163, 0.18) 100%
    );
}

.section-bright-red::before {
    background: linear-gradient(
        105deg,
        rgba(229, 229, 229, 0.93) 0%,
        rgba(229, 229, 229, 0.82) 55%,
        rgba(230, 52, 57, 0.2) 100%
    );
}

.section-dark {
    background-image: url("../img/background-dark.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.section-dark::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.88),
        rgba(14, 33, 61, 0.76) 52%,
        rgba(61, 14, 15, 0.72)
    );
    content: "";
}

.section-black {
    background: linear-gradient(180deg, #05080d 0%, var(--black) 100%);
}

.section-black::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(37, 88, 163, 0.09),
        transparent 48%,
        rgba(230, 52, 57, 0.08)
    );
    content: "";
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--gray-mid);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-bright .eyebrow {
    color: var(--gray-dark);
}

.section-title {
    max-width: var(--content-width);
    margin: 0 0 2rem;
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 60px;
    font-style: italic;
    line-height: 0.95;
    text-transform: uppercase;
    
}

.section-title span {
    background: var(--gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    display: inline-block;
    padding-right: 0.2em;
    margin-right: -0.2em;
}

.subsection-title {
    max-width: var(--content-width);
    margin: 1rem 0;
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 30px;
    font-style: italic;
    line-height: 0.95;
    text-transform: uppercase;
}

.subsection-title span {
    background: var(--gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    display: inline-block;
    padding-right: 0.2em;
    margin-right: -0.2em;
}

.lead {
    max-width: 100%;
    margin-top: 0;
    color: var(--gray-light);
    font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.section-bright .lead {
    color: var(--gray-dark);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    background-image: var(--gradient-bg);
    backdrop-filter: blur(10px);
    z-index: 200 !important;
}

.site-header::after {
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 7px;
    z-index: 200;
    background: var(--gradient-bg2);
    box-shadow: 0 3px 3px 1px rgba(0,0,0,0.3);
    content: "";
    transform: skewX(-12deg);
}

.header-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    z-index: 200;
    transition: all 0.2s ease;
}

.brand:hover {
    transform: scale(0.98);
    transition: all 0.2s ease;
}

.brand img {
    width: auto;
    height: 70px;
    z-index: 200;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.4));
}

.nav {
    justify-self: end;
    z-index: 201;
}

.nav ul {
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 200;
}

.nav a {
    position: relative;
    display: flex;
    align-items:end;
    min-height: var(--header-height);
    color: var(--gray-mid);
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 18px;
    font-style: italic;
    text-transform: uppercase;
    padding-bottom: 10px;
    z-index: 200;
}

.nav a::after {
    position: absolute;
    right: 100%;
    bottom: 0px;
    left: 0;
    height: 7px;
    background: var(--gradient-nav);
    content: "";
    transition: right 0.25s ease;
    z-index: 205;
    transform: translateX(-5px);
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
    right: 0;
}

.lang {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 200;
    display: flex;
    gap: 10px;
    align-items: center;
    transform: skewX(-12deg);

}

.lang a {
    display: grid;
    width: 44px;
    height: 28px;
    opacity: 0.4;
    z-index: 200;
    border: 2px solid var(--gray-dark);
    transition: opacity 0.2s ease, transform 0.2s ease;
    place-items: center;
}

.lang a.active, 
.lang a:hover  {
    opacity: 1;
}

.lang img {
    z-index: 200;
    width: 100%;
    height: 100%;
}

.nav-toggle {
    display: none;
    justify-self: end;
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-dark);
    background-image: url(../img/ui/burger-open.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    transform: translateX(-8px) skewX(-12deg);
    cursor: pointer;
}

.nav-toggle.active {
    background-image: url(../img/ui/burger-close.png);
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    padding-top: var(--header-height);
    overflow: hidden;
    place-items: center;
    background: #02050a;
}

.hero-media {
    position: absolute;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.9) 100%),
        url("../img/keyvisual.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(14, 33, 61, 0.36),
        transparent 46%,
        rgba(61, 14, 15, 0.3)
    );
    content: "";
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(88vw, 960px);
    height: 100%;
    padding: 6vh 0 12vh 0;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: center;
}

.hero-logo {
    width: min(70vw, 640px);
    margin: 0 auto 3vh;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.9));
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0.7rem 2rem;
    border: 5px solid var(--white);
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.38);
    color: var(--white);
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    transition: filter 0.2s ease;
    transform: skewX(-12deg);
    animation:
        ctapulse 2s ease-in-out infinite,
        emergencylights 1.65s linear infinite;
}

@keyframes ctapulse {
    0%, 100% {
        translate: 0 0;
        scale: 1;
    }

    50% {
        translate: 0 -4px;
        scale: 1.025;
    }
}

@keyframes emergencylights {
    /* BLUE: first flash - ramp up */
    0% {
        box-shadow:
            inset 68px 0 38px -24px rgba(37, 88, 163, 0.20),
            inset -68px 0 38px -24px rgba(230, 52, 57, 0.08),
            -10px 0 18px rgba(37, 88, 163, 0.12),
            10px 0 14px rgba(230, 52, 57, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    4% {
        box-shadow:
            inset 78px 0 46px -20px rgba(37, 88, 163, 1),
            inset -66px 0 34px -26px rgba(230, 52, 57, 0.10),
            -16px 0 36px rgba(37, 88, 163, 0.82),
            10px 0 14px rgba(230, 52, 57, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    9% {
        box-shadow:
            inset 68px 0 38px -24px rgba(37, 88, 163, 0.10),
            inset -68px 0 38px -24px rgba(230, 52, 57, 0.06),
            -8px 0 12px rgba(37, 88, 163, 0.06),
            8px 0 10px rgba(230, 52, 57, 0.04),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }

    /* BLUE: second flash */
    13% {
        box-shadow:
            inset 78px 0 48px -20px rgba(37, 88, 163, 0.96),
            inset -66px 0 34px -26px rgba(230, 52, 57, 0.10),
            -17px 0 40px rgba(37, 88, 163, 0.88),
            10px 0 14px rgba(230, 52, 57, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    18% {
        box-shadow:
            inset 68px 0 38px -24px rgba(37, 88, 163, 0.08),
            inset -68px 0 38px -24px rgba(230, 52, 57, 0.06),
            -8px 0 10px rgba(37, 88, 163, 0.04),
            8px 0 10px rgba(230, 52, 57, 0.04),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }

    /* brief pause */
    30% {
        box-shadow:
            inset 64px 0 34px -26px rgba(37, 88, 163, 0.05),
            inset -64px 0 34px -26px rgba(230, 52, 57, 0.05),
            -6px 0 8px rgba(37, 88, 163, 0.03),
            6px 0 8px rgba(230, 52, 57, 0.03),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }

    /* RED: first flash */
    36% {
        box-shadow:
            inset 66px 0 34px -26px rgba(37, 88, 163, 0.10),
            inset -78px 0 46px -20px rgba(230, 52, 57, 1),
            -10px 0 14px rgba(37, 88, 163, 0.06),
            16px 0 36px rgba(230, 52, 57, 0.82),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    41% {
        box-shadow:
            inset 68px 0 38px -24px rgba(37, 88, 163, 0.06),
            inset -68px 0 38px -24px rgba(230, 52, 57, 0.10),
            -8px 0 10px rgba(37, 88, 163, 0.04),
            8px 0 12px rgba(230, 52, 57, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }

    /* RED: second flash */
    45% {
        box-shadow:
            inset 66px 0 34px -26px rgba(37, 88, 163, 0.10),
            inset -78px 0 48px -20px rgba(230, 52, 57, 0.96),
            -10px 0 14px rgba(37, 88, 163, 0.06),
            17px 0 40px rgba(230, 52, 57, 0.88),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    50% {
        box-shadow:
            inset 68px 0 38px -24px rgba(37, 88, 163, 0.06),
            inset -68px 0 38px -24px rgba(230, 52, 57, 0.08),
            -8px 0 10px rgba(37, 88, 163, 0.04),
            8px 0 10px rgba(230, 52, 57, 0.04),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }

    /* side swap: red left double flash */
    62% {
        box-shadow:
            inset 78px 0 46px -20px rgba(230, 52, 57, 1),
            inset -66px 0 34px -26px rgba(37, 88, 163, 0.10),
            -16px 0 36px rgba(230, 52, 57, 0.82),
            10px 0 14px rgba(37, 88, 163, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    67% {
        box-shadow:
            inset 68px 0 38px -24px rgba(230, 52, 57, 0.08),
            inset -68px 0 38px -24px rgba(37, 88, 163, 0.06),
            -8px 0 10px rgba(230, 52, 57, 0.04),
            8px 0 10px rgba(37, 88, 163, 0.04),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    71% {
        box-shadow:
            inset 78px 0 48px -20px rgba(230, 52, 57, 0.96),
            inset -66px 0 34px -26px rgba(37, 88, 163, 0.10),
            -17px 0 40px rgba(230, 52, 57, 0.88),
            10px 0 14px rgba(37, 88, 163, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    76% {
        box-shadow:
            inset 68px 0 38px -24px rgba(230, 52, 57, 0.06),
            inset -68px 0 38px -24px rgba(37, 88, 163, 0.06),
            -8px 0 10px rgba(230, 52, 57, 0.04),
            8px 0 10px rgba(37, 88, 163, 0.04),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }

    /* side swap: blue right double flash */
    84% {
        box-shadow:
            inset 66px 0 34px -26px rgba(230, 52, 57, 0.10),
            inset -78px 0 46px -20px rgba(37, 88, 163, 1),
            -10px 0 14px rgba(230, 52, 57, 0.06),
            16px 0 36px rgba(37, 88, 163, 0.82),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    89% {
        box-shadow:
            inset 68px 0 38px -24px rgba(230, 52, 57, 0.06),
            inset -68px 0 38px -24px rgba(37, 88, 163, 0.08),
            -8px 0 10px rgba(230, 52, 57, 0.04),
            8px 0 10px rgba(37, 88, 163, 0.04),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    93% {
        box-shadow:
            inset 66px 0 34px -26px rgba(230, 52, 57, 0.10),
            inset -78px 0 48px -20px rgba(37, 88, 163, 0.96),
            -10px 0 14px rgba(230, 52, 57, 0.06),
            17px 0 40px rgba(37, 88, 163, 0.88),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
    100% {
        box-shadow:
            inset 68px 0 38px -24px rgba(37, 88, 163, 0.20),
            inset -68px 0 38px -24px rgba(230, 52, 57, 0.08),
            -10px 0 18px rgba(37, 88, 163, 0.12),
            10px 0 14px rgba(230, 52, 57, 0.06),
            0 15px 35px rgba(0, 0, 0, 0.38);
    }
}

.cta:hover {
    filter: brightness(1.16);
    animation:
        ctapulse 2s ease-in-out infinite,
        emergencylights 1.15s linear infinite;
}

@keyframes colorpulse {
  0% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15); }
  25% { box-shadow: 0 0 10px 5px var(--blue); }
  50% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15); }
  75% { box-shadow: 0 0 10px 5px var(--red); }
  100% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15); }
}

.scroll-mark {
    position: absolute;
    bottom: 0px;
    left: 50%;
    z-index: 2;
    color: var(--gray-mid);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
    animation: discoverFloat 1.8s ease-in-out infinite;
}

.scroll-mark::after {
    display: block;
    width: 1px;
    height: 42px;
    margin: 0.55rem auto 0;
    background: linear-gradient(180deg, var(--white), transparent);
    content: "";
    transform-origin: top;
    animation: discoverLine 1.8s ease-in-out infinite;
}

@keyframes discoverFloat {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

@keyframes discoverLine {
    0%,
    100% {
        opacity: 0.45;
        transform: scaleY(0.55);
    }

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

.game-copy {
    max-width: var(--content-width);
}

.game-copy p {
    margin: 0 0 1.3rem;
    color: var(--gray-dark);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.game-copy p:last-child {
    margin-bottom: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 2.5rem;
}

.shot {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    background: var(--black);
    cursor: zoom-in;
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.35s ease, transform 0.35s ease;
}

.shot::after {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    background-image: url("../img/ui/info-plus.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    content: "";
}

.shot::before {
    position: absolute;
    width: 100%;
    right: 100%;
    bottom: 0px;
    left: 0;
    height: 3px;
    background: var(--gradient);
    content: "";
    transition: right 0.25s ease;
    z-index: 120;
}

.shot:hover img {
    filter: brightness(1.12);
    transform: scale(1.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 50px;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: feature;
}

.features li {
    position: relative;
    min-height: 82px;
    padding: 1rem 1rem 1rem 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    counter-increment: feature;
}

.features li::before {
    content: "";
    width: 56px;
    height: 56px;
    position: absolute;
    left: 0;
    top: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--red);
    transition: all 0.5s ease-in;
}

.features li:hover::before {
    transform: scale(1.2) rotate(5deg);
    transition: all 0.5s ease;
    
}
/*
.features li:nth-child(even)::before {
    background-color: var(--blue);
}*/

.features .f01::before { background-image: url("../img/features/feature-01.png");}
.features .f02::before { background-image: url("../img/features/feature-02.png");}
.features .f03::before { background-image: url("../img/features/feature-03.png");}
.features .f04::before { background-image: url("../img/features/feature-04.png");}
.features .f05::before { background-image: url("../img/features/feature-05.png");}
.features .f06::before { background-image: url("../img/features/feature-06.png");}
.features .f07::before { background-image: url("../img/features/feature-07.png");}
.features .f08::before { background-image: url("../img/features/feature-08.png");}
.features .f09::before { background-image: url("../img/features/feature-09.png");}

.features strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--display-font);
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    text-transform: uppercase;
}

.features span {
    color: var(--gray-mid);
}

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

.trailer-card {
    overflow: hidden;
    border: 1px solid var(--black);
    border-bottom: 3px solid var(--black);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.trailer-card h3 {
    margin: 0.9rem 1rem 1.1rem;
    color: var(--black);
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 1.15rem;
    font-style: italic;
    text-transform: uppercase;
}

.video-consent {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #050505;
}

.video-consent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-consent button {
    position: absolute;
    inset: 0;
    display: grid;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.16);
    cursor: pointer;
    place-items: center;
}

.play {
    display: grid;
    width: 60px;
    height: 60px;
    padding-left: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.15);
    color: var(--black);
    font-size: 2rem;
    place-items: center;
    animation: sizepulse 1s ease-in-out infinite;
}

@keyframes sizepulse {
    0%, 100% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }
}

.video-consent:hover button .play {
    animation:
        sizepulse 1s ease-in-out infinite,
        colorpulse 1s ease-in-out infinite;
}



.consent-copy {
    position: absolute;
    right: 10px;
    top: 10px;
    left: 10px;
    min-height: 34px;
    padding: 0.5rem 0.65rem 0.5rem 2.6rem;
    background: rgba(0, 0, 0, 0.82);
    color: var(--gray-light);
    font-size: 0.75rem;
    line-height: 1.3;
}

.consent-copy::before {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    background: url("../img/ui/info-squared.png") center / contain no-repeat;
    content: "";
    transform: translateY(-50%);
}

.video-consent iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.store-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 142px;
    overflow: hidden;
    border: 1px solid var(--gray-dark);
    background: rgba(0, 0, 0, 0.7);
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 1.38rem;
    font-style: italic;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.store-btn::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    content: "";
    transform: scaleX(0.15);
    transition: transform 0.2s ease;
}

.store-btn:hover {
    border-color: var(--gray-mid);
    transform: translateY(-4px);
}

.store-btn:hover::before {
    transform: scaleX(1);
}

.store-btn img {
    width: min(82%, 230px);
    max-height: 78px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.store-btn:hover img {
    transform: scale(1.04);
}

.news-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.newsletter-card {
    padding: clamp(24px, 4vw, 46px);
    border-left: 8px solid var(--blue);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    color: var(--black);
}

.newsletter-card.alt {
    border-left-color: var(--red);
}

.newsletter-card h3 {
    margin: 0 0 1rem;
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 1.7rem;
    font-style: italic;
    text-transform: uppercase;
}

.form-row {
    display: flex;
    gap: 8px;
}

.form-row input {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-mid);
    background: var(--white);
}

.form-row button {
    padding: 0.85rem 1.2rem;
    border: 0;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.fineprint {
    color: #555555;
    font-size: 0.78rem;
    line-height: 1.45;
}

.fineprint {
    position: relative;
    min-height: 20px;
    padding-left: 28px;
}

.fineprint::before {
    position: absolute;
    top: 0.08rem;
    left: 0;
    width: 19px;
    height: 19px;
    background: url("../img/ui/info-squared.png") center / contain no-repeat;
    content: "";
    filter: invert(1);
}

.faq-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-list li {
    border-bottom: 1px solid var(--gray-dark);
}

.faq-toggle {
    display: flex;
    width: 100%;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--display-font);
    font-weight: 900;
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.faq-toggle::after {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    background: url("../img/ui/info-plus.png") center / contain no-repeat;
    content: "";
}

.faq-list li.open .faq-toggle::after {
    background-image: url("../img/ui/info-minus.png");
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.34s ease, opacity 0.28s ease;
}

.faq-answer > div {
    min-height: 0;
    overflow: hidden;
}

.faq-list li.open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-answer p {
    max-width: none;
    margin: 0;
    padding: 0 0 1.4rem;
    color: var(--gray-mid);
}

.footer {
    padding: 60px 0 95px;
    border-top: 1px solid var(--gray-dark);
    background: var(--black);
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-badge {
    display: grid;
    min-height: 80px;
    border: 1px solid var(--gray-dark);
    color: var(--gray-mid);
    text-align: center;
    text-transform: uppercase;
    place-items: center;
}

.logo-row-small {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.logo-row-small {
    min-height:40px;
}


.legal {
    max-width: 1100px;
    color: #777777;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 1.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--red);
}

.socials {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 90;
    display: grid;
    gap: 10px;
}

.socials a {
    display: grid;
    width: 50px;
    height: 50px;
    background: rgba(14, 33, 61, 0.8);
    transition: background 0.2s ease, transform 0.2s ease;
    place-items: center;
    border-radius: 100%;
}

.socials img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.socials a:nth-child(n + 4) {
    background: rgba(61, 14, 15, 0.8);
}

.socials a:hover {
    background: var(--blue);
    transform: translateX(-4px);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.94);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(94vw, 1600px);
    max-height: 88vh;
    box-shadow: 0 20px 70px var(--black);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: 0px solid rgba(255, 255, 255, 0.55);
    background-color: rgba(0, 0, 0, 0.82);
    background-image: url("../img/ui/info-close.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 34px 34px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 80px;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.legal-page {
    min-height: 100vh;
    padding: calc(var(--header-height) + 60px) 0 80px;
    background: var(--gray-deep) url("../img/background-dark.jpg") center / cover fixed;
}

.legal-page article {
    max-width: 1240px;
}

.legal-page h1,
.legal-page h2 {
    font-family: var(--display-font);
    font-style: italic;
    text-transform: uppercase;
}

.legal-page h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-page h2 {
    margin-top: 2rem;
}

.legal-page p,
.legal-page li {
    color: var(--gray-light);
}

.boxedlink {
    font-weight: bold;
    display: inline-block;
    border: 2px solid var(--white);
    padding: 5px 20px;
    transform: translateX(5px) skewX(-12deg);
    background-size: 0% 100%;
    text-align:center;
	text-decoration:none;
    outline:none;
    transition: all 0.5s ease-in-out;
}

.boxedlink:hover {
    background-color:var(--red);
    background-image:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,.7) 100%);
    background-repeat:no-repeat;
    background-size: 200% 100%; 
    transition: all 0.5s ease-in-out;
}

.redirect-page {
    display: grid;
    min-height: 100vh;
    background: var(--black) url("../img/background-dark.jpg") center / cover;
    place-items: center;
}

.redirect-content {
    text-align: center;
}

.redirect-logo {
    width: min(78vw, 620px);
    margin: 0 auto 2rem;
}

.redirect-content p {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.redirect-content a {
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-aspect-ratio: 2.2 / 1) {
    .hero-media {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.9) 100%),
            url("../img/keyvisual-wide.jpg");
        background-position: center top;
        background-size: cover;
    }
}

@media (min-aspect-ratio: 2.8 / 1) {
    .hero-media {
        background-size: contain;
    }
}











@media (max-width: 1200px) {

    .header-inner {
        grid-template-columns: 200px 1fr;
    }

    .nav ul {
        gap: 14px;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .hero-media {
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.9) 100%),
            url("../img/keyvisual-small.jpg");
    }

    .section-title {
        margin: 0 0 2rem;
        line-height: 0.95;
    }

    .subsection-title {
        margin: 1rem 0;
        line-height: 0.95;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .trailer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}











@media (max-width: 960px) {

    .container {
        width: min(calc(100% - 28px), var(--content-width));
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .brand img {
        height: 50px;
    }

    .nav-toggle {
        display: block;
        z-index: 200;
    }

    .lang {
        top: 25px;
        right: 80px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        z-index: 90 !important;
        padding: 20px 40px;
        background: rgba(0, 0, 0, 0.9);
        transform: translateX(140%);
        transition: transform 0.25s ease;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav ul {
        display: grid;
        gap: 0;
        z-index: 90 !important;
    }

    .nav a {
        min-height: auto;
        padding: 14px 0;
        font-size: 1.05rem;
        z-index: 90 !important;
    }

    .nav a::after {
        bottom: 7px;
    }

    .hero-logo {
        width: min(85vw, 690px);
    }

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

    .trailer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .logo-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-row-small {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 80px 0;
    }

    .section-dark,
    .section-bright,
    .legal-page {
        background-attachment: scroll;
    }

    .socials {
        right: 10px;
        bottom: 10px;
        grid-template-columns: repeat(7, 30px);
        gap: 5px;
    }

    .socials a {
        width: 30px;
        height: 30px;
    }

    .socials a img {
        width: 30px;
        height: 30px;
    }
}











@media (max-width: 580px) {
    body {
        font-size: 16px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .store-btn {
        min-height: 100px;
    }

    .gallery,
    .trailer-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        display: grid;
    }

    .logo-row {
        grid-template-columns: 1fr 1fr;
    }

    .lightbox-nav {
        display: none;
    }

    .section-title {
        font-size: clamp(2.1rem, 10vw, 3.4rem);
    }
}










/*
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}*/
