* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    background: #111111;
    color: #fff;
    scrollbar-width: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

html::-webkit-scrollbar {
    display: none;
}

header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: #111111;
}

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

nav {
    display: flex;
    gap: 24px;
}

nav a {
    position: relative;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: white;
}

.intro {
    position: relative;
    color: white;
}

.intro header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

}

.intro-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.intro img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.intro h1 {
    font-size: 64px;
    margin: 0;
}

.intro p {
    font-size: 24px;
}

.music-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.music-grid a {
    display: block;
    border-radius: 12px;

}

.music-grid img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 150ms ease;
}

.music-grid a:hover img {
    transform: scale(1.03);
}

.licence-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.licence-heading {
    text-align: center;
    margin-bottom: 40px;
}

.licence-heading h2 {
    margin: 0 0 12px;
}

.licence-heading p {
    margin: 0;
    color: #aaaaaa;
}

.licence-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.licence-card {
    padding: 32px;
    border: 1px solid #333333;
    border-radius: 12px;
    background: #171717;
}

.licence-card h3 {
    margin: 0;
    font-size: 24px;
}

.licence-price {
    margin: 12px 0 24px;
    font-size: 20px;
}

.licence-description {
    color: #aaaaaa;
    line-height: 1.6;
}

.licence-card ul {
    padding: 0;
    margin: 32px 0 0;
    list-style: none;
}

.licence-card li {
    margin-bottom: 14px;
}

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

.licence-card-header h3 {
    margin: 0;
}

.licence-contact {
    color: inherit;
    text-decoration: none;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
}

.licence-contact:hover {
    background: #222222;
}

/* Contact */

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact-heading h2 {
    margin: 0 0 12px;
}

.contact-heading p {
    margin: 0;
    color: #aaaaaa;
    line-height: 1.6;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    margin-top: 16px;
}


.contact-form input,
.contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 6px;
    background: #171717;
    color: #ffffff;
    font: inherit;
}

.contact-form select {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 36px 12px 12px;
    border: 1px solid #333333;
    border-radius: 6px;
    background: #171717;
    color: #ffffff;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 16px;
    padding: 12px 20px;
    border: 1px solid #333333;
    border-radius: 6px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    cursor: pointer;
}

.contact-note {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    padding: 0 0 20px 0;
}

.contact-note a,
.contact-direct a {
    color: inherit;
}

.contact-direct {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid #333333;
    text-align: center;
}

.contact-direct h3 {
    margin: 0 0 12px;
}

.contact-direct a {
    color: #aaaaaa;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #aaa;
}

.coming-soon {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.coming-soon-card {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.coming-soon-card img {
    width: 320px;
    aspect-ratio: 1;
    object-fit: cover;
}

.coming-soon-content {
    padding: 48px;
}

.coming-soon-label {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #999;
}

.coming-soon-content h2 {
    margin: 0 0 16px;
}

.coming-soon-content p:last-child {
    margin: 0;
    color: #aaa;
    line-height: 1.6;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.faq-categories button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #aaa;
    font: inherit;
    cursor: pointer;
    transition: 150ms ease;
}

.faq-categories button:hover {
    color: #fff;
}

.faq-categories button.active {
    background: #fff;
    color: #111;
}

.credit-copy {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
    padding: 16px;
    background: none;
    border-radius: 12px;
    border: 0.5px solid #999;
    width: fit-content;
}

#credit-text {
    line-height: 1.6;
}

.credit-copy button {
    flex-shrink: 0;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

.credit-copy button:hover {
    opacity: 0.85;
}

footer {
    padding: 48px 0;
    text-align: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.socials a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.socials a:hover {
    opacity: 0.7;
}

footer p {
    margin-top: 24px;
    color: #999;
    font-size: 14px;
}