/* ============================================
   CUSTOM FONTS
   ============================================ */
@font-face {
    font-family: 'DrukTextWideCyr';
    src: url("/static/fonts/druktextwidecyr-bold.69e019ec88b0.otf") format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Affect';
    src: url("/static/fonts/affect_bold.0425ff2e8f40.otf") format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%) translateZ(0);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.bg-video.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Even darker overlay */
    backdrop-filter: blur(3px); /* Slight blur */
    z-index: 1;
}

/* ============================================
   RESET & VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Grey/Black Theme */
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-color: #666666;
    --accent-secondary: #888888;
    --accent-tertiary: #555555;
    --text-primary: #e0e0e0;
    --text-secondary: #999999;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    /* Fonts */
    --font-primary: 'Affect', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DrukTextWideCyr', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: auto; /* Disable native smooth scroll, Lenis will handle it */
    scroll-padding-top: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


body {
    font-family: var(--font-primary);
    background: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    overflow: hidden; /* Disable scroll initially for loader */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Disable image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* ============================================
   CUSTOM SCROLLBAR - HIDDEN FOR LENIS
   ============================================ */
/* Hide scrollbar completely for smooth virtual scroll */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* IE and Edge */
body {
    -ms-overflow-style: none;
}

/* ============================================
   DOT NAVIGATION
   ============================================ */
.navigation-dots {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.nav-dot.active::before {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.5);
}

/* Tooltip */
.nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .navigation-dots {
        display: none;
    }
}


/* ============================================
   GLASSMORPHISM UTILITIES
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Safari-specific fix for glass effect */
@supports (-webkit-backdrop-filter: blur(20px)) {
    .glass-card {
        background: rgba(10, 10, 10, 0.6);
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(100, 100, 100, 0.3);
}

@supports (-webkit-backdrop-filter: blur(20px)) {
    .glass-card:hover {
        background: rgba(20, 20, 20, 0.7);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.loader-numbers {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    display: flex;
    gap: 0.5rem;
    line-height: 1;
    color: white;
}

.loader-numbers span {
    opacity: 0;
    transform: translateY(40px);
    animation: revealNumber 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.loader-numbers span:nth-child(1) { animation-delay: 0.2s; }
.loader-numbers span:nth-child(2) { animation-delay: 0.5s; }
.loader-numbers span:nth-child(3) { animation-delay: 0.8s; }
.loader-numbers span:nth-child(4) { animation-delay: 1.1s; }

@keyframes revealNumber {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    padding: 0;
    background: transparent;
    overflow: hidden;
    transition: filter 0.3s ease, opacity 0.5s ease, transform 0.1s ease-out;
    will-change: transform, filter, opacity;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: flex;
    width: 100%;
    height: 100vh;
    z-index: 1;
    align-items: stretch;
}

.hero-image {
    position: relative;
    flex: 0 0 35%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.artist-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    border: none;
    border-radius: 0;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
    animation: none;
    transition: transform 0.4s ease;
    margin-left: -5%;
    margin-top: -5%;
}

.artist-photo:hover {
    transform: scale(1.02);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glow-effect {
    display: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    min-width: 300px;
    text-align: center;
}

.artist-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.name-gradient {
    background: linear-gradient(135deg, #e0e0e0 0%, #888888 50%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #555555, #333333);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #666666, #444444);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

/* Safari-specific fix for buttons */
@supports (-webkit-backdrop-filter: blur(10px)) {
    .btn-secondary {
        background: rgba(10, 10, 10, 0.5);
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

@supports (-webkit-backdrop-filter: blur(10px)) {
    .btn-secondary:hover {
        background: rgba(20, 20, 20, 0.6);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

.btn-icon {
    font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-lg) var(--spacing-md) 10rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    will-change: transform, filter, opacity;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Releases Grid */
.releases-grid {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: flex-start;
}

.releases-grid.two-columns {
    display: flex;
}

/* Release Card */
.release-card {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    width: 450px;
    max-width: 100%;
    height: auto;
}

.release-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.release-artwork {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
}

.artwork-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #444444, #222222);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.release-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.release-track-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 0;
    color: var(--accent-color);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.release-description {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.release-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    width: 100%;
}

.lyrics-btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.presave-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.streaming-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.stream-btn {
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
}

.stream-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-tertiary);
    transform: translateY(-2px);
}

.lyrics-btn {
    display: inline-flex;
    padding: 0.6rem 1.5rem; /* Match stream-btn size */
    font-size: 0.9rem;      /* Match stream-btn size */
}

@media (max-width: 768px) {
    .lyrics-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Show Section */
.show-card {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.show-card.no-show {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-lg);
}

.show-card.no-show .show-date {
    display: none;
}

.show-card.no-show .show-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.show-card.no-show .venue-details {
    justify-content: center;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #555555, #333333);
    border-radius: 16px;
    padding: var(--spacing-md);
    min-width: 120px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.date-day {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-details {
    flex: 1;
    min-width: 300px;
}

.show-details h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-tertiary);
    text-align: center;
}

.venue-details {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Biography Section */
.bio-content {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-secondary);
}

.bio-content p {
    margin-bottom: var(--spacing-md);
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.bio-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 110%;
    height: 110%;
    margin-left: -5%;
    margin-top: -5%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through to the image/container */
}

.gallery-item-overlay .view-btn {
    pointer-events: auto; /* Re-enable clicks for the button */
}

.view-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #555555, #333333);
    border: none;
    border-radius: 25px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

/* Touch devices - NO hover effects, only click */
@media (hover: none) {
    .gallery-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Remove all hover effects on mobile */
    .gallery-item:active {
        transform: none;
    }
    
    .gallery-item .gallery-item-overlay {
        opacity: 0;
        display: none; /* Completely hide overlay on mobile */
    }
    
    .gallery-item .view-btn {
        display: none; /* Hide button on mobile */
    }
    
    /* No scale effect on mobile */
    .gallery-item img {
        transform: none !important;
    }
}

/* Hover devices */
@media (hover: hover) {
    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item:hover .gallery-item-overlay {
        opacity: 1;
    }

    .gallery-item:hover .view-btn {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); /* Slightly lighter background */
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

#modal-image {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    cursor: grab;
    transition: transform 0.1s ease-out; /* Smooth zoom/pan */
    object-fit: contain;
}

#modal-image:active {
    cursor: grabbing;
}

.modal-close {
    position: fixed; /* Fixed to screen, not content */
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    backdrop-filter: blur(5px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-close:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.2);
}

#modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.download-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #555555, #333333);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #666666, #444444);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer .container {
    display: flex;
    justify-content: center; /* Changed from space-between to center */
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem; /* Increased gap for separation */
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    
    /* Hide the rotating gradient on mobile */
    .hero-section::before {
        display: none;
    }

    /* Dark gradient overlay for text readability */
    /* Gradient overlay removed as requested */
    .hero-section::after {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: 25vh; /* Adjusted padding since we don't need to clear a face */
        position: relative;
        z-index: 2;
        justify-content: center; /* Center content vertically */
    }
    
    /* Hide the artist image completely on mobile to show video background */
    .hero-image {
        display: none;
    }
    
    .hero-text {
        padding: 0 var(--spacing-md) var(--spacing-lg);
        text-align: center;
        width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .release-card,
    .show-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .container {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    /* Remove blur from hero cards on mobile */
    .hero-card.glass-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.4); /* Slightly darker background for readability without blur */
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* Increase artist name and tagline size on mobile */
    .artist-name {
        font-size: 4.5rem;
        margin-bottom: 0.5rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 2.5rem; /* Add more space below tagline */
    }
}

/* ============================================
   HERO INFO BLOCKS (NEW)
   ============================================ */
.hero-info-blocks {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: stretch;
}

.hero-card {
    flex: 1;
    padding: 1rem 1rem 1rem; /* Slightly larger bottom padding */
    width: auto;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to top */
    gap: 0.8rem; /* Reduced gap between title and content */
    min-width: 260px;
    min-height: 0; /* Removed min-height constraint */
    height: auto;
}



/* Override alignment for show card content */
#upcoming-show-card .release-main-content {
    align-items: stretch; /* Align top and bottom with artwork */
    gap: 1rem;
    width: 100%;
}

/* Override min-height for show card right column */
#upcoming-show-card .release-right-column {
    min-height: 120px; /* Match show date box height */
    min-width: 0; /* Allow flex item to shrink below content size */
    flex: 1; /* Take remaining space */
}

.hero-card .release-content {
    display: flex;
    align-items: center; /* Center vertically */
    gap: 1rem;
}

/* New layout for upcoming release card */
.hero-card .release-main-content {
    display: flex;
    align-items: stretch; /* Align top and bottom with artwork */
    gap: 1rem;
    flex: 1; /* Take available space */
}

.hero-card .release-right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pin content to top and bottom */
    height: 120px; /* Exact match for artwork height */
    flex: 1;
    min-width: 0; /* Allow flex item to shrink and enable text-overflow */
    overflow: hidden;
}

.hero-card .release-artwork {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-card .release-artwork img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
}

.hero-card .release-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start; /* Align text to left */
    width: 100%;
    min-width: 0;
    text-align: left;
    overflow: hidden;
}

.hero-card .release-card-title,
.hero-card h3 {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    margin-top: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.hero-card .release-track-title {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    text-align: left;
}

.hero-card .release-date {
    font-size: 0.75rem;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    text-align: left;
}

.hero-card .release-actions {
    margin-top: 0;
}

.hero-card .presave-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: center;
}

/* Placeholder message styling */
.placeholder-message {
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.7;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    padding: 1rem 0;
}

/* Placeholder states for disabled cards */
.hero-card.no-release,
.hero-card.no-show {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

/* Show Card Specifics in Hero */
.hero-card.show-card {
    /* Keep column for the main card to put button at bottom */
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    flex-wrap: nowrap;
}

/* Show date box - same size as artwork */
.hero-card .show-date-box {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #555555, #333333);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-card .show-date-box .date-day {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.hero-card .show-date-box .date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Show venue info styling */
.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    max-width: 100%;
}

.hero-card .show-venue-info {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    width: 100%;
    min-width: 0;
}



.hero-card .show-content {
    display: flex;
    align-items: center; /* Center vertically */
    gap: 1rem;
    flex: 1;
}

.hero-card .show-date {
    padding: 0.5rem 0.8rem;
    min-width: auto;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: none;
    flex-shrink: 0;
}

.hero-card .date-day {
    font-size: 1.4rem;
}

.hero-card .date-month {
    font-size: 0.6rem;
}

.hero-card .show-details {
    width: 100%;
    min-width: 0;
    text-align: left;
}

.hero-card .show-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#show-title {
    font-size: 1.1rem; /* Smaller title as requested */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.hero-card .venue-details {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

#latest-release .release-content {
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

#latest-release .release-artwork {
    width: 160px; /* Reduced from 200px */
    height: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden; /* Ensure overflow is hidden for parallax bleed */
    border-radius: 16px; /* Ensure border radius is applied to container */
    display: flex;
    align-items: center;
    justify-content: center;
}

#latest-release .release-artwork .artwork-placeholder,
#latest-release .release-artwork img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    border-radius: 0; /* Radius handled by container */
    flex-shrink: 0;
}

#latest-release .release-info {
    text-align: left;
    gap: 0.5rem;
}

#latest-release .release-track-title {
    font-size: 2.2rem; /* Slightly smaller */
    margin-bottom: 0.2rem;
}

#latest-release .release-date {
    font-size: 0.9rem;
    opacity: 0.6;
}

#latest-release .release-actions {
    gap: 0.8rem;
    margin-top: 0;
}

#latest-release .lyrics-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#latest-release .lyrics-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

#latest-release .streaming-links {
    gap: 0.6rem;
}

#latest-release .stream-btn {
    padding: 0.7rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#latest-release .stream-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

/* Recent Release Card - Increased width by 20% */
#recent-release-card {
    width: 540px; /* Increased from default 450px (450 * 1.2 = 540) */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-info-blocks {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-info-blocks {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-card {
        max-width: 100%;
        height: auto; /* Auto height on mobile for better content fit */
        min-height: 200px; /* Minimum height to maintain structure */
    }
    
    #latest-release .release-content {
        flex-direction: column;
        text-align: center;
    }
    
    #latest-release .release-artwork {
        width: 100%;
        height: auto;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ============================================
   SECTION SPACING OVERRIDES
   ============================================ */
#latest-release,
#biography,
#gallery {
    padding-bottom: 4rem;
    padding-top: 4rem;
    min-height: auto;
}

/* ============================================
   CONTACTS SECTION
   ============================================ */
.contacts-section {
    padding-bottom: 0; /* Remove section padding to control spacing via button margin */
    min-height: auto;
}

.contacts-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1rem;
    padding: 1.5rem; /* Restore balanced padding */
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-item h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #555555, #333333);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #666666, #444444);
}

.contact-link .icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
/* Styles moved to base.css */

.back-to-top {
    font-family: var(--font-primary);
}


/* Toggle Section Styles */
.toggle-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.toggle-content {
    padding: 60px;
    border-radius: 24px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.toggle-text-image.image-right {
    direction: rtl;
}

.toggle-text-image.image-right .toggle-text {
    direction: ltr;
}

.toggle-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.toggle-text p {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-line;
}

.toggle-text-only {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.toggle-image-only img {
    width: 100%;
    border-radius: 16px;
}

.toggle-video {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.toggle-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .toggle-text-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .toggle-text-image.image-right {
        direction: ltr;
    }
    
    .toggle-content {
        padding: 30px;
    }
}


/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
    display: flex;
    gap: 1.5rem;
    /* Removed margin-top to fix vertical alignment in footer */
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}



