html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
    background-color: #181818;
}

body {
    background-color: #181818;
    padding: 0px 50px 100px 50px;
    gap: 80px;
    opacity: 1; /* Fixed from 0px which was probably a typo in the original */
    margin: 0;
}

/* Menu Styles */
.top-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #181818;
    border-bottom: 1px solid #2F2F2F;
    margin: 0 -50px 50px -50px;
    /* Negative margin to span full width over body padding */
    padding: 0 50px;
    /* Restore padding inside menu */
}

.menu-container {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    gap: 40px;
}

.top-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Castoro Titling", serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.top-menu a:hover {
    color: #9E976A;
}

.burger-btn {
    display: none;
}

.mobile-menu-logo {
    display: none;
}

@media screen and (max-width: 800px) {
    .top-menu {
        margin: 0 -10px 30px -10px;
        border-bottom: none;
    }

    .mobile-menu-logo {
        display: block;
        width: 120px;
        margin-bottom: 10px;
    }

    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        position: absolute;
        right: 20px;
        top: 22.5px;
        z-index: 1100;

        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .burger-btn.show,
    .top-menu.open .burger-btn {
        opacity: 1;
        pointer-events: auto;
    }


    .burger-btn span {
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .menu-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: #181818;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        padding-top: 80px;
        gap: 30px;
        overflow-y: auto;
    }

    .top-menu.open .menu-container {
        transform: translateX(0);
    }

    .top-menu.open .burger-btn span:nth-child(1) {
        transform: rotate(45deg);
    }

    .top-menu.open .burger-btn span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .top-menu.open .burger-btn span:nth-child(3) {
        transform: rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

main {
    gap: 30px;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    background-color: #181818;
    width: 100%;
}

.mute {
    display: none;
}

h1,
h2,
p {
    color: #FFFFFF;
}

p {
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.tracklist {
    gap: 12px;
    padding: 5px;
}

.track-info {
    color: #ffffff;
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
}

.controls {
    display: flex;
    flex-direction: row;
    height: 55px;
    width: 50%;
    padding: 5px 20px 5px 20px;
    margin-bottom: 5px;
    margin-top: 5px;
    border-radius: 100px 100px 100px 100px;
    opacity: 1;
    border: 2px solid #2F2F2F;

    align-items: center;
}


.play-pause-btn {
    background: none;
    border: none;
    color: #c0c0c0;
    font-size: 24px;
    cursor: pointer;
}

.mute-btn {
    background: none;
    border: none;
    color: #c0c0c0;
    font-size: 24px;
    cursor: pointer;
}

.progress {
    flex-grow: 3;
    height: 4px;
    background: #333;
    cursor: pointer;
}

.progress-bar {
    left: 0;
    top: 0;
    height: 100%;
    background: #c0c0c0;
    width: 0%;
}


.time-display {
    color: #c0c0c0;
    margin: 0 20px;
    text-align: center;

    font-family: Arial;
    font-size: 10px;
    font-weight: 400;
    line-height: 11.5px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.info em {
    color: #9E976A;
}

.info a {
    color: #FFFFFF;
}

.track a {
    color: #FFFFFF;
}

header {
    text-align: center;
    gap: 0px;
    opacity: 1;
}

.controls {
    border: 2px solid #2F2F2F;
    transition: border-color 0.3s ease;
}


.streamer h2 {
    font-family: Castoro Titling;
    font-size: 32px;
    font-weight: 400;
    line-height: 42.56px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    clear: both;
    display: block;
}

.streamer-alternative h2 {
    font-family: Castoro Titling;
    font-size: 32px;
    font-weight: 400;
    line-height: 42.56px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #9E976A;
    clear: both;
    display: block;
}

.text-boxes {
    gap: 26px;
    opacity: 1;
}

.ffo {
    max-width: 659px;
}

.socials {
    max-width: 180px;
}


.artwork {
    max-width: fit-content;
}

.artwork img {
    width: 100%;
}

footer {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 32px;
}

footer img {
    width: 240px;
}

.centered-content-section {
    width: 66%;
    margin: 80px auto;
    color: #FFFFFF;
    text-align: center;
}

.centered-content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.centered-content-section img.interstice {
    max-width: 300px;
}

.centered-content-section video {
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.centered-content-section iframe {
    max-width: 100%;
}

.merch-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.merch-grid>* {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
}

.merch-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tour Schedule Styles */
.tour-schedule {
    text-align: left;
    margin: 40px auto;
    max-width: 600px;
}

.tour-year h3 {
    font-family: "Castoro Titling", serif;
    color: #9E976A;
    border-bottom: 1px solid #2F2F2F;
    padding-bottom: 10px;
    margin-top: 30px;
}

.tour-list {
    list-style: none;
    padding: 0;
    font-family: Arial, sans-serif;
}

.tour-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2F2F2F;
}

.tour-date {
    font-weight: bold;
    min-width: 120px;
}

.tour-location {
    text-align: right;
    flex-grow: 1;
}

.tour-list del {
    color: #666;
    text-decoration: line-through;
}

@media screen and (max-width: 800px) {
    .centered-content-section {
        width: 90%;
        margin: 40px auto;
    }
}

.wrapper .streamer-alternative h2 {
    line-height: 0px;
}

.descend-title {
    color: #FFFFFF;
    text-transform: uppercase;

    font-family: "Castoro Titling", serif;
    font-size: 92px;
    font-weight: 400;
    line-height: 122.36px;
    letter-spacing: 0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}


@media screen and (min-width: 640px) {
    .flex-container {
        display: flex;
        gap: 30px;
        align-items: center;
        padding-bottom: 80px;
    }


    .track.playing .controls {
        border: 2px solid #9E976A;
    }

    .mute {
        display: none;
    }

    .artwork {
        width: 50%;
        max-width: fit-content;
    }

    .tracklist {
        width: 50%;
    }

    .text-boxes {
        display: flex;
        flex-direction: row;
    }

    .text-box-1 {
        width: 33.333333%;
    }

    .text-box-2 {
        width: 33.333333%;
    }

    .text-box-3 {
        width: 33.333333%;
    }
}

@media screen and (max-width: 428px) {
    body {
        padding: 0px 10px 32px 10px;
        gap: 30px;
        opacity: 1;
        margin: 0;
    }

    .top-menu {
        margin: 0 -10px 30px -10px;
        padding: 0 10px;
    }


    .track {
        transition: border-color 0.3s ease;
    }

    .track.playing {
        border: 2px solid #9E976A;
        border-radius: 10px;
    }

    .artwork,
    .ffo,
    .logo {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container {
        max-width: 428px;
        margin: 0 auto;
        background-color: #181818;
        width: 100%;
    }

    .descend-title {
        font-family: "Castoro Titling", serif;
        font-size: 32px;
        font-weight: 400;
        line-height: 42.56px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    .streamer h2 {
        font-size: 22px;
        font-weight: 400;
        line-height: 24.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;

    }

    .streamer-alternative h2 {
        font-size: 22px;
        font-weight: 400;
        line-height: 24.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;

    }

    .text-boxes {
        padding: 0px 10px 0px 10px;
        gap: 30px;
        opacity: 1;
    }

    .info p {
        font-family: Arial;
        font-size: 16px;
        font-weight: 400;
        line-height: 27.2px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    .tracklist {
        margin-bottom: 30px;
    }

    .track {
        flex-direction: column;
    }

    .track-info {
        width: auto;
        padding-left: 10px;
    }

    .controls {
        flex-grow: 1;
        flex-basis: 1;
        width: auto;
    }


    footer .socials {
        display: flex;
        flex-direction: row;
        justify-items: center;
        align-items: center;
        gap: 32px;
    }
}