body {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #201c1c 100%),
        url('background.png') no-repeat center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-position 0.1s ease;
    color: white;
}


.site-container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}


hr {
    border: 0px solid #ccc;
    margin: 0px 0;
}

img {
    max-width: 100%;
    height: auto;
}



a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

a:hover {
    color: #00ff00;
}

a:hover::after {
    transform: scaleX(1);
}



.audio-wrapper {
    max-width: 400px;
    margin: 20px auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

audio {
    width: 20%;
    background: transparent;
    filter: invert(1) brightness(0.8) contrast(1.2);
    border-radius: 8px;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
   pointer-events: none;
   user-select: none;
}
