:root{
    --background-card-color: rgba(65, 89, 128, 0.2);
    --background-popup-color: rgb(30, 41, 59);
    --small-header-color: #7a97d6;
    --text-not-important-color: #596c95;
    --hover-color: rgba(83, 103, 137, 0.4);
    --slider-color: rgba(65, 89, 128, 0.4);
    --slider-hover-color: rgba(83, 103, 137, 0.6);
    --game-white-border: rgba(230, 230, 230, 0.7);
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: #050b19;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container {
    text-align: center;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: 70px;
    margin-bottom: 5px;
    margin-top: 25px;
}

.title {
    font-size: 50px;
    margin-top: 5px;
    margin-bottom: 45px;
}

.faq {
    width: 350px;
    max-width: 450px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--background-card-color);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: var(--background-card-color);
    border: none;
    color: #e5e7eb;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.blur {
    backdrop-filter: blur(4px);
}


.faq-question:hover {
    background-color: var(--hover-color);
}

.changelog-version:hover {
    background-color: var(--hover-color);
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 15px;
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
    text-align: left;
}

footer {
    font-size: 13px;
    color: #64748b;
    margin-top: 50px;
    margin-bottom: 50px;
}

.changelog {
    width: 100%;
    max-width: 650px;
    text-align: left;
    margin: 40px auto 0;
}

.h2-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e5e7eb;
    text-align: center;
}

.changelog-version {
    background-color: var(--background-card-color);
    border-radius: 8px;
    padding: 15px 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.changelog-version .changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.changelog-version h3 {
    font-size: 18px;
    margin: 0;
    color: var(--small-header-color);
}

.changelog-version p {
    font-size: 13px;
    color: var(--text-not-important-color);
    margin: 0;
    padding: 0;
}

.changelog-version ul {
    list-style-type: disc;
    font-size: 15px;
    color: #cbd5e1;
    margin-left: 20px;
    padding-left: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.changelog-divider {
    border: none;
    height: 1px;
    background-color: #162f65;
    margin: 20px 0;
}

.game-container {
    width: 80%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    position: relative;
}

body::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: var(--slider-color);
  border-radius: 0;
  transition: all 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--slider-hover-color);
}

canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.description {
    width: 80%;
    text-align: left;
    margin: 10px auto 0;
    background-color: var(--background-card-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.description p {
    padding: 15px 15px;
    color: #cbd5e1;
    font-size: 16.5px;
    letter-spacing: 0.2px;
}

.description:hover {
    background-color: var(--hover-color);
}

/* NOT AVAILABLE YET */
.not-available-yet {
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: white;

    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 20px;
    font-size: 2rem;
    border-radius: 8px;
    display: flex;
}

@media (max-width: 480px) {
    footer {
        font-size: 11.5px;
    }

    .changelog {
        width: 90%;
        max-width: none;
    }

    .description {
        width: 80%;
        max-width: none;
    }

    .title {
        font-size: 30px;
    }
}