:root {
    --color-bg: #0a0a0a;
    --color-text: #f0f0f0;
    --color-red: #d92323;
    /* Approx match to cover */
    --color-red-dark: #8a1212;
    --color-gray: #1a1a1a;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--color-red);
}

.main-header nav a {
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.main-header nav a:hover {
    color: var(--color-red);
    opacity: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: radial-gradient(circle at center, #1a1010 0%, var(--color-bg) 70%);
}

.album-cover-container {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.album-cover {
    width: 600px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vw;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.album-cover:hover {
    transform: scale(1.02);
}

.album-subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    opacity: 0.8;
    text-transform: uppercase;
    color: var(--color-red);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-red);
    color: white;
    box-shadow: 0 0 20px rgba(217, 35, 35, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(217, 35, 35, 0.6);
}

.btn-sub {
    display: block;
    font-size: 0.65rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.5;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.section-dark {
    background-color: var(--color-gray);
}

.section-red {
    background-color: var(--color-red);
    color: white;
}

.section-red p {
    color: rgba(255, 255, 255, 0.9);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Platform Links */
.platform-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.platform-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.platform-card.archive h3 {
    color: #fff;
}

.platform-card.spotify h3 {
    color: #1DB954;
}

.platform-card.youtube h3 {
    color: #FF0000;
}

.platform-card.drive h3 {
    /* Google Drive Blue */
    color: #4285F4;
}

.center-single {
    justify-content: center;
}

.large-card {
    min-width: 300px;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--color-red);
}

.large-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Newsletter */
.newsletter-form {
    max-width: 400px;
    margin: 2rem auto;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
}

.btn-secondary {
    background: white;
    color: black;
    width: 100%;
}

.btn-secondary:hover {
    background: #ddd;
}

.privacy-note {
    font-size: 0.7rem;
    margin-top: 1rem;
    opacity: 0.5;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}

.legal-links {
    margin-top: 1rem;
}

.legal-links a {
    margin: 0 10px;
    color: #444;
}

.social-footer {
    margin-top: 2rem;
}

.social-footer a {
    margin: 0 1rem;
    font-weight: 600;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */

@media (max-width: 768px) {
    .main-header {
        position: relative;
        /* Fix overlapping */
        flex-direction: column;
        gap: 1.5rem;
        background-color: var(--color-bg);
        padding-bottom: 0;
    }

    .logo {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .main-header nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .main-header nav a {
        margin: 0 1rem;
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding-bottom: 5px;
        border-bottom: 2px solid transparent;
    }

    .main-header nav a:hover {
        border-bottom-color: var(--color-red);
    }

    .hero-section {
        min-height: auto;
        padding-top: 2rem;
    }

    .album-cover {
        width: 280px;
        height: 280px;
    }

    .album-subtitle {
        font-size: 1.2rem;
    }
}