.hardware-container {
    width: 100%;
    background-color: var(--maindark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hardware-items {
    width: 60%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.premium-buttons-container {
    background-color: var(--maindark);
    width: 330px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.premium-buttons-container div {
    padding: 5px 15px;
    width: 180px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 10px;
    font-size: 18px;
}

/* Only apply to premium-buttons-container, not globally */
.premium-buttons-container div.active {
    background-color: var(--darker);
}

.text-format {
    color: var(--text);
}

.text-format h2 {
    color: var(--text);
    text-transform: uppercase;
}

.text-format p {
    color: var(--gray);
}

.cart-container {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.cart {
    width: 350px;
    height: 700px;
    max-height: 500px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--darker);
    border-radius: 5px;
    margin: 25px 0;
}

.cart .description {
    color: #9ba2ba;
    text-align: center;
    margin: 0;
    font-weight: 500 !important;
}

.cart .description b {
    color: #fff;
    font-weight: 500 !important;
    margin: 0;
    font-size: 16px;
}

.cart div {
    cursor: pointer;
    width: 55%;
    padding: 7px 10px;
    border-radius: 5px;
    text-align: center;
    color: var(--text);
    background-color: var(--blue);
    margin: 0 auto;
}

.cart br {
    display: block;
    content: "";
    margin-top: 12px;
}

.cart b {
    font-size: 30px;
    color: var(--text)
}

.cart .recommended {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secundairydark);
    padding: 10px;
    border-radius: 10px;
    font-weight: 500 !important;
    color: #9ba2ba;
    font-size: 14px;
}

.cart .recommended i {
    color: var(--green);
    font-size: 16px;
}

.cart .recommended p {
    color: #fff;
    margin: 0;
    font-weight: 500 !important;
    font-size: 16px;
}

.panel-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 75px 195px;
    background-color: var(--darker);
}

.panel-items-section {
    width: 60%;
}

.panel-items {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-img-section {
    width: 40%;
    display: flex;
    justify-content: end;
}

.panel-img-section img {
    background-color: var(--secundairydark);
    padding: 30px;
}

.why-container {
    width: 80%;
    margin: 0 auto;
}

.why-section {
    width: 100%;
    margin: 100px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.whypoint {
    width: 450px;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    flex-direction: row;
    background-color: var(--darker);
    align-items: center;
    margin: 50px 0px;
}

.whypoint .img-container {
    min-width: 113px;
}

.whypoint h3 {
    font-size: 25px;
    text-transform: uppercase;
}

.whypoint p {
    font-size: 15px;
}

.support-container {
    width: 100%;
    display: flex;
    padding: 50px 100px 100px 100px;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--darker);
}

.support-items-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 55%;
    margin-top: 20px;
    flex-wrap: wrap;
}

.support-items-container div {
    width: 260px;
    margin-top: 20px;
    margin-left: 20px;
    height: 200px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    background-color: var(--secundairydark);
    padding: 20px;
}

.support-items-container h3 {
    text-transform: uppercase;
    font-size: 20px;
}

.game-header {
    position: relative;
    max-height: 700px;
    max-width: 100%;
    margin-top: -100px;
}

.game-header-img {
    width: 100%;
    object-fit: cover;
    min-height: 700px;
    max-height: 700px;
    position: relative;
}

.game-header-text-container {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 250px;
    text-align: center;
}

.game-header-text-container .title {
    font-size: 45px;
    text-transform: uppercase;
}

.game-header-text-container .headline {
    font-size: 40px;
    text-transform: uppercase;
}

.game-header-text-container .tagline {
    font-size: 20px;
    color: var(--gray);
}

.game-header-text-container .tagline br {
    display: block;
    margin: -5px 0;
    content: "";
}

@media only screen and (max-width: 1325px) {
    .hardware-items {
        flex-direction: column;
    }

    .hardware-items {
        width: 100%;
    }

    .cart-container {
        width: 100%;
        justify-content: space-around;
    }

    .support-items-container {
        width: 100%;
    }

    .support-items-container div {
        margin-top: 20px;
    }

    .panel-container {
        flex-direction: column;
        padding: 75px 10px;
    }

    .panel-items-section {
        width: 100%;
    }

    .panel-img-section {
        width: 100%;
        margin-top: 30px;
    }

    .why-section {
        width: 100%;
        justify-content: center;
    }

    .support-items-container {
        justify-content: center;
    }

    .panel-img-section img {
        width: 400px;
        height: 245px;
        padding: 10px;
    }
    
    .panel-items {
        width: 100%;
    }

    .game-header-text-container {
        top: 175px;
        padding: 10px;
    }

    .game-header-text-container .title {
        font-size: 41px;
    }
    
    .game-header-text-container .headline {
        font-size: 36px;
    }
    
    .game-header-text-container .tagline {
        font-size: 16px;
    }

    .game-header-text-container .tagline br {
        margin: 0px;
    }

    .whypoint {
        flex-direction: column;
    }

    .whypoint .img-container {
        margin-bottom: 20px;
    }
}