h1, h2 {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 20px;
    display: flex;
    justify-content: center;
    color: white;
}

.music-card {
    position: relative;
    border: 1px solid #ff4d4d33;  
    background-color: #0f0202bf; 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff; 
    border-radius: 8px;
    padding: 16px;
    margin: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 20px #00000080; 
}

.parent-container {
    display: flex;
    justify-content: space-between;
}

p {
    margin: 20px;
    display: flex;
    justify-content: center;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: white;
}

.status-badge, .track-title, .track-artist, #track-title, #track-artist {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.about {
    margin: 10px;
    justify-content: center;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 35px;
    display: block;
}

.gradient-red {
    background: linear-gradient(to right, #ff4d4d, #a30b0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.button {
    display: block;
    margin: 120px auto 40px auto; 
    background-color: #3a0202;
    color: #ffffff;
    border-color: #ff4d4d;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    position: fixed;
    z-index: 100;
    transition: background 0.3s;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}

footer {
    position: fixed;
    z-index: 1;
    color: white;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 0 20px;
    text-align: center;
}

footer::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 280px;
    background-image: url('assets/Footer_Art.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

body {
  background: linear-gradient(to bottom, #990000 0%, #3a0202 70%, #000000 100%);
  background-attachment: fixed;
  margin: 0;
}

a {
    color: #ff4d4d;
}

.guestbook-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    background-color: #0f0202bf;
    backdrop-filter: blur(10px);
    border: 1px solid #ff4d4d33;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    box-sizing: border-box;
    z-index: 5;
}

.guestbook-container iframe {
    width: 100%;
    height: 340px;
    border: none;
    border-radius: 8px;
    display: block;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.guestbook-container iframe::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: hidden;
}