@media (max-width: 480px) {
/* ============= TOOLBAR START ============= */

#subscribe {
  scroll-margin-top: -115px; 
  scroll-behavior: smooth; 
}

.toolbar-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vh;
}

.toolbar-app-icon {
    height: 3vh;
    filter: brightness(100);
}

.toolbar-app-title {
    display: none;
}

.toolbar-article-buttons {
    display: flex;
    justify-content: space-evenly;
    gap: 2vw;
    flex-direction: row;
    transform: translateX(-2vw);     
}

.toolbar-container {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
}


.toolbar-article-button {
    color: white;
    font-weight: bold;
}

.toolbar-article-button-faq {
    text-decoration: underline white;
}

.toolbar-buttons {
   display: flex;
   justify-content: space-evenly;
   gap: 2vw;
   padding: 1vw;
   align-items: center;
}

.toolbar-discord-icon {
    max-height: 3.5vh;
    transition: ease-in 100ms;
}

.toolbar-discord-icon:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.toolbar-download-icon {
    display: none;
    transition: ease-in 100ms;
}

.toolbar-buttons-login {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1vw;
    font-family: 'Open Sans', serif;
    font-weight: bold;
    align-items: center;
    margin-right: 1vw;
}

.toolbar-buttons-login-login {
    color: #FF4C5A;
    border-radius: 8px;
    background-color: white;
    padding: 0.5rem;
    transition: ease-in 100ms;
}

.toolbar-buttons-login-register {
    display: none;
}

.toolbar-buttons-login-login:hover {
    cursor: pointer;
    transform: scale(1.05);
}

/* If a user logged in use this */
.toolbar-buttons-logged-in {
    border-radius: 50%; 
    border: 4px solid white; 
    width: 6vh; 
    height: 6vh; 
    background-color: #1a1a1a; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    transition: 0.1s ease-in-out;
    position: relative;
}

.toolbar-buttons-logged-in:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.profile__menu {
    position: absolute;
    bottom:-50%;
    justify-self: center;
    right: 23px;
    width: 7vw;
    height: 5vh;
}

.menu__logout-button {
    color: white;
    background-color: #FF4C5A;
    border: solid white 0.2rem;
    font-family: 'Open Sans', serif;
    font-weight: bold;
}

.menu__logout-button:hover {
    cursor: pointer;
    background-color: #c6313d;
}

/* ============= TOOLBAR END ============= */

.content-container {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-template-rows: repeat(4, 25%);
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 25px rgba(15, 15, 15, 0.9),
            0 0 8px rgba(255, 255, 255, 0.05);
}

.content-description-title {
    display: none;
}

.content-description-title > p {
    margin:0;
}

.content-description-text {
    display: none;
}

.content-download-button {
    display: none;
}

.content-download-button:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.content-download-button-image {
    max-height: 3vh;
    max-width: 3vw;
}

.content-preview {
    padding-top: 4vh;
    grid-column: span 5;
    grid-row: span 4;
    display: grid;
    grid-template-rows: repeat(4, 20%);
    justify-content: center;
    gap: 4vh;
}

.content-preview-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://media.valorant-api.com/maps/7eaecc1b-4337-bbf6-6ab9-04b8f06b3319/stylizedbackgroundimage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(0); /* blur only the background */
    z-index: 0;        /* behind the content */
    pointer-events: none; /* allows clicks to pass through */
}

.content-preview-x-title {
    font-size: 3vh;
    font-weight: 600;
    margin: 0;
    padding: 3%;
    color: #f5f0eb;
}

.content-preview-x-description {
    margin: 0;
    padding-left: 3%;
    padding-bottom: 1%;
    color: #f5f0eb;
    font-style: oblique;
    width: 100%;
    font-size: 2vh;
}

.content-preview-x {
    display: flex;
    z-index: 2;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 70, 85, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
    flex-direction: column;
    padding: 1%;
    transition: ease-in 200ms;
    width: 90vw;
    height: 20vh;
    justify-self: center;
    overflow: hidden;
}

.content-preview-x:hover {
    transform: scale(1.05);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

/* ========================= CONTENT PREVIEW 1 START ========================= */

.content-preview-1 {
    left: initial;
    top: initial;
    grid-row: 1;
}

.content-preview-1-image {
    justify-self: center;
    align-self: center;
    max-height:6vh;
    object-fit: contain;
}

/* ========================= CONTENT PREVIEW 1 END ========================= */

/* ========================= CONTENT PREVIEW 2 START ========================= */

.content-preview-2 {
    top: initial;
    left: initial;
    flex-direction: initial;
    justify-content: center;
    position: initial;
    max-width: 100%;
}

.content-preview-2-text {
    max-width: 100%;
    width: 100%;
}

.content-preview-2-description {
    margin: 0;
    padding-left: 3%;
    padding-top: initial;
    color: #f5f0eb;
    font-style: oblique;
    width: 100%;
    font-size: 2vh;
}

.content-preview-2-image {
    display: none;
}

/* ========================= CONTENT PREVIEW 2 END ========================= */

/* ========================= CONTENT PREVIEW 3 START ========================= */

.content-preview-3 {
    left: initial;
    top: initial;
    grid-row: 3;
}

.content-preview-3-text {
    max-width: 100%;
}

.content-preview-3-image {
    display: none;
}


/* ========================= CONTENT PREVIEW 3 END ========================= */

/* ========================= CONTENT PREVIEW 4 START ========================= */

.content-preview-4 {
    left: initial;
    top: initial;
    grid-row: 4;
    height: 20vh;
}

.content-preview-4-text {
    max-width: 100%;
    
}

/* ========================= CONTENT PREVIEW 4 END ========================= */

/* ========================= FAQ CONTAINER START ========================= */

.faq {
    height: fit-content;
    background: radial-gradient(circle at right top, #2c2c2c 0%, #1a1a1a 100%);
    padding-bottom: 30vh;
    padding-top: 20vh;
}
/* ========================= FAQ CONTAINER START ========================= */

/* ========================= PURCHASE CONTAINER START ========================= */

.purchase-container {
    margin-top: 0;
    padding-top: 15vh;
    padding-bottom: 10vh;
    display: flex;
    justify-content: center;
}

.purchase-container-inner {
    font-family: 'Open Sans', serif;
    font-weight: bold;
    color: white;
    background-color: #c6313d;
    font-size: 8vh;
    border-radius: 5%;
    max-width: 80vw;
    max-height: 80vh;
    background: linear-gradient(135deg,#ff5b4c  0%, 50%, #c6313d 100%);
    box-shadow: 0 20px 25px rgba(15, 15, 15, 0.9),
        0 0 8px rgba(255, 255, 255, 0.05);
}

.purchase-container-inner-inner {
    padding: 1.5rem;
    max-width: 100%;
    max-height: 100%;
    display: grid;
    grid-template-rows: 10% 80% 10%;
    height: 70vh;
    justify-content: center;
    
}

.purchase-container-inner-title-text {
    margin: 0;
    font-size: 4vh;
    margin: 0;
}

.purchase-container-inner-description-container {
    max-width: 100%;
    font-size: 2vh;
    align-self: center;
}

.purchase-container-inner-description-container > p {
    margin: 4%;
    margin-left: 3%;
}

.purchase-container-inner-button {
    background-color: white;
    border: 0;
    border-radius: 25px;
    color: #c6313d;
    font-family: 'Open Sans', serif;
    font-size: 20%;
    font-weight: 1000;
    transition: 200ms ease-in-out;
}

.purchase-container-inner-button:hover {
    cursor: pointer;
    transform: scale(1.02);
    box-shadow: white 0px 0px 5px;
}

/* ========================= PURCHASE CONTAINER START ========================= */


/* ========================= EXPERTS REVIEW START =========================*/
/* Star container with tilt + wiggle + zoom */

.review {
    display: none;
    position: absolute;
    top: 160vh;
    flex-flow: column;
    left: 5vw;
    font-family: 'Open Sans', serif;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    font-style: oblique;
}

.review__title-text {
    display: none;
}

.review > p {
    margin: 0;
}

/* ========================= EXPERTS REVIEW END =========================*/



.faq-title-container {
    margin:0;
    padding-top: 3vh;
    margin-left: 10vw;
    text-decoration: underline white;
}

.faq-title {
    color: white;
    font-weight: 700;
    font-size: 6vh;
}

.faq-jett-thinking {
    max-height: 10vh;
    position: absolute;
    right: 5vw;
    top: 243vh;
}

.faq-questions-container {
    font-size: 2vh;
    color: white;
    padding-left: 10vw;;
}

.faq-question {
    margin: 0;
    display: inline;
    padding-left: 1vw;
    line-height: 2vh;
}

.faq-question-container {
    display: flex;
    flex-direction: row;  
    align-items: center; 
}

.faq-question-container:hover {
    cursor: pointer;
}

.faq-questions-button {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #f5f0eb;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.1s ease-in-out;
    transform: rotate(0deg);
    transform-origin: center; 
}


/* Rotates the button when the container is open */
.faq-question-container[data-state="open"] .faq-questions-button {
    transform: rotate(90deg);
}

.faq-answer-container {
    padding-left: 5vw;
    padding-right: 5vw;
    display: none;
}

/* ========================= FAQ CONTAINER END ========================= */

/* ========================= FEATURES CONTAINER START ========================= */

.footer {
    background-color: #1a1a1a;
    height: 20vh;
    box-shadow: 0 -8px 10px rgba(0, 0, 0, 0.5);
    display: grid;
}

.footer-coming-soon {
    grid-column: 2 / 5;
    justify-self: center;
    align-self: center;
    color: white;
    font-size: 3vh;
    font-weight: 600;
    }
}