body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: center;
    text-shadow: 0px 0px 10px #000000;
    font-family: opensans-semibold;
    font-size: 24px;
}

header {
    position: relative;
    text-align: center;
    color: white;
    z-index: 0;
    overflow: hidden;
}

.header-background {
    position: relative;
    background: url('../pics/reel/header.png') center / cover no-repeat;
    padding: 2em;
    z-index: 0;
}

.header-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
    pointer-events: none;
}

header * {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    font-family: opensans-bold;
}

h2 {
    margin-top: 0.5em;
    font-size: 1.5em;
    font-family: opensans-semibold;
}

ul {
    width: 70%;
    margin: auto;
}

.section {
    position: relative;
    border-top: 1px solid #000000; /* Thin border on top */
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0px 0px 16px inset rgba(0, 0, 0, 1); /* Soft shadow to separate */
    color: white;
    overflow: hidden;
    z-index: 0;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


.section .content {
    position: relative;
    z-index: 2;
}

.anime {
    background-image: url('../pics/reel/anime.png');
    background-size: cover;
    background-position: center;
}

.edm {
    background-image: url('../pics/reel/edm.jpg');
    background-size: cover;
    background-position: center;
}

.metal {
    background-image: url('../pics/reel/rock-metal.jpg');
    background-size: cover;
    background-position: center;
}

.isw {
    background: linear-gradient(to bottom, black, #7d40da);
    background-size: cover;
    background-position: center;
}

.section h2 {
    color: #fff;
}

.track-list {
    list-style-type: none;
    padding: 0;
}

.music-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.music-group li {
    margin-right: 10px;
    margin-bottom: 10px;
}

.music-group h3 {
    width: 100%;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

.track:hover {
    color: #ff9900;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1em;
    background: url("https://i.pinimg.com/originals/c6/c1/1d/c6c11d8ba0b9f26caf0a6a8ee3a3e78e.gif") center;
    background-size: 100% auto;
    color: white;
}

a {
    color: #ff6f61;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#audio {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 720px;
    transition: bottom 0.3s ease;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
}

#audio.show {
    bottom: 0;
}

button {
    background-color: #ff6f61;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #e05a47;
}

button:hover {
    background-color: #e05a47;
}