* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-red: #1a0000;
    --red-primary: #8b0000;
    --red-secondary: #5c0000;
    --red-accent: #a00000;
    --red-glow: rgba(139, 0, 0, 0.3);
    --dark-bg: #0a0000;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: hidden;
    line-height: 1.6;
    perspective: 1000px;
    position: relative;
    height: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-accent));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--red-glow);
}

/* Navigation Dots */
.navigation-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid var(--red-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--red-primary);
    transition: all 0.3s ease;
}

.nav-dot.active::before {
    width: 8px;
    height: 8px;
}

.nav-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--red-glow);
}

/* Section Base Styles */
.section {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
}

.section.prev {
    transform: translateY(-30px);
    opacity: 0.2;
    z-index: 5;
}

.section.next {
    transform: translateY(30px);
    opacity: 0.2;
    z-index: 5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

/* Hero Section */
.hero-section {
    background-image: url('first block bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    will-change: transform;
}

.layer-1 {
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.3) 0%, transparent 70%);
    transform: translateZ(0);
}

.layer-2 {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(26, 0, 0, 0.6) 100%);
    transform: translateZ(-100px) scale(1.1);
}

.layer-3 {
    background: url('first block bg.png');
    background-size: cover;
    background-position: center;
    transform: translateZ(-200px) scale(1.2);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(26, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    transform-style: preserve-3d;
}

.artist-image-container {
    margin-bottom: 30px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-wrapper-3d {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.image-wrapper-3d:hover {
    transform: rotateY(10deg) rotateX(-5deg) scale(1.05);
}

.artist-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--red-primary);
    box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(139, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
    transform: translateZ(50px);
    position: relative;
    z-index: 2;
}

.image-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, transparent 50%);
    transform: translateZ(-10px) scale(0.95);
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(139, 0, 0, 0.2);
        transform: translateZ(50px) scale(1);
    }
    50% {
        box-shadow: 0 0 60px var(--red-glow), 0 0 120px rgba(139, 0, 0, 0.4);
        transform: translateZ(60px) scale(1.02);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    transform-style: preserve-3d;
    position: relative;
    z-index: 10;
}

.title-letter {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, var(--red-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--red-glow), 0 0 60px var(--red-glow);
    transform: translateZ(0);
    transition: all 0.3s ease;
    animation: letterFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--red-glow));
}

.title-letter:nth-child(1) { animation-delay: 0s; }
.title-letter:nth-child(2) { animation-delay: 0.1s; }
.title-letter:nth-child(3) { animation-delay: 0.2s; }
.title-letter:nth-child(4) { animation-delay: 0.3s; }
.title-letter:nth-child(5) { animation-delay: 0.4s; }
.title-letter:nth-child(6) { animation-delay: 0.5s; }
.title-letter:nth-child(7) { animation-delay: 0.6s; }

.title-letter:hover {
    transform: translateZ(30px) rotateY(15deg) scale(1.2);
    filter: drop-shadow(0 0 20px var(--red-glow));
}

@keyframes letterFloat {
    0%, 100% {
        transform: translateZ(0) translateY(0);
    }
    50% {
        transform: translateZ(20px) translateY(-10px);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translateZ(20px);
    position: relative;
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 2px 2px 8px rgba(0, 0, 0, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1));
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateZ(30px);
    position: relative;
    z-index: 10;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--red-primary);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 0, 0, 0.4), inset 0 0 20px rgba(139, 0, 0, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--red-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    background: var(--red-primary);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px) translateZ(10px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--red-primary);
    border-bottom: 2px solid var(--red-primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 20px;
    transform-style: preserve-3d;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

/* Latest Releases */
.latest-releases {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-red) 100%);
    position: relative;
}

.latest-releases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: center;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(2px);
}

.carousel-item.active {
    flex: 0 0 calc(40% - 20px);
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}

.carousel-item iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: 2px solid var(--red-secondary);
    box-shadow: 0 0 30px var(--red-glow);
}

.carousel-item.active iframe {
    height: 500px;
    box-shadow: 0 0 50px var(--red-glow);
    border-color: var(--red-primary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid var(--red-primary);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--red-primary);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid var(--red-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--red-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--red-glow);
}

.carousel-dot:hover {
    background: var(--red-primary);
    transform: scale(1.2);
}

.release-card {
    background: rgba(26, 0, 0, 0.6);
    border: 1px solid var(--red-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--red-glow);
    border-color: var(--red-primary);
}

.release-card:hover::before {
    opacity: 1;
}

.release-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.release-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
}

.release-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
}

.release-card:hover .release-image img {
    transform: scale(1.15) translateZ(10px);
}

.release-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.release-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.release-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.release-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--red-primary);
    color: var(--text-primary);
    border: 1px solid var(--red-primary);
}

.btn-primary:hover {
    background: var(--red-accent);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px) translateZ(10px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--red-primary);
}

.btn-secondary:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: var(--red-accent);
    transform: translateY(-2px) translateZ(10px);
}

.btn-icon {
    background: transparent;
    border: 1px solid var(--red-primary);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.btn-icon:hover {
    background: var(--red-primary);
    box-shadow: 0 0 15px var(--red-glow);
    transform: translateZ(10px) rotateY(180deg);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Album Covers Carousel in Hero Section */
.covers-carousel-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    perspective: 2000px;
    perspective-origin: center center;
    overflow: visible;
    transform-style: preserve-3d;
    z-index: 2;
}

.covers-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
    width: fit-content;
    min-width: 100%;
    animation: scrollCovers 40s linear infinite;
    will-change: transform;
    transform-style: preserve-3d;
}

.covers-carousel-track:hover {
    animation-play-state: paused;
}

.cover-item {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.cover-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--red-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px var(--red-glow);
    transform: rotateY(0deg) rotateX(5deg);
    transition: all 0.3s ease;
    display: block;
}

.cover-item:hover img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.15);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.9), 0 0 30px var(--red-glow);
    border-color: var(--red-accent);
    z-index: 10;
}

@keyframes scrollCovers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Video Section */
.video-section {
    background: var(--dark-red);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.video-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    display: block;
}

.video-container iframe:hover {
    transform: none;
}

/* All Releases */
.all-releases {
    background: linear-gradient(180deg, var(--dark-red) 0%, var(--dark-bg) 100%);
}

.releases-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.release-item {
    background: rgba(26, 0, 0, 0.6);
    border: 1px solid var(--red-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.release-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.release-item:hover {
    border-color: var(--red-primary);
    box-shadow: 0 10px 40px var(--red-glow);
    transform: translateY(-3px);
}

.release-item:hover::before {
    opacity: 1;
}

.release-item-content {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    align-items: center;
}

.release-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.release-item:hover .release-item-image {
    transform: scale(1.05);
}

.release-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-item:hover .release-item-image img {
    transform: scale(1.1);
}

.release-item-info {
    flex: 1;
}

.release-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.release-item-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.release-item-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.spotify-embed-container {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--red-secondary);
    display: none;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.release-item.expanded .spotify-embed-container {
    display: block;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: justify;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--dark-red);
    border: 2px solid var(--red-primary);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px var(--red-glow);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
}

.modal-close:hover {
    color: var(--red-primary);
    background: rgba(139, 0, 0, 0.5);
    transform: rotate(90deg);
}

.modal-body {
    margin-top: 20px;
}

.track-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.track-details-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--red-secondary);
}

.track-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.track-details-date {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.track-details-section {
    margin-bottom: 30px;
}

.track-details-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--red-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.track-details-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    white-space: pre-line;
}

.lyrics-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--red-primary);
}

.inspiration-container {
    background: rgba(139, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--red-accent);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.lang-btn {
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid var(--red-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--red-primary);
    box-shadow: 0 0 15px var(--red-glow);
}

.lang-dropdown {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
    background: rgba(26, 0, 0, 0.9);
    border: 1px solid var(--red-secondary);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(10px);
    min-width: 60px;
}

.language-switcher:hover .lang-dropdown {
    display: flex;
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: left;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(139, 0, 0, 0.3);
    color: var(--text-primary);
}

/* Footer */
.footer-section {
    background: var(--dark-bg);
    min-height: auto;
    height: auto;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px var(--red-glow));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 30px var(--red-glow)) brightness(1.1);
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--red-secondary);
}

.footer-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--text-primary);
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-copyright,
.footer-made {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--red-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--red-accent);
    text-shadow: 0 0 10px var(--red-glow);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .artist-image {
        width: 200px;
        height: 200px;
    }

    .release-card.featured {
        grid-template-columns: 1fr;
    }

    .release-item-content {
        grid-template-columns: 80px 1fr auto;
        gap: 15px;
    }

    .release-item-image {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        padding: 20px;
    }

    .navigation-dots {
        right: 15px;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .carousel-item.active {
        flex: 0 0 calc(70% - 15px);
    }
    
    .carousel-item iframe {
        height: 280px;
    }
    
    .carousel-item.active iframe {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-dots {
        gap: 8px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-item {
        flex: 0 0 100%;
        opacity: 0.3;
    }
    
    .carousel-item.active {
        flex: 0 0 100%;
        opacity: 1;
    }
    
    .carousel-item iframe {
        height: 250px;
    }
    
    .carousel-item.active iframe {
        height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        background: rgba(139, 0, 0, 0.5);
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-dots {
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-track {
        gap: 20px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-accent);
}
