/* orbitron-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/orbitron-v31-latin/orbitron-v31-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/orbitron-v31-latin/orbitron-v31-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

  html, body {
    padding: 0;
    margin: 0;
}
body {
    background: linear-gradient(to bottom, #000428, #004e92);
    color: #00FFFF;
    font-family: 'Orbitron';
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
}
h1 {
    font-size: clamp(2em, 5vw, 3em);
    margin-bottom: 30px;
    margin-top: 5px;
    text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF;
    padding: 10px 0;
}
.content {
    background: linear-gradient(to bottom, #141E30, #243B55);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.cover img, .audio-player, .text-container, .disclaimer {
    width: 100%;
    max-width: 600px;
}
.cover img {
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    margin: 20px auto;
}
.audio-player {
    margin-top: 20px;
    background: #081C24;
    border-radius: 10px;
    padding: 10px;
    border: 2px solid #00FFFF;
}
audio::-webkit-media-controls-panel {
    background-color: #081C24;
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-volume-slider-container,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    filter: invert(100%);
}
.text-container, .disclaimer {
    background: rgba(0, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    margin-top: 30px;
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
}
.disclaimer {
    background: rgba(0, 255, 255, 0.4);
    color: #fff;
    padding: 15px;
    font-size: 0.9em;
    font-size: .85rem;
}
.footer {
    margin-top: 30px;
    padding: 15px;
    color: #fff;
    width: 100%;
    text-align: center;
}
.footer a {
    color: #00FFFF;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}
p {
    margin: 0;
    font-size: 1.2em;
}
@media (max-width: 768px) {
    .content {
        padding: 30px;
    }
    .text-container, .disclaimer {
        padding: 15px;
    }
    .cover img {
        width: 100%;
    }
}