@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Homepage specific - allow scrolling below hero (demo CTA, footer) */
body.homepage {
    overflow-x: hidden; /* Only hide horizontal overflow */
    overflow-y: auto; /* Allow vertical scrolling */
    min-height: 100vh; /* Allow content to extend beyond viewport */
    display: block; /* Override flexbox for homepage */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-image {
    border-color: transparent;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo-link:hover .logo-text {
    color: #ccc;
}

.nav-list,
.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #ccc;
}

.nav-link.active {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    color: #ccc;
    padding-left: 0.5rem;
}

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.social-link {
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Social Text Links */
.social-text-link {
    color: #fff;
    font-size: 10px;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.social-text-link:hover {
    opacity: 1;
    color: #ccc;
}

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

.bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Blurred background image */
.slide-background-blur {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(23px); /* Increased by 15% from 20px */
    transform: scale(1.1); /* Slight scale to hide blur edges */
    opacity: 0.7;
}

/* Square artwork container */
.release-artwork-square {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    margin-right: 2rem;
}

/* Square artwork image */
.square-artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 3px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Individual artwork styles */
.magickal-art {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                radial-gradient(circle at center, #8B4513 0%, #DAA520 50%, #CD853F 100%);
    color: #fff;
}

.omri-art {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                linear-gradient(45deg, #2C3E50 0%, #3498DB 50%, #1ABC9C 100%);
    color: #fff;
}

.shake-art {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    color: #fff;
}

.mita-art {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                linear-gradient(45deg, #8E44AD 0%, #E74C3C 50%, #F39C12 100%);
    color: #fff;
}

.ibiza-art {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                linear-gradient(135deg, #FFA726 0%, #FF7043 50%, #8D6E63 100%);
    color: #fff;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.release-info {
    flex: 1;
    text-align: left;
}

.slide .release-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.1;
}

.catalog-number {
    margin-bottom: 8px;
}

.slide .artist-name {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
}

.listen-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.listen-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.listen-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: none;
}

.listen-btn:disabled:hover {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: none;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    border-color: #fff;
}

.dot:hover {
    border-color: #fff;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 0 1rem;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.footer-info {
    display: flex;
    gap: 2rem;
}

.info-section h4,
.social-section h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    color: #fff;
    transform: scale(1.1);
}

.footer-bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.credit-link:hover {
    color: #fff;
}

/* Footer nonprofit line */
.footer-bottom .footer-nonprofit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 36rem;
    margin: 0.75rem auto 0;
    line-height: 1.5;
    font-weight: 300;
}

/* Support Us — PayPal donate button */
#donate-button-container {
    text-align: center;
    margin: 28px 0 8px;
}

.custom-donate-button {
    display: inline-block;
    background: linear-gradient(135deg, #9c27b0, #673ab7, #3f51b5);
    background-size: 200% 200%;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    position: relative;
    overflow: hidden;
}

.custom-donate-button:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(156, 39, 176, 0.4);
    color: white;
    text-decoration: none;
}

.custom-donate-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
}

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

.custom-donate-button:hover::before {
    left: 100%;
}

/* Footer responsive - stack when not enough space */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 2rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        width: 100%;
    }

    /* Mobile/touch: no Releases flyout (hover sticks on tap); link goes straight to releases.html */
    .nav-menu .dropdown-menu {
        display: none !important;
    }

    .nav-menu .dropdown:hover .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Hide desktop social buttons group, but keep DONATE visible */
    .social-buttons-group {
        display: none !important;
    }

    /* Position header with logo, donate, hamburger */
    .header-social {
        gap: 16px;
    }
}

/* Mobile adjustments for small screens */
@media (max-width: 425px) {
    /* Header padding for mobile */
    header {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    /* Mobile menu with better spacing */
    .nav-menu {
        padding: 24px;
    }
    
    /* Ensure nav links stack properly */
    .nav-list {
        gap: 1.5rem;
    }
    
    /* Mobile social links in single column */
    .mobile-social-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .mobile-social-links .social-outlined-link {
        align-self: flex-start;
        width: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .artist-name {
        font-size: 20px;
    }

    .slide-content {
        padding: 0 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .release-artwork-square {
        width: 150px;
        height: 150px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .release-info {
        text-align: center;
    }

    .footer {
        padding: 1rem 0 0.5rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .slider-dots {
        bottom: 8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

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

/* ===== PAGE-SPECIFIC STYLES ===== */

/* General Page Styles */
.page-content {
    margin-top: 80px;
    padding: 2rem 0;
    flex: 1;
}

/* Homepage specific styles */
.hero-slider {
    overflow: hidden;
    height: 100vh; /* Keep slider at full viewport height */
    position: relative;
}

/* Homepage bottom CTA (demo); section class name is historical */
.homepage-newsletter {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-info {
    flex: 1;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .homepage-newsletter {
        padding: 3rem 0;
    }

    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
    }

    .newsletter-title {
        font-size: 2rem;
        text-align: center;
    }

    .newsletter-description {
        text-align: center;
    }
}

/* Demo Submission Styles */
.demo-submission {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Make demo submission section 60% wide */
.homepage-newsletter .newsletter-content {
    max-width: 60%;
    margin: 0 auto;
}

.demo-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff5500, #ff3366);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Demo modal: hidden by default in JS; display:flex when open */
.demo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}

.demo-modal-content {
    width: 100%;
    max-width: 420px;
    max-height: min(90vh, 640px);
    overflow: auto;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.demo-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-modal-header h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.demo-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
}

.demo-modal-close:hover {
    color: #fff;
}

.demo-success-message {
    margin: 0 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.35);
    border-radius: 6px;
    color: #a5d6a7;
    font-size: 0.9rem;
}

.demo-modal-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-modal-body label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.demo-modal-body input,
.demo-modal-body textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.demo-modal-body textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.demo-cancel-btn,
.demo-send-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.demo-cancel-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-cancel-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.demo-send-btn {
    background: linear-gradient(135deg, #ff5500, #ff3366);
    color: #fff;
}

.demo-send-btn:hover {
    filter: brightness(1.08);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #fff;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Active Navigation Link */
.nav-link.active {
    color: #fff;
    font-weight: 400;
}

/* Release and artist artwork styles for real images */
.release-art, .featured-art, .artist-art, .featured-artist-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== ABOUT PAGE ===== */
.about-page .section-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-hero {
    margin-bottom: 4rem;
}

/* Donate page — main copy column */
.donate-body {
    width: 75%;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.donate-body p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.donate-body .donate-section-rule {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem auto 1.5rem;
    max-width: 12rem;
}

@media (max-width: 900px) {
    .donate-body {
        width: 88%;
    }
}

@media (max-width: 600px) {
    .donate-body {
        width: 92%;
    }

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

/* Release filtering animations */
.catalog-grid {
    transition: all 0.3s ease;
}

.catalog-grid.filtering {
    opacity: 0.7;
    transform: scale(0.98);
}

.release-card {
    transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}

.hero-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.text-content {
    text-align: left;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.founder-image {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.milestone-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.milestone-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.milestone-year {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.milestone-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.milestone-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.philosophy-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== RELEASES PAGE ===== */
.releases-header {
    text-align: center;
    margin-bottom: 3rem;
}

.releases-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.label-filter {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-filter.active,
.label-filter:hover {
    background: #fff;
    color: #000;
}

.featured-release {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.featured-artwork {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.featured-art {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                radial-gradient(circle at center, #8B4513 0%, #DAA520 50%, #CD853F 100%);
    font-size: 1.5rem;
}

.featured-info {
    text-align: left;
}

.featured-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    color: #fff;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.featured-artist {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
}

.stream-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.stream-link:hover {
    color: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.release-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.release-card:hover {
    transform: translateY(-5px);
}

/* Removed hover and play button styles */

.release-details {
    padding: 1.5rem 0;
}

.release-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.release-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.release-label {
    display: none; /* Hide labels as requested */
}

/* New releases page format matching slider */
.release-catalog-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Override any existing styles to ensure releases page matches slider exactly */
.releases-page .release-title {
    font-size: 18px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.releases-page .artist-name {
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    margin-bottom: 0.5rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Bandcamp embed styling */
.bandcamp-embed {
    margin-top: 1rem;
}

/* Featured embed styling */
.featured-embed {
    margin-top: 1.5rem;
}

/* Artwork variations */
.rebellion-art {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 50%, #4B0000 100%);
}

.secret-art {
    background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 50%, #9400D3 100%);
}

.cr20-art {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
}

.rebellion-art2 {
    background: linear-gradient(135deg, #B22222 0%, #FF4500 50%, #FF6347 100%);
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    background: #fff;
    color: #000;
}

/* ===== ARTISTS PAGE ===== */
.featured-artist {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.artist-image {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.artist-damian {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #2C3E50 100%);
    font-size: 1rem;
}

.artist-info {
    text-align: left;
}

.artist-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.artist-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.artist-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.artist-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.artist-link:hover {
    color: #fff;
}

.artist-socials {
    display: flex;
    gap: 1rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.artist-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artist-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-btn:hover {
    background: #fff;
    color: #000;
}

.artist-details {
    padding: 1.5rem 0;
}

.artist-details .artist-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.artist-genre,
.artist-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Artist placeholder variations */
.artist-omri { background: linear-gradient(135deg, #2980B9 0%, #3498DB 50%, #5DADE2 100%); }
.artist-parallelle { background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 50%, #BB8FCE 100%); }
.artist-nicolas { background: linear-gradient(135deg, #E74C3C 0%, #EC7063 50%, #F1948A 100%); }
.artist-mita { background: linear-gradient(135deg, #27AE60 0%, #58D68D 50%, #82E0AA 100%); }
.artist-thugfucker { background: linear-gradient(135deg, #F39C12 0%, #F8C471 50%, #FAD7A0 100%); }
.artist-audiojack { background: linear-gradient(135deg, #17202A 0%, #2C3E50 50%, #566573 100%); }
.artist-bedouin { background: linear-gradient(135deg, #D68910 0%, #F4D03F 50%, #F7DC6F 100%); }
.artist-blond { background: linear-gradient(135deg, #A569BD 0%, #C39BD3 50%, #D7BDE2 100%); }
.artist-matthew { background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 50%, #5DADE2 100%); }

.artist-spotlight {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.spotlight-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.spotlight-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.spotlight-btn {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.spotlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== MIX SHOW PAGE ===== */
.mixshow-header {
    text-align: center;
    margin-bottom: 4rem;
}

.show-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.featured-episode {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.episode-artwork {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.episode-art {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    font-size: 1.5rem;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.episode-artwork:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.episode-info {
    text-align: left;
}

.episode-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.episode-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.episode-artist {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.episode-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.episode-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.episode-actions {
    display: flex;
    gap: 1rem;
}

.download-btn,
.share-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn:hover,
.share-btn:hover {
    background: #fff;
    color: #000;
}

.subscribe-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.subscribe-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.subscribe-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-link:hover {
    background: #fff;
    color: #000;
}

.mixcloud-icon {
    font-weight: bold;
    font-size: 1.2rem;
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.episode-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.episode-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.episode-thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.mini-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-thumbnail:hover .mini-play-btn {
    opacity: 1;
}

.episode-details {
    text-align: left;
}

.episode-number {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.episode-details .episode-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.episode-details .episode-artist {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.episode-details .episode-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.episode-details .duration,
.episode-details .date {
    margin-right: 1rem;
}

.episode-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    background: #fff;
    color: #000;
}

/* Episode artwork variations */
.ep-100 { background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%); }
.ep-99 { background: linear-gradient(135deg, #A8E6CF 0%, #88D8A3 50%, #7FCDCD 100%); }
.ep-98 { background: linear-gradient(135deg, #FFB6C1 0%, #FFA07A 50%, #FF7F50 100%); }
.ep-97 { background: linear-gradient(135deg, #DDA0DD 0%, #DA70D6 50%, #BA55D3 100%); }
.ep-96 { background: linear-gradient(135deg, #98FB98 0%, #90EE90 50%, #00FA9A 100%); }
.ep-95 { background: linear-gradient(135deg, #F0E68C 0%, #FFE4B5 50%, #FFDAB9 100%); }

.about-show {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.show-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== INFO PAGE ===== */
.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.contact-email {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-email:hover {
    border-bottom-color: #fff;
}

.contact-form-section {
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.office-info {
    text-align: center;
}

.office-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.office-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.office-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #fff;
}

/* ===== RESPONSIVE DESIGN FOR PAGES ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .featured-content,
    .episode-content,
    .featured-artist-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .spotlight-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .show-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .releases-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .label-filter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .subscribe-links {
        flex-direction: column;
        align-items: center;
    }
    
    .episode-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .episode-actions {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .office-details {
        grid-template-columns: 1fr;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .show-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .featured-title,
    .episode-title {
        font-size: 2rem;
    }
    
    .featured-artist,
    .episode-artist {
        font-size: 1.5rem;
    }
    
    .artist-name {
        font-size: 24px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
}

/* Auto-hide scrollbar */
::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mix Series Tab Styles */
.mix-series-tabs {
    margin: 2rem 0 3rem 0;
    text-align: center;
}

.tab-buttons {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Mix Show Player Styles */
.mix-show-player {
    margin: 4rem 0;
}

.player-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.soundcloud-embed {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.soundcloud-embed iframe {
    border-radius: 8px;
}

/* Universal Flowing Background for All Slides */
.slide-background {
    background: linear-gradient(135deg, #070613 0%, #0c0c16 50%, #0a101e 100%);
    overflow: hidden;
    position: relative;
}

.slide-background img {
    display: none;
}

.slide-background::before,
.slide-background::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    filter: blur(40px);
    transition: all 2s ease-in-out;
}

.slide-background::before {
    background: 
        linear-gradient(45deg, transparent 0%, var(--color1, rgba(80, 6, 128, 0.8)) 20%, transparent 40%),
        linear-gradient(135deg, transparent 30%, var(--color2, rgba(11, 36, 67, 0.9)) 50%, transparent 70%),
        linear-gradient(90deg, transparent 10%, var(--color3, rgba(58, 36, 92, 0.7)) 35%, transparent 60%);
    animation: flowingLines1 28s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.slide-background::after {
    background: 
        linear-gradient(225deg, transparent 20%, var(--color4, rgba(32, 19, 74, 0.6)) 45%, transparent 70%),
        linear-gradient(315deg, transparent 0%, var(--color5, rgba(15, 23, 43, 0.8)) 25%, transparent 50%),
        linear-gradient(180deg, transparent 40%, var(--color6, rgba(18, 18, 32, 0.7)) 65%, transparent 90%);
    filter: blur(50px);
    animation: flowingLines2 35s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
}

/* Authentic Color Palettes Correctly Mapped to Slide Order */
.slide:nth-child(1) .slide-background {
    /* RHZ005 - Dark Blue-Gold/Navy (FIRST SLIDE - from deep blue-golden artwork) */
    --color1: rgba(15, 25, 60, 0.8);    /* Dark royal blue */
    --color2: rgba(8, 15, 45, 0.9);     /* Deep navy */
    --color3: rgba(40, 35, 8, 0.7);     /* Dark gold/bronze */
    --color4: rgba(25, 20, 50, 0.6);    /* Dark blue-purple */
    --color5: rgba(8, 10, 25, 0.8);     /* Almost black blue */
    --color6: rgba(12, 12, 20, 0.7);    /* Very dark navy */
}

.slide:nth-child(2) .slide-background {
    /* RHZ004 - Dark Aqua-Teal/Blue-Green (from aqua-teal artwork) */
    --color1: rgba(8, 45, 40, 0.8);     /* Dark teal */
    --color2: rgba(5, 30, 35, 0.9);     /* Deep blue-green */
    --color3: rgba(15, 60, 50, 0.7);    /* Muted aqua */
    --color4: rgba(12, 35, 30, 0.6);    /* Dark sea green */
    --color5: rgba(3, 20, 18, 0.8);     /* Almost black teal */
    --color6: rgba(8, 15, 15, 0.7);     /* Very dark aqua */
}

.slide:nth-child(3) .slide-background {
    /* RHZ003 - Dark Red-Orange/Purple (from fiery red-orange artwork) */
    --color1: rgba(80, 15, 10, 0.8);    /* Dark red */
    --color2: rgba(60, 8, 15, 0.9);     /* Deep burgundy */
    --color3: rgba(45, 12, 35, 0.7);    /* Dark purple-red */
    --color4: rgba(70, 20, 5, 0.6);     /* Dark orange-red */
    --color5: rgba(25, 5, 15, 0.8);     /* Almost black red */
    --color6: rgba(20, 8, 12, 0.7);     /* Very dark crimson */
}

.slide:nth-child(4) .slide-background {
    /* RHZ002 - Dark Yellow-Green/Lime (from bright yellow-green artwork) */
    --color1: rgba(40, 60, 8, 0.8);     /* Dark lime */
    --color2: rgba(25, 40, 5, 0.9);     /* Deep olive-green */
    --color3: rgba(60, 80, 15, 0.7);    /* Muted yellow-green */
    --color4: rgba(50, 35, 8, 0.6);     /* Dark golden-green */
    --color5: rgba(20, 25, 3, 0.8);     /* Almost black green */
    --color6: rgba(15, 15, 5, 0.7);     /* Very dark lime */
}

.slide:nth-child(5) .slide-background {
    /* RHZ001 - Deep Purple/Indigo Base (LAST SLIDE - Original flowing lines colors) */
    --color1: rgba(80, 6, 128, 0.8);    /* Deep purple */
    --color2: rgba(11, 36, 67, 0.9);    /* Navy blue */  
    --color3: rgba(58, 36, 92, 0.7);    /* Dark violet */
    --color4: rgba(32, 19, 74, 0.6);    /* Indigo */
    --color5: rgba(15, 23, 43, 0.8);    /* Dark navy */
    --color6: rgba(18, 18, 32, 0.7);    /* Almost black */
}

/* Randomized Movement Patterns */
@keyframes flowingLines1 {
    0% {
        transform: translate(-70%, -80%) rotate(0deg) skewX(0deg);
    }
    14% {
        transform: translate(-30%, -20%) rotate(25deg) skewX(15deg);
    }
    28% {
        transform: translate(40%, 10%) rotate(-15deg) skewX(-20deg);
    }
    42% {
        transform: translate(-15%, -50%) rotate(35deg) skewX(25deg);
    }
    56% {
        transform: translate(60%, -30%) rotate(-25deg) skewX(-10deg);
    }
    70% {
        transform: translate(-50%, 20%) rotate(45deg) skewX(30deg);
    }
    84% {
        transform: translate(20%, -70%) rotate(-35deg) skewX(-15deg);
    }
    100% {
        transform: translate(-70%, -80%) rotate(0deg) skewX(0deg);
    }
}

@keyframes flowingLines2 {
    0% {
        transform: translate(-40%, -30%) rotate(180deg) skewY(0deg);
    }
    18% {
        transform: translate(50%, -60%) rotate(210deg) skewY(-20deg);
    }
    36% {
        transform: translate(-65%, 15%) rotate(165deg) skewY(30deg);
    }
    54% {
        transform: translate(30%, 35%) rotate(225deg) skewY(-35deg);
    }
    72% {
        transform: translate(-25%, -80%) rotate(150deg) skewY(40deg);
    }
    90% {
        transform: translate(65%, -10%) rotate(240deg) skewY(-25deg);
    }
    100% {
        transform: translate(-40%, -30%) rotate(180deg) skewY(0deg);
    }
}

/* Artists Page 50/50 Dark Theme Layout */
.artists-page {
    background-color: #000;
}

.artists-layout {
    display: flex;
    height: calc(100vh - 80px);
    margin-top: 80px;
}

.artist-image-column {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 40px;
    position: relative;
}

.artist-display-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.artists-list {
    display: block;
}

.artists-list.hidden {
    display: none;
}

.artist-bio-content {
    display: none;
    width: 100%;
    color: #fff;
    padding: 0;
}

.artist-bio-content.active {
    display: block;
}

.back-to-artists {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.back-to-artists:hover {
    color: #fff;
}

.artist-bio-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 30px 0;
    color: #fff;
}

.artist-bio-content .follow-section {
    margin-bottom: 40px;
}

.artist-bio-content .follow-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.artist-bio-content .social-links {
    display: flex;
    gap: 16px;
}

.artist-bio-content .social-icon {
    color: #666;
    transition: color 0.2s ease;
}

.artist-bio-content .social-icon:hover {
    color: #fff;
}

.artist-bio-content .social-icon svg {
    width: 24px;
    height: 24px;
}

.artist-bio-content .bio-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.artist-bio-content .bio-text p {
    margin-bottom: 20px;
}

/* Enhanced Artist Bio Layout with Proper Spacing */
.bio-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-section,
.location-section,
.releases-section,
.social-section {
    margin-bottom: 0;
}

.bio-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0;
}

.location-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-section p {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;
}

.releases-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.releases-section p {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;
}

.social-section {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid #9c27b0;
    color: #9c27b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-section .social-link:hover {
    background: #9c27b0;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.social-section .social-link svg,
.social-section .social-link img {
    width: 20px;
    height: 20px;
}

.artists-list-column {
    width: 50%;
    background-color: #000;
    padding: 40px;
    overflow-y: auto;
}

.artist-item {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.artist-item:hover {
    color: #ccc;
}

.artist-item.active {
    color: #ccc;
}

.artist-item:last-child {
    border-bottom: none;
}

/* Responsive Design for Artists Page */
@media (max-width: 768px) {
    .artists-layout {
        flex-direction: column;
        height: auto;
        margin-top: 80px;
    }
    
    .artist-image-column {
        height: 50vh;
        padding: 20px;
    }
    
    .artists-list-column {
        width: 100%;
        padding: 20px;
    }
    
    .artist-item {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .soundcloud-embed iframe {
        height: 400px;
    }
}

/* Header Social Links and Donate Button */
.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-buttons-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-outlined-link {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #9c27b0;
    border-radius: 6px;
    background: black;
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-transform: lowercase;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.social-outlined-link:hover {
    background: #9c27b0;
    color: black;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.header-donate-button {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #9c27b0, #673ab7, #3f51b5);
    background-size: 200% 200%;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite;
    flex-shrink: 0;
    white-space: nowrap;
    z-index: 2;
}

.header-donate-button:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    color: white;
    text-decoration: none;
}

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

.header-donate-button:hover::before {
    left: 100%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Mobile social links inside nav menu */
.mobile-social-links {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-social-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-links .social-outlined-link {
        align-self: flex-start;
    }
}