:root {
    /* Dark Mode Colors - Matching Vellum App */
    --pure-black: #000000;
    --ink-black: #0A0A0A;
    --dark-grey: #1A1A1A;
    --medium-grey: #2A2A2A;
    --grey: #3A3A3A;
    --light-grey: #8A8A8A;
    --text-grey: #B0B0B0;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    
    /* Accent Colors - Used Sparingly */
    --accent-red: #8B0000;  /* blood-red from dark theme */
    --accent-red-hover: #5C0000;  /* dried-blood from dark theme */
    
    /* Typography */
    --font-display: 'Crimson Text', 'Garamond', serif;
    --font-body: 'Libre Baskerville', 'Georgia', serif;
    --font-ui: 'Inter', -apple-system, system-ui, sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--pure-black);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-12);
    color: var(--white);
    font-weight: 300;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-icon {
    width: 60px;
    height: auto;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    margin-top: var(--space-6);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--light-grey);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Navigation */
.nav-main {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--dark-grey);
}

.nav-main.scrolled {
    padding: var(--space-3) 0;
    background-color: rgba(0, 0, 0, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    cursor: pointer;
}

.nav-logo-img {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-menu a {
    color: var(--text-grey);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-cta {
    color: var(--accent-red) !important;
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--accent-red);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-red);
    color: var(--white) !important;
}

/* Mobile Navigation */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--pure-black);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: var(--space-6) 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-display);
    transition: color 0.3s ease;
    cursor: pointer;
}

.mobile-menu a:hover {
    color: var(--text-grey);
}

.mobile-cta {
    display: inline-block;
    margin-top: var(--space-8);
    padding: var(--space-3) var(--space-6);
    border: 1px solid var(--accent-red);
    color: var(--accent-red) !important;
    font-size: 1.2rem !important;
}

.mobile-cta:hover {
    background: var(--accent-red);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--pure-black);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.5) 50%, 
        rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 0 var(--space-6);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-12);
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.5s ease-out;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
    color: var(--text-grey);
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-ui);
    animation: fadeInUp 1.5s ease-out 0.3s backwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out 0.6s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 2s ease-out 1s backwards;
    z-index: 2;
}

.hero-scroll span {
    display: block;
    font-size: 0.75rem;
    color: var(--light-grey);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-ui);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 1px solid var(--grey);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--light-grey);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Music Video Box */
.music-video-box {
    animation: fadeInUp 1.5s ease-out 0.6s backwards;
}

.video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-preview:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(220, 20, 60, 0.4),
        0 0 60px rgba(220, 20, 60, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-red);
    animation: eerieGlow 2s ease-in-out infinite;
}

@keyframes eerieGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(220, 20, 60, 0.4),
            0 0 60px rgba(220, 20, 60, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(220, 20, 60, 0.6),
            0 0 80px rgba(220, 20, 60, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-music-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.play-music-video:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-music-video svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
}

.video-preview:hover .play-music-video svg {
    color: var(--accent-red);
}

.video-caption {
    margin-top: var(--space-3);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--text-grey);
    letter-spacing: 0.05em;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: var(--space-2);
    transition: all 0.3s ease;
    z-index: 1;
}

.video-modal-close:hover {
    color: var(--accent-red);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: var(--pure-black);
    border-radius: 4px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

/* Mobile adjustments for video modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-modal-close {
        top: var(--space-4);
        right: var(--space-4);
    }
    
    .video-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Buttons */
.btn {
    padding: var(--space-3) var(--space-6);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--grey);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
    background: transparent;
    color: var(--text-grey);
    border-color: var(--grey);
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--light-grey);
}

.btn-small {
    padding: var(--space-2) var(--space-4);
    font-size: 0.75rem;
}

/* Intro Section */
.intro {
    background: var(--ink-black);
    padding: var(--space-20) 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Sections */
section {
    padding: var(--space-20) 0;
    position: relative;
    background: var(--pure-black);
}

/* Releases Section */
.releases {
    background: var(--ink-black);
}

.release-featured {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-20);
}

.release-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.release-image img {
    width: 100%;
    height: auto;
    display: block;
}

.release-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--accent-red);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-ui);
    font-weight: 500;
}

.release-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-3);
    font-weight: 300;
}

.release-type {
    font-size: 0.875rem;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    font-family: var(--font-ui);
}

.release-description {
    font-size: 1.125rem;
    color: var(--text-grey);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.release-quote {
    border-left: 2px solid var(--grey);
    padding-left: var(--space-6);
    margin: var(--space-8) 0;
    font-style: italic;
    color: var(--off-white);
    font-size: 1.25rem;
    font-family: var(--font-display);
}

.release-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Upcoming Releases */
.releases-upcoming {
    margin-top: var(--space-16);
}

.upcoming-title {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: var(--space-8);
    text-align: center;
    font-weight: 300;
}

.releases-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.release-card {
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--grey);
}

.release-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.release-card h4 {
    padding: var(--space-4) var(--space-6);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
}

.release-card p {
    padding: 0 var(--space-6);
    color: var(--text-grey);
    font-size: 0.875rem;
    line-height: 1.6;
}

.release-date {
    display: block;
    padding: var(--space-4) var(--space-6);
    color: var(--light-grey);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-ui);
}

/* World Section */
.world {
    background: var(--pure-black);
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.world-card {
    background: var(--ink-black);
    padding: var(--space-8);
    text-align: center;
    border: 1px solid var(--dark-grey);
    transition: all 0.3s ease;
}

.world-card:hover {
    transform: translateY(-5px);
    border-color: var(--grey);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.world-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    opacity: 0.8;
}

.world-card h3 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 1.5rem;
    font-weight: 300;
}

.world-card p {
    color: var(--text-grey);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Trickle Section */
.trickle-section {
    background: var(--ink-black);
    padding: var(--space-20) 0;
}

.trickle-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-12);
    color: var(--text-grey);
    font-size: 1.125rem;
    line-height: 1.8;
}

.trickle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.trickle-option {
    background: var(--dark-grey);
    padding: var(--space-8);
    border: 1px solid var(--medium-grey);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.trickle-option:hover {
    border-color: var(--grey);
    transform: translateY(-2px);
}

.trickle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    opacity: 0.7;
}

.trickle-option h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-3);
    font-weight: 300;
}

.trickle-price {
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: var(--space-4);
}

.trickle-description {
    color: var(--text-grey);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    flex: 1;
}

.trickle-option.featured {
    border-color: var(--accent-red);
    position: relative;
}

.trickle-option.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-family: var(--font-ui);
}

.trickle-option .btn {
    margin-top: auto;
    align-self: center;
    width: auto;
}

/* Creator Section */
.creator {
    background: var(--pure-black);
    text-align: center;
}

.creator-content {
    max-width: 800px;
    margin: 0 auto;
}

.creator-text {
    font-size: 1.125rem;
    color: var(--text-grey);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

/* Store Section */
.store {
    background: var(--ink-black);
}

.store-grid {
    display: grid;
    gap: var(--space-12);
}

.store-category-title {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: var(--space-6);
    text-align: center;
    font-weight: 300;
}

.store-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.store-item {
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    padding: var(--space-6);
    text-align: center;
    transition: all 0.3s ease;
}

.store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--grey);
}

.store-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: var(--space-4);
}

.store-item-image {
    width: 100%;
    height: 200px;
    background: var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.store-item-image img {
    max-width: 150px;
    height: auto;
}

.store-item h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
    font-weight: 300;
}

.store-item-type {
    color: var(--light-grey);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    font-family: var(--font-ui);
}

.store-item-description {
    color: var(--text-grey);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.store-price {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: var(--space-4);
}

.store-note {
    text-align: center;
    margin-top: var(--space-8);
    color: var(--light-grey);
    font-size: 0.875rem;
    font-style: italic;
}

/* Subscribe Section */
.subscribe {
    background: var(--pure-black);
    border-top: 1px solid var(--dark-grey);
}

.subscribe-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-8);
    color: var(--text-grey);
    font-size: 1.125rem;
    line-height: 1.7;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: var(--space-4);
}

.subscribe-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: var(--dark-grey);
    border: 1px solid var(--medium-grey);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-ui);
    transition: all 0.2s ease;
}

.subscribe-form input::placeholder {
    color: var(--light-grey);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--grey);
    background: var(--medium-grey);
}

.subscribe-success {
    color: var(--white);
    text-align: center;
    font-size: 1.1rem;
    animation: fadeIn 0.5s ease-in;
}

/* Footer */
.footer {
    background: var(--pure-black);
    padding: var(--space-8) 0;
    border-top: 1px solid var(--dark-grey);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 35px;
    margin-bottom: var(--space-4);
    opacity: 0.7;
}

.footer-text {
    color: var(--light-grey);
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}

.footer-text a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
        width: 100%;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .music-video-box {
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    .release-featured {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .release-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px; /* Account for fixed nav */
        padding-bottom: var(--space-8);
        display: block; /* Override desktop flex */
        position: relative;
    }
    
    .hero-content {
        padding: var(--space-8) var(--space-4) 0 var(--space-4);
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: relative;
        z-index: 2; /* Ensure it's above overlay */
    }
    
    .hero-inner {
        gap: var(--space-6);
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-3);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-6);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .music-video-box {
        margin-top: var(--space-4);
    }
    
    .hero-scroll {
        display: none; /* Hide on mobile */
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: var(--space-12) 0;
    }
    
    .intro {
        padding: var(--space-12) 0;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    /* Store */
    .store-items {
        grid-template-columns: 1fr;
    }
    
    /* Subscribe */
    .subscribe-form {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: var(--space-3);
    }
}

/* Mobile Video Optimization */
@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }
}

/* Additional mobile hero adjustments */
@media (max-width: 768px) {
    .hero-video-container {
        height: 100%;
    }
    
    .video-preview {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}