:root {
    --bg-color: #0d0e12;
    --text-color: #ffffff;
    --accent-color: #c7d1d9;
    /* Subtle metallic blue-grey from album art */
    --glass-bg: rgba(20, 20, 24, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --hover-glow: rgba(200, 220, 255, 0.1);
    --font-heading: 'Orbitron', sans-serif;
    --font-subheading: 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1f26 0%, #050505 100%);
}

.ambient-light {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(46, 56, 70, 0.3), transparent 60%);
    animation: moveLight 25s infinite alternate ease-in-out;
    filter: blur(80px);
}

.ambient-light-2 {
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(80, 70, 60, 0.15), transparent 50%);
    /* Warm undertone */
    animation: moveLight2 30s infinite alternate ease-in-out;
    filter: blur(100px);
}

@keyframes moveLight {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15%, 15%) scale(1.1);
    }
}

@keyframes moveLight2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-10%, -10%) scale(1.2);
    }
}

/* Site Layout */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

.site-header {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
}

.artist-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.release-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    /* More angular/tech feel as per image */
    padding: 40px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

@media (min-width: 850px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        /* Spread out */
        align-items: center;
        padding: 20px;
    }
}

/* Album Art */
.album-art-container {
    position: relative;
    width: 350px;
    max-width: 100%;
    aspect-ratio: 1;
    /* Keep it square */
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transition: transform 0.1s ease-out;
    perspective: 1000px;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(100, 120, 140, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.album-art-container:hover .glow-effect {
    opacity: 1;
}

/* Info Section */
.info-section {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 850px) {
    .info-section {
        align-items: flex-end;
        /* Right align on desktop */
        text-align: right;
        padding-left: 40px;
    }
}

.song-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #aab7c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.release-date {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 35px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    display: inline-block;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Angled corners */
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media (min-width: 850px) {
    .platform-btn {
        justify-content: flex-start;
        /* Align icon left, text right flow */
    }
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
    /* Slide left slightly on hover for visual feedback */
}

.platform-btn:hover::before {
    opacity: 1;
}

.icon svg {
    display: block;
    opacity: 0.8;
}

/* Specific Hover Colors for Border/Text Accent (Optional - keeping monochrome for premium feel) */
/* If client wants color, we can re-enable, but monochrome often looks more high-end sci-fi */

/* Footer */
.site-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-subheading);
    letter-spacing: 0.1em;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}