:root {
    /* Sampled from the typical dark background of such images */
    --bg-color: #111111; 
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    
    /* Rainbow colors from the oleron flyer */
    --rb-red: #c33830;
    --rb-orange: #df7b33;
    --rb-yellow: #e4b942;
    --rb-green: #809c48;
    --rb-blue: #3590aa;
    --rb-purple: #644170;

    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background glow */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, rgba(17,17,17,0) 60%);
    animation: pulseGlow 10s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 10px;
    color: var(--text-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--rb-red), var(--rb-yellow), var(--rb-blue));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 2rem 6rem; /* Equal top and bottom padding for better vertical balance */
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    animation: fadeInDown 1.2s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.dot {
    font-size: 0.5em;
    vertical-align: middle;
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.4);
}

.title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-right: -0.15em; /* Compensate tracking for centering */
    margin-bottom: 2rem;
    color: var(--text-primary);
    animation: fadeInUp 1.2s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.artwork-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto; /* Removed bottom margin to give us better control below */
    animation: fadeIn 1.5s ease 0.8s forwards;
    opacity: 0;
}

.artwork-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Add an inset shadow to blend the image seamlessly into the background */
.artwork-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 80px 40px var(--bg-color);
    pointer-events: none;
    border-radius: 20px;
}

.hero-artwork {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    /* The transform will be manipulated by JS, initial state here */
    transform: perspective(1000px) rotateX(0) rotateY(0);
    will-change: transform;
}

/* Producer Logo */
.producer-logo {
    position: fixed;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 90;
    text-decoration: none;
}

.producer-logo:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.producer-logo span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.producer-logo img {
    height: 25px;
}

/* Rainbow bottom divider */
.rainbow-divider {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, 
        var(--rb-red) 0%, var(--rb-red) 16.6%,
        var(--rb-orange) 16.6%, var(--rb-orange) 33.3%,
        var(--rb-yellow) 33.3%, var(--rb-yellow) 50%,
        var(--rb-green) 50%, var(--rb-green) 66.6%,
        var(--rb-blue) 66.6%, var(--rb-blue) 83.3%,
        var(--rb-purple) 83.3%, var(--rb-purple) 100%
    );
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}

/* CTA Button */
.cta-container {
    margin-top: 4rem; /* Adds the space between artwork and button */
    animation: fadeInUp 1s ease 1.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn {
    display: inline-block;
    /* Use explicit pixels for padding to aggressively force optical centering */
    padding-top: 22px; 
    padding-bottom: 16px; /* 6px less bottom padding to counter the font's invisible descender space */
    padding-left: 56px;
    padding-right: 52px; /* 4px less right padding to counter the 4px letter-spacing */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1; /* Keep line-height flat so padding is exactly what we set */
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    color: var(--text-primary);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.btn:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

@keyframes rainbowShift {
    to {
        background-position: 100% center;
    }
}

.btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 6px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding-top: 10rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    .logo {
        font-size: 1.5rem;
    }
    .btn {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
}

/* --- PAGE SECTIONS --- */
.page-section {
    min-height: 100vh;
    padding: 8rem 2rem 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.bg-darker {
    background-color: #080808;
}

.section-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--rb-red), var(--rb-blue));
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* Tour Section */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tour-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.tour-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rb-orange);
    width: 120px;
    letter-spacing: 2px;
}

.tour-details {
    flex: 1;
}

.tour-details h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.tour-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-small {
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-small:hover {
    border-color: transparent;
}

/* Band Section */
.band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.band-member {
    text-align: center;
    padding: 2.5rem 0.5rem; /* Reduced horizontal padding to give the name more room */
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
}

.band-member:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #151515;
    margin: 0 auto 1.5rem;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.band-member:nth-child(1):hover .member-photo { border-color: var(--rb-red); box-shadow: 0 0 20px rgba(195,56,48,0.3); }
.band-member:nth-child(2):hover .member-photo { border-color: var(--rb-yellow); box-shadow: 0 0 20px rgba(228,185,66,0.3); }
.band-member:nth-child(3):hover .member-photo { border-color: var(--rb-green); box-shadow: 0 0 20px rgba(128,156,72,0.3); }
.band-member:nth-child(4):hover .member-photo { border-color: var(--rb-blue); box-shadow: 0 0 20px rgba(53,144,170,0.3); }

.band-member h3 {
    font-size: 0.95rem; /* Reduced to fit long names */
    font-weight: 400;
    letter-spacing: 1px; /* Reduced to fit */
    margin-bottom: 0.5rem;
    white-space: nowrap; /* Force the name to stay on a single line */
}

.band-member p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-glow-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.contact-card.booking:hover {
    border-color: rgba(223, 123, 51, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 40px rgba(223, 123, 51, 0.1) inset;
}

.contact-card.newsletter:hover {
    border-color: rgba(53, 144, 170, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 40px rgba(53, 144, 170, 0.1) inset;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.text-orange { color: var(--rb-orange); }
.text-blue { color: var(--rb-blue); }

.contact-email {
    font-size: clamp(0.9rem, 5vw, 1.6rem);
    font-weight: 200;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.contact-card.booking:hover .contact-email {
    color: var(--rb-orange);
    text-shadow: 0 0 15px rgba(223, 123, 51, 0.4);
}

.card-desc {
    color: var(--text-secondary);
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1.8;
}

.contact-card.newsletter .card-desc {
    margin-top: 0;
}

/* Modern Form */
.newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
}

.form-group-modern {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.form-group-modern input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 0;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.form-group-modern input::placeholder {
    color: rgba(255,255,255,0.3);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--rb-blue);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group-modern input:focus ~ .input-focus-border {
    width: 100%;
}

.submit-btn-modern {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 1rem 2rem;
    border-radius: 40px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.submit-btn-modern:hover {
    background: rgba(255,255,255,0.05);
    border-color: white;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.form-message {
    font-size: 0.9rem;
    margin-top: -0.5rem;
    display: none;
    letter-spacing: 0.5px;
}

.form-message.success { color: #4ade80; }
.form-message.info { color: #60a5fa; }
.form-message.error { color: #f87171; }

/* Legacy Form Styles (kept for construction.html and newsletter.html) */
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: white;
    font-family: var(--font-main);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--rb-blue);
}

.submit-btn {
    align-self: flex-start;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    border-color: transparent;
}

/* Rainbow Border Edge Animation for all buttons */
.btn::after, .btn-small::after, .submit-btn::after, .submit-btn-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit; 
    padding: 2px; /* Thickness of the glowing border */
    background: linear-gradient(90deg, 
        var(--rb-red) 0%, var(--rb-red) 8.333%, 
        var(--rb-orange) 8.333%, var(--rb-orange) 16.666%, 
        var(--rb-yellow) 16.666%, var(--rb-yellow) 25%, 
        var(--rb-green) 25%, var(--rb-green) 33.333%, 
        var(--rb-blue) 33.333%, var(--rb-blue) 41.666%, 
        var(--rb-purple) 41.666%, var(--rb-purple) 50%,
        var(--rb-red) 50%, var(--rb-red) 58.333%, 
        var(--rb-orange) 58.333%, var(--rb-orange) 66.666%, 
        var(--rb-yellow) 66.666%, var(--rb-yellow) 75%, 
        var(--rb-green) 75%, var(--rb-green) 83.333%, 
        var(--rb-blue) 83.333%, var(--rb-blue) 91.666%, 
        var(--rb-purple) 91.666%, var(--rb-purple) 100%
    );
    background-size: 200% auto;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.btn:hover::after, .btn-small:hover::after, .submit-btn:hover::after, .submit-btn-modern:hover::after {
    opacity: 1;
    animation: rainbowShift 2s linear infinite;
}

@media (max-width: 1100px) {
    .band-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .tour-date {
        width: auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .band-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================================
   AUDIO PLAYER
   ========================================================================= */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.player-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
}

/* Using the rainbow gradient as the "played" progress */
.progress-fill {
    width: 0%; /* Start at 0 */
    height: 100%;
    background: linear-gradient(to right, 
        var(--rb-red), var(--rb-orange), var(--rb-yellow), 
        var(--rb-green), var(--rb-blue), var(--rb-purple)
    );
    background-size: 100vw 100%;
    background-position: left center;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 5px rgba(255,255,255,0.8);
}

.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 0%;
    min-width: 0;
}

.album-art {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex: 1 1 0%;
    min-width: 0;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.play-btn {
    font-size: 1.8rem;
    color: white;
}

.control-btn:hover {
    color: var(--rb-blue);
    transform: scale(1.1);
}

.track-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    min-width: 0;
}

.track-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.track-time {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vol-icon {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.vol-bar {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.vol-fill {
    width: 70%;
    height: 100%;
    background: var(--text-secondary);
    border-radius: 2px;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1 1 0%;
    justify-content: flex-end;
    min-width: 0;
}

.producer-logo-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.producer-logo-inline:hover {
    opacity: 1;
}

.producer-logo-inline span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.producer-logo-inline img {
    height: 22px;
}

@media (max-width: 600px) {
    .player-content {
        padding: 0.8rem 1rem;
    }
    .player-right {
        display: none;
    }
    .player-left {
        flex: 2;
    }
    .player-controls {
        flex: 1;
        justify-content: flex-end;
        gap: 1rem;
    }
    .track-title {
        font-size: 0.75rem;
    }
    .album-art {
        width: 35px;
        height: 35px;
    }
}

/* =========================================================================
   PAGE OVERRIDES (Fixed Navbar & Hero Adjustments)
   ========================================================================= */
.navbar {
    position: fixed !important;
    padding: 1rem 5% !important;
    background: rgba(5, 5, 5, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
}

.hero {
    padding-top: 8.5rem !important;
    padding-bottom: 6rem !important;
}

.hero-content {
    min-height: calc(100vh - 14.5rem);
    justify-content: center;
    gap: clamp(0.75rem, 1.8vh, 1.5rem);
}

.artwork-container {
    width: min(78vw, 760px);
    margin-top: clamp(0.75rem, 2vh, 1.5rem);
}

.subtitle {
    font-size: 0.78rem !important;
    letter-spacing: 0.42rem !important;
    margin-right: -0.42rem !important;
    opacity: 0.62 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 600px) {
    .subtitle {
        font-size: 0.55rem !important;
        letter-spacing: 0.25rem !important;
        margin-right: -0.25rem !important;
    }
}

.title {
    font-size: clamp(3.2rem, 7vw, 5.6rem) !important;
    letter-spacing: clamp(0.7rem, 2vw, 1.5rem) !important;
    margin-right: calc(clamp(0.7rem, 2vw, 1.5rem) * -1) !important;
    margin-bottom: 0 !important;
}

.producer-logo {
    bottom: 6rem !important;
}

/* =========================================================================
   VIDEO BACKGROUND
   ========================================================================= */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-color);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    filter: grayscale(30%);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0.95) 100%);
    z-index: 1;
}

body { background-color: transparent !important; }

/* =========================================================================
   NEWSLETTER PAGE SPECIFIC
   ========================================================================= */
body.newsletter-body { 
    background-color: var(--bg-color) !important; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    margin: 0; 
    padding: 1rem;
}

.newsletter-page-container {
    width: 100%;
    max-width: 480px;
    padding: 3.5rem 2.5rem;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: fadeIn 0.8s ease forwards;
}

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

.newsletter-page-container .site-logo {
    font-size: 2.8rem;
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-decoration: none;
    color: white;
    display: inline-block;
    line-height: 1;
}

.newsletter-artwork {
    width: 100%;
    max-width: 250px;
    margin: 0.5rem auto 1.5rem;
    display: block;
}

.back-link {
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
}
