@font-face {
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
    font-style: normal;
    src: url('/fonts/Roman.ttf') format('truetype');
}

* {
    font-family: 'Neue Haas Grotesk', sans-serif;
}

img {
    -webkit-user-drag: none;
}

body {
    background-color: #f4f4f9;
    font-family: 'Neue Haas Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.faq-container {
    display: flex;
    margin-top: 5%;
    margin-left: 2%;
    height: 90vh;
}

.faq-questions {
    width: 400px;
    margin-right: 20px;
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}

.faq-questions ul {
    list-style-type: none;
    padding: 0;
}

.faq-question {
    cursor: pointer;
    padding: 8px;
    background-color: transparent;
    margin-left: 5px;
    margin-bottom: 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.faq-questions::-webkit-scrollbar {
    width: 8px;
    opacity: 1;
}

.faq-questions::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 10px;
}

.faq-questions::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3;
    opacity: 0.5;
}

.faq-questions::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

.faq-question:hover {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
}

.faq-question.active {
    background-color: #d0d0f0;
    font-weight: bold;
}

.faq-answers {
    flex: 1;
    height: 50vh;
    width: 60vw;
    overflow-y: auto;
    padding-right: 10px;
}

.faq-answer {
    display: none;
    margin-bottom: 20px;
}

.faq-answer h2 {
    font-size: 1.2rem;
}

.faq-answer p {
    font-size: 1rem;
}

.faq-toggle-button {
    display: none;
}

/* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* MOBILE /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */

@media screen and (max-width: 1090px) {
    body {
        justify-content: flex-start;
        padding: 10px;
    }

    .faq-container {
        flex-direction: column;
        margin-top: 10%;
        margin-left: 0;
    }

    .faq-questions {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        display: none;
    }

    .faq-answers {
        width: 100%;
        height: auto;
        padding-right: 0;
    }

    .faq-questions.show {
        display: block;
    }

    .faq-toggle-button {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 20px;
        display: block;
    }

    .faq-toggle-button:hover {
        background-color: #0056b3;
    }
}

/* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* DARK MODE /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */

body.dark-mode {
    background-color: #2a2a2a;
    color: #f4f4f4;
}

body.dark-mode * {
    color: #f4f4f4
}

body.dark-mode a {
    color: #1E90FF;
}

body.dark-mode .faq-question.active {
    background-color: #2c3e50;
}

/* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* NAVBAR /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #181818;
    padding: 8px 17px;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-left, .navbar-center, .navbar-right {
    display: flex;
    align-items: center;
}

.navbar-left {
    justify-content: flex-start;
    gap: 20px;
}

.navbar-center {
    justify-content: center;
    align-items: center;
}

.navbar-right {
    justify-content: flex-end;
    gap: 20px;
    margin-right: 30px;
}

.logo {
    max-width: 100px;
    max-height: 50px;
    object-fit: cover;
    margin-top: 5px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    gap: 50px;
    position: relative;
    margin-right: 20px;
}

.menu-button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.menu-button:hover {
    color: #9eccff;
}

.menu-popup {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #282828;
    border-radius: 5px;
    padding: 10px;
    width: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.menu-popup button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 8px;
    cursor: pointer;
}

.menu-popup button:hover {
    background: #404040;
}
.menu {
    gap: 15px;
}

.spotify-button {
    background-color: #1db954;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.spotify-button:hover {
    background-color: #4caf50;
    color: #9eccff;
}

.close-btn {
    width: 100%;
    background-color: transparent;
    color: white;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #ff4d4d;
}

.bold-section {
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    .main-content {
        margin-top: 10%;
    }
}

@media screen and (max-width: 800px) {
    .info-table {
        width: 90%;
    }

    .top-section {
        margin-bottom: 6%;
    }
}

@media screen and (max-width: 768px) {
    .ts {
        display: inline;
    }

    .main-content {
        margin-top: 10%;
        padding: 3px;
    }

    .info-table {
        width: 90%;
    }

    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .tab-button {
        flex: 1 0 100%;
        padding: 10px;
        margin-bottom: 5px;
    }

    .container {
        display: inline-block;
        padding: 10px;
    }

    .menu {
        display: inline;
    }

    .tabs {
        margin-top: 10%;
    }

    h1, h2, h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 550px) {
    .main-content {
        margin-top: 25%;
    }
}

@media screen and (max-width: 480px) {
    .tab-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    h1 {
        font-size: 1.25rem;
    }

    h2, h3 {
        font-size: 1rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .tab-button {
        flex: 1 0 48%;
        margin-right: 5px;
        margin-bottom: 10px;
    }
}
