/**
* style.css
*/

/*-----------------------------------*\
#CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    color-scheme: only light;

    /**
    * Colors
    */

    --dark-red: hsl(0, 100%, 20%);
    --lime: hsl(125, 100%, 40%);
    --marigold: hsl(42, 99%, 46%);
    --silver: hsl(0, 0%, 65%);
    --eerie-black: hsl(280, 7%, 8%);
    --black_60: hsla(236, 13%, 23%, 0.6);

    /**
    * Typography
    */

    --ff-oxanium: "Oxanium", cursive;
    --ff-poppins: "Poppins", sans-serif;

    /**
    * Transition
    */

    --transition: 0.3s ease;
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

/*-----------------------------------*\
#RESET
\*-----------------------------------*/

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

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

a,
img,
span,
input,
button,
ion-icon {
    display: block;
}

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

html {
    font-size: 0.63rem;
    font-family: var(--ff-poppins);
    scroll-behavior: smooth;
}

body {
    background-color: black;
    font-size: 1.6rem;
    line-height: 1.5;
}

/*-----------------------------------*\
#REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 30px;
}

/*-----------------------------------*\
#OVERLAY
\*-----------------------------------*/

.loading-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9;
}

.loading-spinner {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 5px inset var(--black_60);
    border-top-color: white;
    border-radius: 50px;
    margin-top: -25px;
    margin-left: -25px;
    transition: var(--transition);
    z-index: 9;
}

.loading-spinner.active {
    visibility: visible;
    opacity: 1;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nav-bar-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--black_60);
    transition: var(--transition);
    z-index: 7;
}

.nav-bar-overlay.active {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------*\
#AADS
\*-----------------------------------*/

.aads-home {
    display: block;
    width: 60%;
    border: 0;
    margin: auto;
    margin-top: 10px;
}

.aads-home-text {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: var(--ff-oxanium);
    z-index: -1;
}

.aads-software-detail {
    display: block;
    width: 0;
    min-width: 100%;
    height: 50px;
    border: 0;
    margin-top: 5px;
}

/*-----------------------------------*\
#CHATTABLE
\*-----------------------------------*/

.chattable {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60%;
    z-index: 6;
}

.chattable-btn {
    visibility: visible;
    opacity: 1;
    position: fixed;
    bottom: 5px;
    left: 7px;
    color: var(--silver);
    font-size: 3rem;
    transition: var(--transition);
    z-index: 6;
}

.chattable-btn:hover {
    color: var(--marigold);
}

.chattable-btn.active {
    visibility: hidden;
    opacity: 0;
}

.chattable-close-btn {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 29px;
    left: 299px;
    color: #53565c;
    font-size: 1.6rem;
    transition: var(--transition);
    z-index: 6;
}

.chattable-close-btn:hover {
    color: red;
}

.chattable-close-btn.active {
    visibility: visible;
    opacity: 1;
}

/*-----------------------------------*\
#HEADER
\*-----------------------------------*/

.header {
    position: relative;
    min-height: 1px;
}

/**
* HEADER TOP
*/

.header-top {
    background-image: url("../images/header-top-bg.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    padding-block: 10px;
}

.header-top-announcement {
    color: var(--silver);
    font-weight: 700;
    font-family: var(--ff-oxanium);
    animation: scroll-left 15s linear infinite;
    will-change: transform;
    cursor: default;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/**
* HEADER BOTTOM
*/

.header-bottom {
    position: absolute;
    top: calc(100% - 1px);
    width: 100%;
    background-color: var(--black_60);
    padding: 15.5px;
    z-index: 8;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bottom-brand {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--ff-oxanium);
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
}

.header-bottom.active {
    position: fixed;
    top: 0;
    animation: headerBottomSlideIn 0.3s var(--cubic-out) forwards;
}

@keyframes headerBottomSlideIn {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

.header-bottom.reverse {
    animation: headerBottomSlideOut 0.3s var(--cubic-out) forwards;
}

@keyframes headerBottomSlideOut {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/**
* NAV BAR
*/

.nav-bar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: var(--eerie-black);
    padding-top: 10px;
    z-index: 8;
}

.nav-bar.active {
    display: block;
    animation: navBarSlideIn 0.2s var(--cubic-out) forwards;
}

@keyframes navBarSlideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.nav-bar.reverse {
    display: block;
    animation: navBarSlideOut 0.2s var(--cubic-out) forwards;
}

@keyframes navBarSlideOut {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

.nav-bar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-bar-action {
    position: relative;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--ff-oxanium);
    text-transform: uppercase;
    padding: 10px 20px;
    transition: var(--transition);
}

.nav-bar-action:hover {
    color: var(--marigold);
}

.nav-bar-action::before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transform: skewX(-16deg);
    transition: var(--transition);
    z-index: -1;
}

.nav-bar-action:hover::before {
    opacity: 1;
}

.nav-bar-action::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 35%;
    height: 3px;
    background-color: var(--marigold);
    transform: skewX(-16deg);
    transition: var(--transition);
}

.nav-bar-action:hover::after {
    opacity: 1;
}

.nav-bar-btn {
    color: white;
    font-size: 1.8rem;
    border: 2px inset white;
    padding: 2px;
}

/**
* SECTION
*/

.section-wrapper {
    position: relative;
    background-color: black;
    z-index: 1;
}

.section-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/section-wrapper-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.section-title {
    position: relative;
    color: white;
    font-size: 3.6rem;
    font-weight: 800;
    font-family: var(--ff-oxanium);
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    margin-block-end: 60px;
}

.section-title::after {
    content: url("../images/title-underline.png");
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
}

.section-highlight {
    display: inline;
    color: var(--dark-red);
}

/*-----------------------------------*\
#CONTENT DIV
\*-----------------------------------*/

.content-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 70%;
    background-color: black;
    color: white;
    font-family: var(--ff-oxanium);
    overflow: auto;
    border: 3px inset white;
    padding: 7px;
    padding-top: 3px;
    transition: var(--transition);
    cursor: default;
    z-index: 2;
}

.content-div:hover {
    border-color: var(--lime);
    border-radius: 10px;
}

.content-div-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.content-div-message {
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    gap: 5px;
}

.content-div-instruction {
    color: var(--marigold);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px;
}

.content-div-steps {
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    gap: 8px;
    margin-left: 20px;
}

.content-div-steps li::before {
    content: "• ";
    color: var(--marigold);
}

.content-div-steps-link {
    display: inline;
    color: var(--lime);
    text-decoration: underline;
    transition: var(--transition);
}

.content-div-steps-link:is(:hover, :focus) {
    color: var(--marigold);
}

.content-div-close-btn {
    color: white;
    font-size: 2rem;
    margin-top: 5px;
    transition: var(--transition);
}

.content-div-close-btn:hover {
    color: red;
}

.content-div-name {
    font-size: 1.2rem;
    margin-top: 6px;
    margin-left: 7px;
}

/**
* FAQs
*/

.faqs-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 80%;
    background-color: black;
    color: white;
    font-family: var(--ff-oxanium);
    white-space: nowrap;
    overflow: auto;
    border: 3px inset white;
    padding: 9px;
    padding-top: 5px;
    transition: var(--transition);
    cursor: default;
    z-index: 5;
}

.faqs-div:hover {
    border-color: var(--lime);
    border-radius: 10px;
}

.faqs-title {
    font-size: 2rem;
    font-weight: 700;
}

.faqs-question {
    font-size: 1.6rem;
    transition: var(--transition);
}

.faqs-question:hover {
    color: var(--marigold);
}

.faqs-question-select {
    color: red;
    transform: scale(1.05) translateX(2.5%);
}

.faqs-arrow {
    display: inline;
    font-size: 1.1rem;
    padding-top: 3px;
}

.faqs-answer {
    font-size: 1.5rem;
}

.faqs-answer::before {
    content: "• ";
    color: var(--marigold);
}

.faqs-answer-link {
    color: var(--lime);
    text-decoration: underline;
    transition: var(--transition);
}

.faqs-answer-link:is(:hover, :focus) {
    color: var(--marigold);
}

.faqs-img {
    max-width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
}

/*-----------------------------------*\
#MEDIA
\*-----------------------------------*/

.media {
    padding-block-start: 125px;
    padding-block-end: 25px;
    cursor: default;
}

.media-hide-text {
    display: none;
}

.media-card {
    position: relative;
}

.media-card-banner {
    width: auto;
}

.media-card-banner-img {
    width: 100%;
    border-radius: 5px;
}

.media-card-date {
    position: absolute;
    color: var(--marigold);
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px;
    z-index: 1;
}

.media-card-date::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black_60);
    transform: skewX(-16deg);
    z-index: -1;
}

.media-card-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #170d1ce6;
}

.media-card-title {
    position: absolute;
    top: 8px;
    left: 8px;
    color: var(--silver);
    font-weight: 800;
    font-family: var(--ff-oxanium);
    text-transform: uppercase;
    line-height: 1;
    padding-right: 8px;
}

.media-card-description {
    position: absolute;
    left: 12px;
    color: var(--silver);
    font-weight: 500;
    padding-right: 15px;
}

.media-list {
    display: flex;
    overflow-x: auto;
    padding-block-end: 15px;
}

.media-list>* {
    flex-shrink: 0;
}

.media-list::-webkit-scrollbar {
    height: 5px;
}

.media-list::-webkit-scrollbar-track {
    outline: 3px solid var(--marigold);
}

.media-list::-webkit-scrollbar-thumb {
    background-color: var(--marigold);
}

.media-list::-webkit-scrollbar-button {
    width: calc(25% - 40px);
}

/*-----------------------------------*\
#SUPPORT
\*-----------------------------------*/

.support {
    padding-block-start: 125px;
    padding-block-end: 135px;
    cursor: default;
}

.support .container {
    display: flex;
    align-items: center;
}

.support-list-container {
    display: flex;
    gap: 65px;
}

.support-subtitle {
    position: relative;
    color: var(--silver);
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--ff-oxanium);
    text-transform: uppercase;
    padding-block-end: 10px;
    margin-block-end: 20px;
}

.support-subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--marigold);
}

.support-img {
    width: 132px;
    height: 186px;
}

.support-link {
    display: flex;
    align-items: center;
    max-width: max-content;
    color: var(--silver);
    font-size: 1.3rem;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.support-link:hover {
    color: var(--marigold);
    transform: translateX(5px);
}

.support-link-icon {
    font-size: 1.5rem;
    margin-right: 5px;
}

.support-discord {
    width: 260px;
    height: 250px;
    border-radius: 5px;
}

/*-----------------------------------*\
#FOOTER
\*-----------------------------------*/

.footer {
    background-color: var(--eerie-black);
    color: var(--silver);
    text-align: center;
    padding-block: 20px;
    cursor: default;
}

.footer-copyright {
    font-size: 1.3rem;
    font-weight: 500;
}

.footer-copyright-year {
    display: inline;
}

.footer-copyright-name {
    display: inline;
    color: var(--marigold);
}

/*-----------------------------------*\
#BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 4px 4px;
    font-size: 1.8rem;
    background-color: transparent;
    color: white;
    border: 2px inset white;
    border-radius: 6px;
    transition: var(--transition);
    z-index: 3;
}

.back-top-btn:hover {
    background-color: var(--lime);
    border-color: var(--marigold);
    border-radius: 15px;
    transform: translateY(5px);
}

.back-top-btn.active {
    visibility: visible;
    opacity: 1;
}

/**
* Display Message
*/

.display-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dark-red);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--ff-oxanium);
    text-align: center;
    border: 3px inset white;
    border-radius: 5px;
    padding: 4px 6px;
    cursor: default;
    z-index: 10;
}

/*-----------------------------------*\
#HOME
\*-----------------------------------*/

.home {
    padding-block-start: 35px;
    margin-block-start: 75px;
    cursor: default;
}

.home .container {
    display: flex;
    justify-content: center;
}

.home-banner {
    width: 350px;
}

.home-text {
    color: white;
    font-family: var(--ff-oxanium);
    text-align: center;
}

.home-title {
    font-weight: 700;
    margin-top: 105px;
}

.home-message {
    margin-top: 3px;
}

.home-gamelauncher {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.home-gamelauncher-link {
    font-weight: 700;
    text-transform: uppercase;
    border: 3px inset white;
    border-radius: 5px;
    padding: 4px 9px;
    padding-top: 5px;
    margin-top: 15px;
    transition: var(--transition);
}

.home-gamelauncher-link:hover {
    background-color: var(--lime);
    border-color: var(--marigold);
    border-radius: 20px;
}

.home-gamelauncher-last-updated {
    color: gray;
    font-size: 1.1rem;
}

/*-----------------------------------*\
#SOFTWARE LIST
\*-----------------------------------*/

.software-list {
    padding-block-start: 125px;
    cursor: default;
}

.software-list-elements {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-block-end: 20px;
}

.software-list-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.searchbar {
    width: 140px;
    height: 32px;
    background-color: black;
    border: 3px inset white;
    border-radius: 10px;
    color: white;
    font-size: 1.3rem;
    font-family: var(--ff-oxanium);
    padding-left: 5px;
    padding-right: 15px;
    transition: var(--transition);
}

.searchbar:is(:hover, :focus) {
    border-color: var(--marigold);
}

.clear-searchbar-btn {
    display: none;
    position: absolute;
    color: red;
    font-size: 1.5rem;
    margin-top: -2.2px;
    margin-left: 125px;
}

.filter-select {
    width: 80px;
    height: 30px;
    background-color: black;
    border: 3px inset white;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.filter-select:is(:hover, :focus) {
    border-color: var(--marigold);
}

.item-counter {
    color: white;
    font-size: 1rem;
    font-weight: 800;
    cursor: default;
}

/**
* Separator
*/

.separator {
    height: 2.5px;
    border: none;
    background-color: var(--marigold);
}

/**
* Ordered List
*/

.ordered-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 30px;
    margin-block: 20px;
    cursor: default;
}

.ordered-list-container {
    display: flex;
}

.ordered-list-item {
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    transition: var(--transition);
}

.ordered-list-item:hover {
    background-color: hsl(245, 60%, 24%);
}

.software-banner {
    height: auto;
    width: 100px;
    border-radius: 5px;
    transform: translateX(-5%);
    transition: var(--transition);
}

.software-name {
    color: white;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.software-last-updated {
    color: gray;
    font-size: 1.1rem;
    margin-left: 5px;
    transition: var(--transition);
}

.software-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    margin-left: 6px;
}

.software-video-btn,
.software-reqs-btn,
.software-steamdb-btn {
    background-color: white;
    color: black;
    font-size: 1.1rem;
    border-radius: 2px;
    padding-top: 0.9px;
    padding-bottom: 0.5px;
    padding-inline: 3px;
    transition: var(--transition);
}

.software-video-btn:hover {
    background-color: red;
    color: white;
}

.software-reqs-btn:hover {
    background-color: var(--lime);
    color: white;
}

.software-steamdb-btn:hover {
    background-color: #163498;
    color: white;
}

.ordered-list-item.ordered-list-item-select {
    transform: scale(1.1);
    background-color: hsl(245, 80%, 24%);
    z-index: 1;
}

.ordered-list-item-select .software-banner {
    animation: breathingGlow 1.5s infinite alternate;
}

@keyframes breathingGlow {
    0% {
        box-shadow: 0 0 0 transparent;
    }

    100% {
        border-color: var(--marigold);
        background-color: var(--marigold);
        box-shadow: 0 0 10px var(--marigold);
    }
}

.ordered-list-item-select .software-name,
.ordered-list-item-select .software-last-updated {
    color: var(--marigold);
}

.software-detail-div {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    border: 2px inset white;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: auto;
    padding: 0.65em;
    padding-top: 0.45em;
    margin-top: 49px;
    margin-left: -5px;
    transition: var(--transition);
    z-index: 4;
}

.software-detail-div:hover {
    border-color: var(--lime);
}

.software-detail-link {
    color: var(--lime);
    text-decoration: underline;
    transition: var(--transition);
}

.software-detail-link:is(:hover, :focus) {
    color: var(--marigold);
}

.software-detail-last-updated {
    color: gray;
    font-size: 1.2rem;
}

/**
* Pagination
*/

.pagination {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--ff-oxanium);
    gap: 20px;
    z-index: 2;
}

.pagination button {
    color: white;
    transition: var(--transition);
}

.pagination button:hover {
    color: var(--marigold);
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/*-----------------------------------*\
#MEDIA QUERIES
\*-----------------------------------*/

/**
* Larger Than 320px (Mobile)
*/

@media (min-width: 320px) {

    /**
    * HEADER TOP
    */

    .header-top-announcement {
        font-size: 1.2rem;
    }

    /**
    * NAV BAR
    */

    .nav-bar-action::after {
        opacity: 1;
        left: 10px;
    }

    /**
    * AADS
    */

    .aads-home {
        height: 50px;
    }

    /**
    * CHATTABLE
    */

    .chattable {
        width: 65%;
    }

    /**
    * CONTENT DIV
    */

    .content-div {
        white-space: nowrap;
    }

    /**
    * HOME
    */

    .home-banner {
        display: none;
    }

    .home-title {
        font-size: 2.15rem;
    }

    .home-message {
        font-size: 1.2rem;
    }

    .home-gamelauncher-link {
        font-size: 1.5rem;
    }

    /**
    * MEDIA
    */

    .media-card {
        width: 200px;
    }

    .media-list {
        gap: 20px;
    }

    .media-card-date {
        top: -22px;
        left: 14px;
        font-size: 0.6rem;
    }

    .media-card-overlay {
        padding: 30px;
    }

    .media-card-title {
        font-size: 0.9rem;
    }

    .media-card-description {
        top: 20px;
        font-size: 0.85rem;
    }

    /**
    * SUPPORT
    */

    .support .container {
        flex-direction: column;
        gap: 20px;
    }

    /**
    * ORDERED LIST
    */

    .ordered-list {
        margin-left: -10px;
    }

    .ordered-list-item {
        flex: 0 100%;
    }

    .software-name {
        width: 200px;
    }

    /**
    * FOOTER
    */

    .footer-img {
        display: none;
    }

}

/**
* Larger Than 576px (Mobile Landscape & Tablet Portrait)
*/

@media (min-width: 576px) {

    /**
    * CHATTABLE
    */

    .chattable {
        width: 50%;
    }

    /**
    * SUPPORT
    */

    .support .container {
        flex-direction: row;
        gap: 70px;
    }

}

/**
* Larger Than 768px (Desktop Browser Zoom & Tablet Landscape)
*/

@media (min-width: 768px) {

    /**
    * HEADER TOP
    */

    .header-top-announcement {
        font-size: 1.4rem;
    }

    /**
    * CHATTABLE
    */

    .chattable {
        width: 25%;
    }

    /**
    * CONTENT DIV
    */

    .content-div {
        white-space: wrap;
    }

    /**
    * MEDIA
    */

    .media-card {
        width: 380px;
    }

    .media-list {
        gap: 35px;
    }

    .media-card-date {
        top: -30px;
        left: 18px;
        font-size: 0.85rem;
    }

    .media-card-overlay {
        padding: 40px;
    }

    .media-card-title {
        font-size: 1.25rem;
    }

    .media-card-description {
        top: 24px;
        font-size: 1.1rem;
    }

    /**
    * ORDERED LIST
    */

    .ordered-list {
        margin-left: 0px;
    }

    .ordered-list-item {
        flex: 0 50%;
    }

    .software-name {
        width: 225px;
    }

    /**
    * FOOTER
    */

    .footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-img {
        display: block;
    }

}

/**
* Larger Than 1200px (Desktop)
*/

@media (min-width: 1200px) {

    /**
    * NAV BAR
    */

    .nav-bar-btn {
        display: none;
    }

    .nav-bar {
        all: unset;
        margin-inline: auto -10px;
    }

    .nav-bar-list {
        flex-direction: row;
    }

    .nav-bar-action::after {
        opacity: 0;
        left: -5px;
    }

    /**
    * AADS
    */

    .aads-home {
        height: auto;
    }

    /**
    * HOME
    */

    .home-banner {
        display: block;
    }

    .home-title {
        font-size: 3.2rem;
    }

    .home-message {
        font-size: 1.85rem;
    }

    .home-gamelauncher-link {
        font-size: 1.8rem;
    }

    /**
    * ORDERED LIST
    */

    .ordered-list-item {
        flex: 0 30%;
    }

}