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

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #6366f1;
    --accent-color-2: #8b5cf6;
    --accent-color-3: #ec4899;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #fafafa;
    --bg-dark: #0a0a0a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loading-spinner {
    width: 150px;
    height: 150px;
    position: relative;
}

.loading-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.spinner-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.spinner-circle {
    stroke-dasharray: 377;
    stroke-dashoffset: 0;
}

.spinner-progress {
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    animation: spinnerRotate 1.5s linear infinite;
    stroke: rgba(255, 255, 255, 0.8);
}

@keyframes spinnerRotate {
    0% {
        stroke-dashoffset: 377;
    }
    50% {
        stroke-dashoffset: 94.25;
    }
    100% {
        stroke-dashoffset: 377;
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.95);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    transform: translateY(0);
}

.header.scrolled {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: brightness(0);
}

.logo-fallback {
    height: 35px;
    width: auto;
    display: block;
    transition: var(--transition);
    color: var(--primary-color);
}

.logo:hover .logo-img,
.logo:hover .logo-fallback {
    transform: scale(1.05);
    filter: brightness(0) invert(27%) sepia(91%) saturate(2878%) hue-rotate(230deg) brightness(102%) contrast(96%);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    background: #0a0a0a;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    display: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-logo-bottom-wrapper {
    position: relative;
    display: inline-block;
    overflow: visible;
    width: fit-content;
    height: 86px;
    margin-left: calc(86px * 0.188);
}

.hero-logo-bottom {
    height: 86px;
    width: auto;
    display: block;
    opacity: 0.95;
    margin: 0;
    padding: 0;
    position: relative;
    left: calc(-86px * 0.188);
}

.hero-tagline-bottom {
    font-size: clamp(16px, 2vw, 25.6px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s ease-out;
}

.hero-branding-bottom {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: opacity 0.3s ease-out;
}

.hero-branding-bottom.fade-out {
    opacity: 0;
}

.hero-branding {
    position: absolute;
    bottom: 0px;
    left: 40px;
    z-index: 20;
}

.hero-branding-logo-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: fit-content;
    height: 300px;
    margin-left: -30px;
    margin-bottom: -100px;
}

.hero-branding-logo {
    height: 300px;
    width: auto;
    display: block;
    opacity: 0.95;
    margin: 0;
    padding: 0;
    position: relative;
    /* SVG has ~361px padding on left out of 1920px viewBox = ~18.8% */
    /* Shift logo left by this amount scaled to current height */
    left: calc(-300px * 0.188);
}

.hero-tagline {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin: 4px 0 0 0;
    padding: 0;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-logo-container {
    margin-bottom: 40px;
    display: inline-block;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out, filter 0.1s ease-out;
    will-change: transform, opacity, filter;
}

.hero-logo {
    height: auto;
    width: clamp(500px, 70vw, 900px);
    max-width: 100%;
    display: block;
    margin: 0 auto;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out, filter 0.1s ease-out;
    will-change: transform, opacity, filter;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
    z-index: 20;
}

.scroll-hint.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-hint-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-hint-arrow {
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}


/* Sections */
.section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 80px;
}

.section-number {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
    min-width: 40px;
}

.section-title {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    line-height: 1.1;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

/* Artists Section - Dark background */
section.artists {
    background-color: #0a0a0a !important;
    color: #ffffff;
}

section.artists .section-number {
    color: rgba(255, 255, 255, 0.5);
}

section.artists .section-title {
    color: #ffffff;
}

/* Featured Releases - Dynamic background */
section.featured-releases {
    background-color: #0a0a0a;
    color: #ffffff;
    transition: background-color 0.8s ease-in-out;
    position: relative;
}

section.featured-releases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

/* Sync Highlights - Dark background with video */
section.sync-highlights {
    background-color: #0a0a0a !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sync-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    background: #0a0a0a;
}

.sync-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sync-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

section.sync-highlights .container {
    position: relative;
    z-index: 3;
}

/* Contact Section - Dark background */
/* About Section - Dark background */
section#about {
    background-color: #0a0a0a !important;
    color: #ffffff;
}

section#about .section-number {
    color: rgba(255, 255, 255, 0.5);
}

section#about .section-title {
    color: #ffffff;
}

section#about .text-block {
    color: rgba(255, 255, 255, 0.8);
}

section.featured-releases .container {
    background-color: transparent;
}

section.featured-releases .releases-container {
    background-color: transparent;
}

section.featured-releases .releases-stack-wrapper {
    background-color: transparent;
}


.featured-releases .section-header {
    position: relative;
    z-index: 2;
}

.featured-releases .section-header {
    position: relative;
    z-index: 2;
}

.featured-releases .section-number {
    color: rgba(255, 255, 255, 0.5);
}

.featured-releases .section-title {
    color: #ffffff;
}

/* Featured Releases - Stacked Vinyl Style */
.releases-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

.releases-stack-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 600px;
    padding: 80px 0 40px;
}

.releases-stack {
    position: relative;
    width: 420px;
    max-width: 90vw;
    height: 420px;
    max-height: 90vw;
    perspective: 2000px;
    overflow: visible;
}

/* Initial state - all cards stacked (before scroll unfold) */
.releases-stack:not(.unfolded) .release-card {
    transform: translateX(0) rotate(0deg) !important;
}

.releases-stack:not(.unfolded) .release-card.active {
    transform: translateX(0) translateY(-5px) rotate(0deg) scale(1.02) !important;
}

.release-card {
    position: absolute;
    width: 420px;
    max-width: 90vw;
    top: 0;
    left: 0;
    transform-origin: center center;
    transition: transform 0.3s ease-out, 
                z-index 0s linear 0.3s,
                filter 0.3s ease;
    will-change: transform, filter;
    opacity: 1;
    cursor: pointer;
}

.release-card.active {
    opacity: 1 !important;
    filter: brightness(1) !important;
}

.release-card.active {
    cursor: pointer;
}

.release-card.active .release-art {
    cursor: pointer;
}

/* Play button overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.release-card.active:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Subtle hover effect on release cards - adds lift and brightness */
.release-card:hover {
    z-index: 20 !important;
}

.release-card:hover .release-art {
    transform: translateY(-6px) translateZ(8px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    filter: brightness(1.05);
}

/* Base stacked positions - horizontal stacking (left to right) */
.release-card {
    z-index: 1;
}

/* Default positions for all cards when not active - horizontal layout */
.release-card[data-index="0"] {
    z-index: 4;
    transform: translateX(0) rotate(0deg);
}

.release-card[data-index="1"] {
    z-index: 3;
    transform: translateX(30px) rotate(1deg);
}

.release-card[data-index="2"] {
    z-index: 2;
    transform: translateX(60px) rotate(-1deg);
}

.release-card[data-index="3"] {
    z-index: 1;
    transform: translateX(90px) rotate(0.5deg);
}

/* Active card - centered with slight lift (when unfolded) */
.releases-stack.unfolded .release-card.active {
    z-index: 10 !important;
    transform: translateX(0) translateY(-5px) rotate(0deg) scale(1) !important;
    filter: brightness(1) !important;
}

.release-card.active .release-art {
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.release-art {
    width: 100%;
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease-out, filter 0.3s ease;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    pointer-events: none;
    backface-visibility: hidden;
}


.release-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.release-card.active .release-art::before {
    opacity: 1;
}

/* Vinyl groove effect */
.vinyl-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 0 0 20px rgba(0, 0, 0, 0.05),
        0 0 0 40px rgba(0, 0, 0, 0.03),
        0 0 0 60px rgba(0, 0, 0, 0.02);
    pointer-events: none;
    z-index: 1;
}

.release-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.release-art .release-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 0.15;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.release-card.active .release-art .release-placeholder {
    opacity: 0.25;
    transform: scale(1.1);
}

/* Navigation arrows */
.nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: none;
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

/* Release info - only one visible */
.releases-info {
    position: relative;
    min-height: 80px;
    width: 400px;
    max-width: 90%;
    margin-top: 40px;
}

.release-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.release-info.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.release-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.release-info.active .release-title {
    color: #ffffff !important;
}

.release-artist {
    font-size: 16px;
    color: #ffffff !important;
    font-weight: 400;
}

/* Artists - Infinite Scroll Treadmill */
/* Artists - Infinite Scroll Treadmill */
.artists {
    overflow-x: hidden;
}

.artists-scroll-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    padding: 40px 0;
    margin-left: calc(-50vw + 50%);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.artists-scroll-container:active {
    cursor: grabbing;
}

.artists-scroll-track {
    display: flex;
    gap: 60px;
    width: fit-content;
    will-change: transform;
}

.artist-card {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
    width: 380px;
}

.artist-image-wrapper {
    position: relative;
    margin-bottom: 40px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
}

.artist-image {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

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

.artist-card:hover .artist-image {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.artist-image .artist-placeholder {
    font-size: 120px;
    opacity: 0.2;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: none;
}

.artist-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.artist-card:hover .artist-image .artist-placeholder {
    opacity: 0.3;
    transform: scale(1.1);
}

.artist-info {
    text-align: left;
    padding: 0 8px;
}

.artist-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: var(--transition);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

section.artists .artist-name {
    color: #ffffff;
}

.artist-card:hover .artist-name {
    transform: translateX(4px);
}

.artist-genre {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: 8px;
}

section.artists .artist-genre {
    color: rgba(255, 255, 255, 0.6);
}



.sync-highlights .section-number {
    color: rgba(255, 255, 255, 0.5);
}

.sync-highlights .section-title {
    color: #ffffff;
}

.sync-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sync-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sync-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.sync-grid {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sync-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex-shrink: 0;
    width: 320px;
    opacity: 0.5;
    transform: scale(0.95);
}

.sync-card.active {
    opacity: 1;
    transform: scale(1);
}

.sync-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.sync-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a1a;
}

.sync-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sync-card:hover .sync-image {
    transform: scale(1.05);
}

.sync-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sync-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.sync-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: auto;
    text-align: left;
    position: relative;
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.sync-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.sync-link:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.sync-link:hover::after {
    transform: translateX(4px);
}

.sync-link:empty {
    display: none;
}

/* Hide link button if link is empty or missing */
.sync-card:has(.sync-link:empty) .sync-link,
.sync-card:not(:has(.sync-link)) .sync-link {
    display: none;
}

/* Text Content */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.text-block {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 300;
    margin-bottom: 60px;
}

.text-block p {
    margin-bottom: 28px;
}

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

/* Social Media Links */
.social-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

/* Contact Button */
.contact-button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-button svg {
    width: 20px;
    height: 20px;
}

.contact-info-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.contact-info-collapsible.expanded {
    max-height: 300px;
    opacity: 1;
    margin-top: 30px;
}

.contact-info-collapsible .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background 0.3s ease;
}

.contact-info-collapsible .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-collapsible .contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
}

.contact-info-collapsible .contact-details {
    flex: 1;
}

.contact-info-collapsible .contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-info-collapsible .contact-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-collapsible .contact-email:hover {
    color: rgba(255, 255, 255, 0.7);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    min-width: 200px;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: none;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-link[data-platform="youtube"] .social-icon,
.social-link[data-platform="spotify"] .social-icon,
.social-link[data-platform="instagram"] .social-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #666666;
}

section#about .social-link[data-platform="youtube"] .social-icon,
section#about .social-link[data-platform="spotify"] .social-icon,
section#about .social-link[data-platform="instagram"] .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

section#about .social-link:hover .social-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

section#about .social-link {
    border: none;
    background: rgba(255, 255, 255, 0.05);
}

section#about .social-link:hover {
    border: none;
    background: rgba(255, 255, 255, 0.08);
}

section#about .social-platform {
    color: #ffffff;
}

section#about .social-followers {
    color: rgba(255, 255, 255, 0.6);
}

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

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

.social-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.social-platform {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.social-followers {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.05);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-email {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-email:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Footer */
.footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0a0a0a;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin: 0;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    width: 140px;
    height: 38px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.05em;
}

.footer-contact-button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.footer-contact-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.imprint-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 10px 16px;
    width: 140px;
    height: 38px;
    box-sizing: border-box;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.imprint-button:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-contact-info-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact-info-collapsible.expanded {
    max-height: 300px;
    opacity: 1;
    margin-top: 30px;
}

.footer-contact-info-collapsible .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.footer-contact-info-collapsible .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.footer-contact-info-collapsible .contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
}

.footer-contact-info-collapsible .contact-details {
    flex: 1;
}

.footer-contact-info-collapsible .contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.footer-contact-info-collapsible .contact-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-info-collapsible .contact-email:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .releases-stack-wrapper {
        min-height: 500px;
        padding: 60px 0 40px;
    }

    .releases-stack {
        width: 320px;
        height: 320px;
    }

    .release-card {
        width: 320px;
    }

    .release-card.active {
        transform: translateX(0) translateY(-5px) rotate(0deg) scale(1.02) !important;
    }

    .releases-info {
        margin-top: 30px;
        width: 90%;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
    }

    .nav-arrow-left {
        left: 10px;
    }

    .nav-arrow-right {
        right: 10px;
    }

    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }

    .artists-grid,
    .sync-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .artist-card {
        width: 280px;
    }
    
    .artist-image-wrapper {
        width: 100%;
    }
    
    .artist-image {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .hero-branding-bottom {
        bottom: 16px;
        left: 24px;
        gap: 12px;
    }

    .hero-logo-bottom-wrapper {
        height: 58px;
        margin-left: calc(58px * 0.188);
    }

    .hero-logo-bottom {
        height: 58px;
        left: calc(-58px * 0.188);
    }

    .hero-tagline-bottom {
        font-size: 14px;
    }

    .hero-branding {
        bottom: 0px;
        left: 24px;
    }

    .hero-branding-logo-wrapper {
        height: 150px;
        margin-left: -20px;
        margin-bottom: -30px;
    }

    .hero-branding-logo {
        height: 150px;
        left: calc(-150px * 0.188);
    }

    .hero-tagline {
        margin: 3px 0 0 0;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .header {
        padding: 20px 0;
    }

    .sync-card {
        padding: 50px 30px;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 300px;
        height: 300px;
    }
}
