* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0e14;
    --accent-color: #5fb3b3;
    --text-color: #c7ccd1;
    --text-dim: #7d8690;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0e14 0%, #1a2332 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    margin-bottom: 50px;
}

.band-name {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(95, 179, 179, 0.3);
}

.band-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-dim);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.album-cover-wrapper {
    margin: 0 auto 40px;
    max-width: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(95, 179, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-cover-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(95, 179, 179, 0.2);
}

.album-cover {
    width: 100%;
    height: auto;
    display: block;
}

.album-info {
    margin-bottom: 40px;
}

.album-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.status {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--accent-color);
    letter-spacing: 0.15em;
    font-weight: 300;
    text-transform: uppercase;
}

.audio-section {
    margin: 50px auto;
    max-width: 500px;
}

.audio-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.audio-player {
    width: 100%;
    outline: none;
    border-radius: 50px;
    background: rgba(95, 179, 179, 0.1);
    padding: 5px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.audio-player::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(10, 14, 20, 0.9));
    border-radius: 50px;
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-mute-button {
    background-color: var(--accent-color);
    border-radius: 50%;
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--text-color);
}

.audio-player::-webkit-media-controls-timeline {
    background: rgba(125, 134, 144, 0.3);
    border-radius: 25px;
}

footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(95, 179, 179, 0.2);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    header {
        margin-bottom: 30px;
    }

    .album-cover-wrapper {
        margin-bottom: 30px;
    }

    .audio-section {
        margin: 40px auto;
    }

    footer {
        margin-top: 60px;
    }
}
