/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premier League inspired color palette */
    --primary-purple: #3f1c96;
    --primary-magenta: #e90052;
    --primary-blue: #00d4ff;
    --secondary-teal: #04f5ff;
    --accent-orange: #ff6900;
    --accent-yellow: #ffed00;
    
    /* Neutral colors */
    --background-dark: #0a0a0f;
    --background-darker: #05050a;
    --surface-dark: #1a1a2e;
    --surface-light: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-magenta) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    --gradient-cosmic: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 50%, var(--primary-magenta) 100%);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Orbitron', monospace;
    --font-fat: 'Orbitron', monospace;
    
    /* Spacing */
    --section-padding: 2rem 0;
    --container-padding: 0 2rem 0 8rem;
    --border-radius: 0.75rem;
    --border-radius-small: 0.375rem;
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(63, 28, 150, 0.3);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.4;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: 500;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    font-size: 14px;
}

section {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
.section-title {
    font-family: var(--font-fat);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 500;
}

.section-header {
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    margin: 0;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.35rem; /* Reduced from 0.5rem for more compact look */
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-separator {
    margin: 0 0.5rem; /* Reduced from 1.25rem for compactness */
    color: var(--primary-magenta);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1; /* Added for vertical alignment */
}

.logo-tagline {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.62rem; /* Smaller font size */
    color: var(--primary-blue);
    opacity: 0.7; /* Added transparency */
    letter-spacing: 1.2px; /* Reduced from 1.5px */
    text-transform: uppercase;
    min-width: 280px;
    max-width: 600px; /* Increased to fit longer sentences */
    display: inline-block;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add ellipsis for very long text */
    line-height: 1; /* Added for vertical alignment */
    padding-top: 2px; /* Fine-tune vertical alignment */
}

@keyframes taglineFade {
    0% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    60% { opacity: 0; }
    70% { opacity: 1; }
    100% { opacity: 1; }
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--background-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--background-dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--primary-purple) 0%, var(--background-darker) 70%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Very subtle - barely visible */
    z-index: 1;
    filter: blur(1px); /* Slight blur for subtle effect */
    display: block;
}

.cosmic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Above the video */
    background: 
        radial-gradient(circle at 20% 30%, rgba(63, 28, 150, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(233, 0, 82, 0.2) 0%, transparent 50%);
}

@keyframes cosmicFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 10; /* Ensure content is above video and overlays */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

.hero-title {
    font-family: var(--font-fat);
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line {
    display: block;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

/* Cosmic Particles - Hero Visual Effects */
.cosmic-particles {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Rotating Cosmic Rings */
.cosmic-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate-cosmic 20s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(233, 0, 82, 0.3);
    top: 10%;
    right: 10%;
    animation-duration: 25s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 212, 255, 0.4);
    top: 50%;
    right: 25%;
    animation-duration: 18s;
    animation-direction: reverse;
}

.ring-3 {
    width: 150px;
    height: 150px;
    border-color: rgba(255, 105, 0, 0.3);
    bottom: 20%;
    right: 15%;
    animation-duration: 22s;
}

/* Flowing Particles */
.particle-flow {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: particle-drift 15s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
    background: rgba(233, 0, 82, 0.8);
    box-shadow: 0 0 15px rgba(233, 0, 82, 0.8);
}

.particle-2 {
    top: 40%;
    right: 30%;
    animation-delay: 3s;
    background: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.particle-3 {
    top: 60%;
    right: 10%;
    animation-delay: 6s;
    background: rgba(255, 105, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 105, 0, 0.8);
}

.particle-4 {
    top: 80%;
    right: 35%;
    animation-delay: 9s;
    background: rgba(63, 28, 150, 0.8);
    box-shadow: 0 0 15px rgba(63, 28, 150, 0.8);
}

.particle-5 {
    top: 35%;
    right: 45%;
    animation-delay: 12s;
    background: rgba(4, 245, 255, 0.8);
    box-shadow: 0 0 15px rgba(4, 245, 255, 0.8);
}

.particle-6 {
    top: 70%;
    right: 20%;
    animation-delay: 7s;
    background: rgba(255, 237, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.8);
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse-glow 4s ease-in-out infinite;
}

.orb-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(233, 0, 82, 0.4) 0%, transparent 70%);
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    top: 55%;
    right: 35%;
    animation-delay: 1.5s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 105, 0, 0.35) 0%, transparent 70%);
    bottom: 25%;
    right: 15%;
    animation-delay: 3s;
}

/* Animated Waveforms */
.waveform {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.6) 25%, 
        rgba(233, 0, 82, 0.6) 50%, 
        rgba(255, 105, 0, 0.6) 75%, 
        transparent 100%);
    animation: wave-flow 8s ease-in-out infinite;
}

.wave-1 {
    top: 25%;
    right: 10%;
    animation-delay: 0s;
}

.wave-2 {
    bottom: 35%;
    right: 25%;
    animation-delay: 4s;
    transform: rotate(-30deg);
}

/* Animations */
@keyframes rotate-cosmic {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle-drift {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% { 
        transform: translate(-50px, -80px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes wave-flow {
    0%, 100% {
        transform: translateX(0) scaleX(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-30px) scaleX(1.2);
        opacity: 0.8;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    transition: border-color 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.scroll-arrow.scrolled {
    border-right-color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Releases Section */
.releases {
    padding: 3rem 2rem 3rem 8rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    display: block;
}

.releases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

/* Floating particles for releases section */
.releases-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.releases-particles .particle {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-magenta), var(--primary-blue));
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite ease-in-out;
}

.releases-particles .particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.releases-particles .particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: -3s;
    animation-duration: 18s;
}

.releases-particles .particle-3 {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 70%;
    animation-delay: -6s;
    animation-duration: 14s;
}

.releases-particles .particle-4 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation-delay: -9s;
    animation-duration: 16s;
}

.releases-particles .particle-5 {
    width: 14px;
    height: 14px;
    top: 10%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 20s;
}

.releases-particles .particle-6 {
    width: 8px;
    height: 8px;
    top: 70%;
    left: 40%;
    animation-delay: -15s;
    animation-duration: 13s;
}

.releases-particles .particle-7 {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 5%;
    animation-delay: -18s;
    animation-duration: 17s;
}

.releases-particles .particle-8 {
    width: 12px;
    height: 12px;
    top: 90%;
    left: 90%;
    animation-delay: -21s;
    animation-duration: 19s;
}

/* Animated background waves */
.releases-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.releases-waves .wave {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(233, 0, 82, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: waveFloat 20s infinite linear;
}

.releases-waves .wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.releases-waves .wave-2 {
    top: -30%;
    left: -60%;
    animation-delay: -8s;
    animation-duration: 30s;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
}

.releases-waves .wave-3 {
    top: -40%;
    left: -40%;
    animation-delay: -16s;
    animation-duration: 35s;
    background: radial-gradient(circle, rgba(63, 28, 150, 0.03) 0%, transparent 70%);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) translateX(30px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes waveFloat {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

.releases-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.releases h2 {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #e90052, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(233, 0, 82, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    }
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.release-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    height: 420px; /* Reduced height for more compact look */
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 0, 82, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.release-card:hover::before {
    opacity: 1;
}

.release-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(233, 0, 82, 0.3);
    box-shadow: 0 15px 40px rgba(233, 0, 82, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
}

/* Enhanced hover animation for release images */
.release-card:hover .release-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.release-card .release-image {
    transition: transform 0.3s ease;
}

.release-card.featured {
    background: linear-gradient(135deg, rgba(233, 0, 82, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(233, 0, 82, 0.3);
    align-items: stretch;
    height: auto;
    min-height: 450px;
    box-shadow: 0 8px 32px rgba(233, 0, 82, 0.2);
}

.release-card.featured .release-artwork {
    position: relative;
    display: flex;
    flex-direction: column;
}

.release-card.featured .release-image {
    height: 400px;
    border-radius: 16px;
}

/* Featured Release Info Styles */
.release-info-featured {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.release-header-featured {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.release-genre-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.release-title-featured {
    font-family: var(--font-fat);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
}

.release-artist-featured {
    font-size: 1.5rem;
    color: var(--primary-magenta);
    font-weight: 600;
    margin: 0;
}

.release-date-featured {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.release-description-featured {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary-magenta);
}

.release-description-featured p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.release-player-featured {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem;
    border-radius: 12px;
}

.release-player-featured iframe {
    border-radius: 10px;
}

.release-links-featured {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.release-links-featured .btn-primary,
.release-links-featured .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.release-artwork {
    position: relative;
    margin-bottom: 1rem;
    flex-shrink: 0; /* Prevent artwork from shrinking */
}

.physical-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    color: var(--primary-blue);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: default;
    z-index: 4;
    transition: transform 0.25s ease, opacity 0.25s ease;
    backdrop-filter: blur(6px);
}

.physical-badge .physical-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.physical-badge .physical-text {
    line-height: 1;
}

.physical-badge[data-tooltip] {
    cursor: help;
}

.physical-badge[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translate(-50%, -10px);
    white-space: nowrap;
    background: rgba(4, 245, 255, 0.9);
    color: var(--background-dark);
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.physical-badge[data-tooltip]:hover::after {
    top: 100%;
    transform: translate(-50%, 8px);
    opacity: 1;
}

.physical-badge:hover {
    transform: translateY(-2px);
}

/* Latest Release Badge for Mobile */
.latest-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e90052 0%, #00d4ff 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(233, 0, 82, 0.5);
    text-transform: uppercase;
}

.release-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.release-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}

.release-type {
    background: linear-gradient(45deg, #e90052, #ff4081);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.release-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    min-height: 0; /* Allow content to shrink if needed */
}

.release-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.375rem;
    line-height: 1.25;
    /* Limit to 2 lines max */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.75rem; /* Reserve space for 2 lines */
}

.release-artist {
    font-size: 0.875rem;
    color: #e90052;
    font-weight: 600;
    margin-bottom: 0.5rem; /* Reduced margin */
    /* Limit to 1 line */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem; /* Reduced margin */
    font-size: 0.8rem;
    color: #aaa;
}

.release-date {
    font-weight: 600;
}

.release-genre {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.release-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto; /* Push links to bottom */
    padding-bottom: 0.25rem; /* Ensure buttons aren't cut off */
}

.release-links a {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}

.link-beatport {
    background: linear-gradient(45deg, #e90052, #ff4081);
    color: white;
}

.link-soundcloud {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.release-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 0, 82, 0.3);
}

.link-beatport:hover {
    box-shadow: 0 5px 15px rgba(233, 0, 82, 0.4);
}

.link-soundcloud:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Ripple animation for play button */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Fade in animation for release cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading placeholder styles */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #aaa;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(233, 0, 82, 0.2);
    border-top: 3px solid #e90052;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

.view-all-releases {
    text-align: center;
}

/* Artists Section */
.artists {
    padding: var(--section-padding);
    background: var(--background-dark);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background: var(--surface-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.artist-image {
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-dark);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem 1.25rem 1.25rem;
    color: white;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.artist-genre {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.artist-info {
    padding: 1.25rem;
}

.artist-bio {
    margin-bottom: 0.75rem;
}

.artist-bio p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.artist-tracks {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
    font-style: italic;
}

.artist-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
}

.artist-links a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--background-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cosmic-logo {
    position: relative;
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cosmic-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-large {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(63, 28, 150, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63, 28, 150, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* Services Section */
.services {
    padding: 3rem 2rem 3rem 8rem;
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(233, 0, 82, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-visual {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.service-visual:hover .service-image {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-title {
    font-family: var(--font-fat);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    background: var(--gradient-cosmic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-highlight {
    display: flex;
    gap: 1rem;
    background: rgba(63, 28, 150, 0.1);
    border-left: 4px solid var(--primary-magenta);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface-dark);
    padding: 1rem;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: var(--surface-light);
    box-shadow: var(--shadow-small);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.service-cta .btn-primary,
.service-cta .btn-secondary {
    flex: 1;
}

/* Events Section */
.events {
    padding: var(--section-padding);
    background: var(--background-dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--surface-dark);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-primary);
    padding: 0.75rem;
    border-radius: var(--border-radius-small);
    min-width: 70px;
}

.day {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.month {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.event-location {
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.event-artists {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.event-action {
    display: flex;
    align-items: center;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--background-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.3;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--surface-dark);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.875rem;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Contact Form */
.form {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--surface-light);
    border-radius: var(--border-radius-small);
    background: var(--background-dark);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--background-dark);
    padding: 0 0.375rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.375rem;
    font-size: 0.8rem;
    color: var(--primary-blue);
}

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

/* Footer */
.footer {
    background: var(--background-darker);
    padding: 1.5rem 0 1rem;
    border-top: 1px solid var(--surface-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo .logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1rem;
}

.footer-links, .footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.footer-links a, .footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-dark);
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 1024px) {
    .logo-tagline {
        display: none;
    }
    
    .logo-separator {
        display: none;
    }
    
    :root {
        --container-padding: 0 2rem;
    }
    
    .releases {
        padding: 3rem 2rem;
    }
    
    .services {
        padding: 3rem 2rem;
    }
    
    .releases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Hero section mobile adjustments */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: all 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .nav-link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-link:hover {
        color: var(--primary-magenta);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-cta {
        flex-direction: column;
    }

    .service-cta .btn-primary,
    .service-cta .btn-secondary {
        width: 100%;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links, .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        justify-content: center;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2rem 0;
        --container-padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .title-line,
    .title-accent {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Reduce cosmic particles on mobile for performance */
    .cosmic-particles {
        opacity: 0.4;
    }
    
    .cosmic-ring {
        opacity: 0.5;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 150px;
        height: 150px;
    }
    
    .ring-3 {
        width: 100px;
        height: 100px;
    }
    
    .glow-orb {
        filter: blur(15px);
    }
    
    .orb-1 {
        width: 100px;
        height: 100px;
    }
    
    .orb-2 {
        width: 80px;
        height: 80px;
    }
    
    .orb-3 {
        width: 60px;
        height: 60px;
    }

    .releases-grid,
    .artists-grid,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .release-card {
        height: auto;
        min-height: 380px;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }

    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form {
        padding: 1.25rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .footer-links, .footer-social {
        gap: 0.75rem;
    }
}

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

.release-card,
.artist-card,
.event-card {
    animation: fadeInUp 0.6s ease forwards;
}

.release-card:nth-child(1) { animation-delay: 0.1s; }
.release-card:nth-child(2) { animation-delay: 0.2s; }
.release-card:nth-child(3) { animation-delay: 0.3s; }
.release-card:nth-child(4) { animation-delay: 0.4s; }

.artist-card:nth-child(1) { animation-delay: 0.1s; }
.artist-card:nth-child(2) { animation-delay: 0.2s; }
.artist-card:nth-child(3) { animation-delay: 0.3s; }
.artist-card:nth-child(4) { animation-delay: 0.4s; }
.artist-card:nth-child(5) { animation-delay: 0.5s; }
.artist-card:nth-child(6) { animation-delay: 0.6s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}