* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
    background-color: black !important;
    overflow-x: hidden;
    overflow-y: auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

acronym,
samp,
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
a,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline: 0px;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    scroll-behavior: smooth;
}

ul,
ol {
    list-style: none;
}

header {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 0.5rem;
    font-size: 1rem;
}

.nav-list-item {
    line-height: 1.2;
    position: relative;
    color: white;
}

.nav-list-item-label {
    filter: drop-shadow(0 0 6px black) drop-shadow(0 0 6px black);
    font-size: 1.75rem;
    font-family: 'Teko', sans-serif;
}

.nav-list-item a {
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-list-item a:hover {
    color: rgb(9, 76, 206);
}

.nav-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    cursor: pointer;
    background-color: rgb(9, 76, 206);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
}

.nav-btn a {
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
}

.nav-btn:hover {
    opacity: 0.75;
}

.t-upper {
    text-transform: uppercase;
}

.nav-list-item:not(.nav-list-item-contact):not(.nav-list-item-last)::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 2px;
    background-color: #fff;
    opacity: 0.6;
    margin-left: 8px;
    vertical-align: middle;
}

@media screen and (min-width: 769px) {
    .nav-list-item:not(.nav-list-item-contact) {
        margin-right: min(.15rem, 30px);
        padding-right: min(.15rem, 30px);
    }
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100%;
    padding: 0rem 1rem 0rem 6rem;
    text-align: left;
}

.title-logo {
    line-height: 0;
    user-select: none;
}

.title {
    line-height: 1.5;
    text-align: left;
    font-family: 'Krona One', sans-serif;
    font-size: 8rem;
    font-weight: 600;
    margin-top: 0.6rem;
    background-color: #094cce;
    filter: drop-shadow(5px 0 10px rgba(0, 0, 0, 0.8));
    letter-spacing: 2px;
    background-position: left top;
    background-size: 1000px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.page-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.25);
    margin: 0 auto 10rem auto;
    padding: 10rem 1rem 0rem 6rem;
}

.section-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
    gap: 1rem;
}

.section-title>h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: #094cce;
    margin: 0;
    filter: drop-shadow(5px 0 10px rgba(0, 0, 0, 0.8));
    background-position: left top;
    background-size: 1000px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.section-subtitle {
    font-family: 'REM', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #f3f3f3;
    position: relative;
    padding: 0 1rem;
    user-select: none;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 3rem;
    color: white;
    background-color: white;
    margin-right: 1rem;
    vertical-align: middle;
}

.section-content,
.section-content>p {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: #f3f3f3;
    font-family: 'REM', sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    gap: 1.25rem;
}

.section-content::selection,
.section-content>p::selection {
    background-color: white;
    color: black;
}

.section-content::-moz-selection,
.section-content>p::-moz-selection {
    background-color: white;
    color: black;
}

.section-content::-ms-selection,
.section-content>p::-ms-selection {
    background-color: white;
    color: black;
}

.section-content::-webkit-selection,
.section-content>p::-webkit-selection {
    background-color: white;
    color: black;
}

.carousel-container {
    position: relative;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 0 0 calc(50% - 2rem);
    min-height: 440px;
    box-sizing: border-box;
    margin: 0 1rem;
    gap: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(16, 16, 16, 0.8);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
}

.carousel-card-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #094cce;
    margin: 0;
    filter: drop-shadow(5px 0 10px rgba(0, 0, 0, 0.8));
    background: linear-gradient(rgba(0, 0, 0, 0) 15%, rgba(16, 16, 16, 1));
    padding: 0.35rem 1.25rem;
    user-select: none;
}

.carousel-store {
    width: 2.5rem;
    height: 2.5rem;
    background-image: url('../images/Steam_icon_logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transition: all 0.2s ease-out;
    user-select: none;
}

.carousel-store:hover {
    transform: scale(1.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    background: #094cce;
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10%;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    transform: translateX(-6rem);
    user-select: none;
}

.carousel-indicators span {
    height: 0.25rem;
    width: 2rem;
    margin: 0 5px;
    background-color: #0b205d;
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.carousel-indicators .active {
    background-color: #094cce;
    user-select: none;
}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    padding: 3rem 0rem 1.25rem 0rem;
    background-color: #094cce;
}

footer::before {
    position: absolute;
    display: block;
    background: url('../images/Rose_Top.svg') top;
    content: "";
    height: 100px;
    left: 0;
    right: 0;
    top: -65px;
    z-index: 1;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    width: 70%;
    padding: 0 1rem;
    gap: 1.25rem;
}

.footer-row:not(:first-child)::before {
    content: "";
    display: block;
    background: #0b205d;
    width: 100%;
    height: 1px;
}

.footer-row>a {
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-row>a:hover {
    opacity: 0.75;
}

.footer-row>img {
    width: 192px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 2rem;
}

.footer-link,
.footer-links>a {
    color: rgb(255, 255, 255);
    font-family: 'Krona One';
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
    user-select: text;
}

.footer-link,
.footer-links>a:hover {
    color: rgb(175, 175, 195);
}

.footer-link-icon {
    color: black !important;
}

.footer-link-icon:hover {
    transform: scale(1.25);
}

.footer-link-twitter {
    width: 35px;
    height: 35px;
    background-image: url('../images/Twitter_Logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
    transition: all 0.2s ease-out;
    user-select: none;
}

.footer-link-instagram {
    width: 35px;
    height: 35px;
    background-image: url('../images/Instagram_Logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
    transition: all 0.2s ease-out;
    user-select: none;
}

.footer-link-youtube {
    width: 35px;
    height: 35px;
    background-image: url('../images/YouTube_Logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
    transition: all 0.2s ease-out;
    user-select: none;
}

.footer-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Krona One';
    font-size: 0.85rem;
    word-break: keep-all;
    line-break: normal;
}

.footer-links>a::selection,
.footer-text::selection {
    background-color: white;
    color: black;
}

.footer-links>a::-moz-selection,
.footer-text::-moz-selection {
    background-color: white;
    color: black;
}

.footer-links>a::-ms-selection,
.footer-text::-ms-selection {
    background-color: white;
    color: black;
}

.footer-links>a::-webkit-selection,
.footer-text::-webkit-selection {
    background-color: white;
    color: black;
}

@media (max-width: 600px) {
    .page-section {
        padding: 1.5rem 0.75rem;
        border-radius: 0.75rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-content {
        font-size: 1rem;
    }
}