* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --accent-gold: #c9a227;
    --accent-cream: #f5f0e1;
    --text-muted: #6b6b6b;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #ffffff;
    color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Atmospheric background */
.bg-atmosphere {
    display: none;
}

/* Grain texture overlay */
.grain {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.label-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.5rem;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.15em;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.logo_img {
    display: block;
    width: 120px;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
}

/* Vinyl showcase */
.vinyl-showcase {
    position: relative;
    margin: 2rem 0 4rem;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.vinyl-image {
    max-width: 100%;
    width: 700px;
    height: auto;
    border-radius: 4px;
    box-shadow: 
        0 15px 35px rgba(50, 26, 144, 0.15),
        0 5px 15px rgba(50, 26, 144, 0.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vinyl-image:hover {
    transform: scale(1.05) translateY(-10px);
    cursor: pointer;
}

/* Release info */
.release-info {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.release-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: #321a90;
    margin-bottom: 2.5rem;
}

.description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #321a90;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    background: #321a90;
    padding: 1rem 3rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    background: #4a2bb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 26, 144, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    margin-top: auto;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #321a90;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4a2bb8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 26, 144, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-text {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.version-text {
    font-size: 0.5rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Track buttons */
.track-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.track-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 2px solid #321a90;
    color: #321a90;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.track-btn:hover {
    background: #321a90;
    color: #ffffff;
}

.track-btn.playing {
    background: #321a90;
    color: #ffffff;
}

.track-btn .play-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-btn .play-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.track-credit {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.sources-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* Audio Player Controls */
.audio-player {
    display: none;
    background: #321a90;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    width: 280px;
    animation: fadeInUp 0.2s ease-out;
}

.audio-player.visible {
    display: block;
}

.time-slider-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.time-slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
}

.time-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.time-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.time-slider:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.time-slider:disabled::-webkit-slider-thumb {
    cursor: not-allowed;
}

.time-slider:disabled::-moz-range-thumb {
    cursor: not-allowed;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.player-bottom-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.player-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.player-btn:hover {
    transform: scale(1.1);
}

.player-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.volume-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.15rem;
    display: flex;
    align-items: center;
}

.volume-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.volume-slider {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.cta-wrapper {
    margin-bottom: 2.5rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .vinyl-image {
        width: 100%;
    }

    .label-tag {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}

