@font-face {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    src: url('fonts/Inter-Regular.woff2') format('woff2'),
         url('fonts/Inter-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-weight: 400;
    font-style: italic;
    src: url('fonts/Inter-Italic.woff2') format('woff2'),
         url('fonts/Inter-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Inter';
    font-weight: 700;
    font-style: normal;
    src: url('fonts/Inter-Bold.woff2') format('woff2'),
         url('fonts/Inter-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Orbitron';
    font-weight: 300;
    font-style: normal;
    src: url('fonts/orbitron-light-webfont.woff2') format('woff2'),
         url('fonts/orbitron-light-webfont.woff') format('woff');
}

:root {
    --keycol: #06182d;
    --highlight: #66faff;
    --gap: 2rem;
    --spacing: 8rem;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    background: var(--keycol);
}

::selection {
    color: var(--keycol);
    background: var(--highlight);
}

#newsletter ::selection {
    color: var(--highlight);
    background: var(--keycol);
}

.CookieDeclaration {
    width: 75vw;
    max-width: 1440px;
    margin: 0 auto;
}

/*------
ELEMENTS
------*/

/* Headlines */

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 3rem;
    margin-bottom: .5rem;
}

h2 {
    margin-bottom: calc(var(--gap) / 2);
    font-size: 2rem;
}

h3 {
    margin-bottom: calc(var(--gap) / 2);
    font-size: 1.3rem;
}

/* Paragraphs */

p {
    text-align: justify;
}

#selectors p {
    margin-bottom: 3rem;
    text-align: center;
}

footer p {
    margin-bottom: 0;
    font-size: .8rem;
    text-align: center;
}

/* Links and Buttons */

a {
    color: var(--keycol);
}

.CookieDeclaration a {
    color: var(--highlight);
}

footer a {
    font-size: .8rem;
    color: #fff;
    text-decoration: underline;
}

.select a {
    display: inline-block;
    margin-bottom: calc(var(--gap) / 2);
}

.active, .select a:active {
    color: var(--keycol);
    background: var(--highlight);
    border: 3px solid var(--highlight);
}

button, .select a {
    margin: 0 calc(var(--gap) / 2) calc(var(--gap) / 2) 0;
    padding: calc(var(--gap) / 4) calc(var(--gap) / 2);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--highlight);
    background: transparent;
    border: 3px solid var(--highlight);
}

button:hover, .select a:hover {
    color: var(--keycol);
    background: var(--highlight);
}

#selection button:last-of-type, .select a:last-of-type {
    margin-right: 0;
}

.buy-btn a {
    padding: calc(var(--gap) / 2);
    color: var(--keycol);
    text-decoration: none;
    background: var(--highlight);
    border: 3px solid var(--highlight);
    line-height: 250%;
}

.buy-btn a:hover {
    color: var(--highlight);
    background: transparent;
}

/* Texts */

.social {
    text-decoration: none;
    color: #fff;
}

/* Graphics */

.lng {
    margin-right: calc(var(--gap) / 2);
}

.lng:last-of-type {
    margin-right: 0;
}

/*----
HEADER
----*/

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 75vh;
    padding: var(--gap);
    padding-left: 0;
    background: url(img/headerbg.jpg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.game-logo {
    width: 90%;
    max-width: 1000px;
}

#header-info {
    display: flex;
    justify-content: space-between;
    padding-left: 1rem;
}

#header-social {
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    padding: 1rem;
    background: rgba(6,24,45,.75);
}

#header-social img {
    width: 30px;
}

#header-social a {
    margin-right: calc(var(--gap) / 2);
}

#header-social a:last-of-type {
    margin-right: 0;
}

/*-------
SELECTORS
-------*/

#selectors {
    width: 75vw;
    max-width: 1440px;
    margin: 0 auto var(--spacing) auto;
    text-align: center;
    background: var(--keycol);
}

.select {
    margin-bottom: var(--gap);
}

/*-----
TRAILER
-----*/

#trailer-thumb, #trailer {
    padding: var(--spacing) 0;
    background: hsl(212, 76%, 15%);
}

.trailer, .trailer-thumb {
    position: relative;
    width: 75vw;
    max-width: 1440px;
    margin: 0 auto;
}

.trailer-thumb picture, .trailer-thumb img {
    display: block;
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
}

.trailer {
    height: 0;
    padding-bottom: 56.25%;
}

.trailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Play Button */

.play-btn {
    position: absolute;
    margin: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 0;
}

.play-btn:hover {
    background: none;
}

.play-btn svg {
    width: 200px;
    height: 200px;
    margin-bottom: var(--gap);
    fill: var(--keycol);
}

.play-btn:hover svg {
    fill: var(--highlight);
}

.play-btn span {
    display: block;
    padding: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--highlight);
    background: var(--keycol);
}

.play-btn:hover span {
    color: var(--keycol);
    background: var(--highlight);
}

/*------
FEATURES
------*/

#features-container {
    padding: var(--spacing) 0;
}

#features {
    max-width: 1440px;
    width: 75vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr var(--spacing) var(--spacing) 1fr;
    grid-template-rows: repeat(3, auto auto var(--gap) var(--spacing));
}

.feature {
    padding: var(--gap);
    color: var(--keycol);
    background: #fff;
}

.screen1, .screen3 {
    grid-column: 1 / span 3;
}

.feature1, .feature3 {
    grid-column: 3 / span 2;
}

.screen1 {
    grid-row: 1 / 4;
}

.feature1 {
    grid-row: 2 / 3;
}

.screen2 {
    grid-column: 2 / span 3;
    grid-row: 5 / 8;
}

.feature2 {
    grid-column: 1 / span 2;
    grid-row: 6 / 7;
}

.screen3 {
    grid-row: 9 / 12;
}

.feature3 {
    grid-row: 10 / 11;
}

.screen > picture, .screen img {
    width: 100%;
    object-fit: cover;
}

.buy-btn {
    width: 75vw;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

/*--------
NEWSLETTER
--------*/

#newsletter {
    margin-bottom: var(--spacing);
    padding: var(--gap) 0;
    color: var(--keycol);
    background: var(--highlight);
}

#nl-form {
    max-width: 1440px;
    width: 75vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--gap);
    align-items: center;
}

#email-address {
    grid-column: 2 / span 2;
}

#email {
    width: 100%;
    margin-bottom: calc(var(--gap) / 2);
    padding: calc(var(--gap) / 4) calc(var(--gap) / 4);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    border: 3px solid var(--keycol);
    background: none;
}

input[type="submit"] {
    width: 100%;
    padding: calc(var(--gap) / 2);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--highlight);
    background: var(--keycol);
    border: 3px solid var(--keycol);
}

input[type="submit"]:hover {
    color: var(--keycol);
    background: var(--highlight);
}

/*----------
SOCIAL ICONS
----------*/

#social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    grid-gap: var(--gap);
    width: 75vw;
    max-width: 1440px;
    margin: 0 auto var(--spacing) auto;
}

.social {
    display: flex;
    align-items: center;
    padding: .8rem calc(var(--gap) / 2);
}

.social img {
    max-height: 2.5rem;
    margin-right: calc(var(--gap) / 2);
}

#fb {
    background: #1877F2;
}

#fb:hover {
    background: rgb(24, 119, 242, .8);
}

#tw {
    background: #1DA1F2;
}

#tw:hover {
    background: rgb(29, 161, 242, .8);
}

#yt {
    background: #FF0000;
}

#yt:hover {
    background: rgb(255, 0, 0, .8);
}

#in {
    background: #EF0075;
}

#in:hover {
    background: rgb(239, 0, 117, .8);
}

/*----
FOOTER
----*/

footer {
    padding: calc(var(--gap) / 2);
    background-image: linear-gradient(to bottom, rgb(6, 24, 44, .3), rgb(6, 24, 44, .8)), url(img/footerbg.jpg);
    background-position: center;
    color: #fff;
    text-align: center;
}

#region {
    margin-bottom: 4rem;
    text-align: center;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.logo {
    margin-right: 3rem;
    margin-bottom: 1rem;
}

.logo:last-of-type {
    margin-right: 0;
}

.logo img {
    object-fit: contain;
}

/*--------
RESPONSIVE
--------*/

@media (max-width: 1350px) {
    #features {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, auto auto auto auto 4rem);
    }

    .screen1, .screen2, .screen3 {
        grid-column: 1 / span 3;
    }

    .feature1, .feature2, .feature3 {
        grid-column: 2 / span 3;
    }

    .screen1 {
        grid-row: 1 / 4;
    }

    .feature1 {
        grid-row: 3 / 5;
    }

    .screen2 {
        grid-row: 6 / 9;
    }

    .feature2 {
        grid-row: 8 / 10;
    }

    .screen3 {
        grid-row: 11 / 14;
    }

    .feature3 {
        grid-row: 13 / 15;
    }
}

@media (max-width: 1275px) {
    #nl-form section {
        grid-column: 1 / span 4;
    }
    
    #email-address {
        grid-column: 1 / span 2
    }
    
    #button {
        grid-column: 3 / span 2;
    }
}

@media (max-width: 800px) {
    .play-btn svg {
        width: 125px;
        height: 125px;
        margin-bottom: calc(var(--gap) / 2);
    }
}

@media (max-width: 720px) {
    header {
        height: 50%;
        padding: calc(var(--gap) / 2) 0;
    }

    #header-social {
        display: none;
    }
    
    .play-btn svg {
        margin-bottom: 0;
    }
    
    .play-btn span {
        display: none;
    }
    
    #features {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto auto 4rem);
    }
    
    #features > * {
        grid-column: 1;
    }

    .screen1 {
        grid-row: 1;
    }

    .feature1 {
        grid-row: 2;
    }

    .screen2 {
        grid-row: 4;
    }

    .feature2 {
        grid-row: 5;
    }

    .screen3 {
        grid-row: 7;
    }

    .feature3 {
        grid-row: 8;
    }
    
    #email-address, #button {
        grid-column: 1 / span 4;
    }
    
}

@media (max-width: 550px) {
    .buy-btn a {
        display: block;
    }

    #esrb {
        height: 75px;
    }
}