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

:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --accent-color: #ffffff;
    --dark-bg: #000000;
    --dark-surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-1: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    --gradient-2: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    --gradient-3: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    /* Sicherstellen, dass keine farbigen Werte verwendet werden */
    --white: #ffffff;
    --black: #000000;
    --gray-light: #e0e0e0;
    --gray-medium: #b0b0b0;
    --gray-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: #000;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    opacity: 0;
    transition: opacity 1s ease, clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: inset(50% 0 50% 0); /* Start als schmaler Streifen horizontal */
}

/* Video wird erst sichtbar wenn geladen (verhindert Overlay-Flash) */
.hero-video-container iframe.video-ready {
    opacity: 1;
}

.hero-video-container iframe.video-reveal-start {
    clip-path: inset(45% 0 45% 0);
}

.hero-video-container iframe.video-reveal-expand {
    clip-path: inset(30% 0 30% 0);
}

.hero-video-container iframe.video-reveal-wide {
    clip-path: inset(15% 0 15% 0);
}

.hero-video-container iframe.video-reveal-full {
    clip-path: inset(0 0 0 0);
}

/* Video Reveal Overlay - Verdeckt oben/unten während der Animation */
.video-reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Obere Overlay-Hälfte */
.video-reveal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.95);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Untere Overlay-Hälfte */
.video-reveal-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.95);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-reveal-overlay.reveal-start::before,
.video-reveal-overlay.reveal-start::after {
    height: 45%;
}

.video-reveal-overlay.reveal-expand::before,
.video-reveal-overlay.reveal-expand::after {
    height: 30%;
}

.video-reveal-overlay.reveal-wide::before,
.video-reveal-overlay.reveal-wide::after {
    height: 15%;
}

.video-reveal-overlay.reveal-full::before,
.video-reveal-overlay.reveal-full::after {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
}


/* Verstecke YouTube Overlays mit Overlay */
.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Overlay wird ausgeblendet wenn Video bereit ist */
.hero-video-container.video-ready::after {
    opacity: 0;
    pointer-events: none;
}

/* Fallback für Video-Ladeprobleme */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    z-index: -1;
    opacity: 0.1;
}

.mute-button {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mute-button:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.mute-button svg {
    width: 24px;
    height: 24px;
    display: block;
    pointer-events: none;
}

.mute-button svg[style*="display: none"] {
    display: none !important;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.12);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

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

.hero-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15rem;
    align-items: center;
    width: 100%;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
}

.logo-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-glitch-red,
.logo-glitch-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    clip-path: inset(0 0 0 0);
}

.logo-glitch-red {
    filter: hue-rotate(0deg) brightness(1.2);
}

.logo-glitch-blue {
    filter: hue-rotate(180deg) brightness(1.1);
}

.logo-image.glitch-active {
    animation: glitch-subtle 0.3s ease-in-out;
}

.logo-glitch-red.glitch-active {
    animation: glitch-layer-1 0.3s ease-in-out;
}

.logo-glitch-blue.glitch-active {
    animation: glitch-layer-2 0.3s ease-in-out;
}

.logo-wrapper:hover .logo-image {
    transform: scale(1.05);
    animation: glitch-hover 0.6s ease-in-out;
}

.logo-wrapper:hover .logo-glitch-red {
    animation: glitch-hover-layer-1 0.6s ease-in-out;
}

.logo-wrapper:hover .logo-glitch-blue {
    animation: glitch-hover-layer-2 0.6s ease-in-out;
}

@keyframes glitch-subtle {
    0%, 100% {
        transform: translate(0);
        clip-path: inset(0 0 0 0);
    }
    20% {
        transform: translate(-1px, 1px);
        clip-path: inset(0 0 98% 0);
    }
    40% {
        transform: translate(1px, -1px);
        clip-path: inset(0 0 0 0);
    }
    60% {
        transform: translate(-1px, -1px);
        clip-path: inset(2% 0 0 0);
    }
    80% {
        transform: translate(1px, 1px);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes glitch-layer-1 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
    25% {
        transform: translate(-2px, 0);
        opacity: 0.4;
        clip-path: inset(0 0 50% 0);
    }
    50% {
        transform: translate(2px, 0);
        opacity: 0.3;
        clip-path: inset(0 0 0 0);
    }
    75% {
        transform: translate(0, -1px);
        opacity: 0.35;
        clip-path: inset(30% 0 0 0);
    }
}

@keyframes glitch-layer-2 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
        clip-path: inset(0 0 0 0);
    }
    30% {
        transform: translate(2px, 1px);
        opacity: 0.35;
        clip-path: inset(0 0 40% 0);
    }
    55% {
        transform: translate(-1px, 0);
        opacity: 0.3;
        clip-path: inset(0 0 0 0);
    }
    80% {
        transform: translate(0, 1px);
        opacity: 0.4;
        clip-path: inset(0 0 60% 0);
    }
}

@keyframes glitch-hover {
    0%, 100% {
        transform: scale(1.05) translate(0);
    }
    25% {
        transform: scale(1.05) translate(-1px, 1px);
    }
    50% {
        transform: scale(1.05) translate(1px, -1px);
    }
    75% {
        transform: scale(1.05) translate(-1px, -1px);
    }
}

@keyframes glitch-hover-layer-1 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(-3px, 0);
        opacity: 0.4;
    }
    40% {
        transform: translate(3px, 2px);
        opacity: 0.3;
    }
    60% {
        transform: translate(-2px, -2px);
        opacity: 0.35;
    }
    80% {
        transform: translate(0);
        opacity: 0;
    }
}

@keyframes glitch-hover-layer-2 {
    0%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(3px, -1px);
        opacity: 0.35;
    }
    40% {
        transform: translate(-3px, 2px);
        opacity: 0.3;
    }
    60% {
        transform: translate(2px, -2px);
        opacity: 0.4;
    }
    80% {
        transform: translate(0);
        opacity: 0;
    }
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
        filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    }
    20% {
        transform: translate(-2px, 2px);
        filter: drop-shadow(-2px 2px 0 rgba(255, 0, 0, 0.5)), drop-shadow(2px -2px 0 rgba(0, 255, 255, 0.5));
    }
    40% {
        transform: translate(-2px, -2px);
        filter: drop-shadow(2px -2px 0 rgba(255, 0, 0, 0.5)), drop-shadow(-2px 2px 0 rgba(0, 255, 255, 0.5));
    }
    60% {
        transform: translate(2px, 2px);
        filter: drop-shadow(-2px -2px 0 rgba(255, 0, 0, 0.5)), drop-shadow(2px 2px 0 rgba(0, 255, 255, 0.5));
    }
    80% {
        transform: translate(2px, -2px);
        filter: drop-shadow(2px 2px 0 rgba(255, 0, 0, 0.5)), drop-shadow(-2px -2px 0 rgba(0, 255, 255, 0.5));
    }
}

@keyframes glitch-hover {
    0% {
        transform: translate(0) scale(1.05);
        filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    }
    20% {
        transform: translate(-3px, 3px) scale(1.05);
        filter: drop-shadow(-3px 3px 0 rgba(255, 0, 0, 0.7)), drop-shadow(3px -3px 0 rgba(0, 255, 255, 0.7));
    }
    40% {
        transform: translate(-3px, -3px) scale(1.05);
        filter: drop-shadow(3px -3px 0 rgba(255, 0, 0, 0.7)), drop-shadow(-3px 3px 0 rgba(0, 255, 255, 0.7));
    }
    60% {
        transform: translate(3px, 3px) scale(1.05);
        filter: drop-shadow(-3px -3px 0 rgba(255, 0, 0, 0.7)), drop-shadow(3px 3px 0 rgba(0, 255, 255, 0.7));
    }
    80% {
        transform: translate(3px, -3px) scale(1.05);
        filter: drop-shadow(3px 3px 0 rgba(255, 0, 0, 0.7)), drop-shadow(-3px -3px 0 rgba(0, 255, 255, 0.7));
    }
    100% {
        transform: translate(0) scale(1.05);
        filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    }
}

.hero-content {
    text-align: left;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

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

.hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 300;
    margin-top: 1rem;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

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

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Music Section */
.music-section {
    padding: 100px 0;
    background: #000000;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: start;
}

.release-item {
    display: flex;
    flex-direction: column;
}

.release-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.release-link:hover {
    transform: translateY(-8px);
}

.release-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.release-link:hover .release-thumbnail {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 
                0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.release-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.release-link:hover .release-thumbnail img {
    transform: scale(1.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

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

.play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
    fill: white;
}

.release-title {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.release-link:hover .release-title {
    color: var(--text-primary);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    padding: 2rem;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.2s ease;
    will-change: transform, opacity;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
}

.video-modal-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    contain: layout style paint;
}

.video-modal-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.youtube-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.youtube-link:hover::after {
    transform: translateX(3px);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

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

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.profile-image.gradient-fallback,
.profile-image:has(img[src=""]) {
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image.gradient-fallback::before,
.profile-image:has(img[src=""])::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.profile-image.gradient-fallback::after,
.profile-image:has(img[src=""])::after {
    content: 'C7';
    position: absolute;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.contact-info h3,
.contact-social h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-link:hover {
    background: var(--gradient-1);
    transform: translateX(10px);
}

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

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card svg {
    width: 30px;
    height: 30px;
}

.social-card:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .music-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-logo {
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .logo-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-surface);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .logo-image {
        max-width: 280px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .mute-button {
        top: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

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

    .loader-ring {
        width: 800px !important;
        height: 800px !important;
        border-width: 14px !important;
        min-width: 800px;
        min-height: 800px;
    }

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

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .release-title {
        font-size: 1rem;
    }
    
    .video-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .video-modal-title {
        font-size: 1.2rem;
    }
}
