@font-face {
    font-family: 'Benguiat';
    src: url('./fonts/ITCBenguiatStdBoldCn.woff2') format('woff2'),
         url('./fonts/ITCBenguiatStdBoldCn.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ──────────────────────────────────────
   Design System — Color Tokens
   ────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg-primary:   #E8E4DC;
    --bg-secondary: #F2EFEA;
    --bg-card:      #FFFFFF;

    /* Accents */
    --accent-teal:   #6B9E9A;
    --accent-copper: #B87A5A;
    --accent-sage:   #A8C4BC;

    /* Text */
    --text-primary:   #1E2A30;
    --text-secondary: #2B3A4A;
    --text-muted:     #6B8A82;

    /* Border */
    --border: #D0CCC4;

    /* ──────────────────────────────────────
       Design System — Spacing Tokens
       Base unit: 0.25rem (4px)
       Usage: --space-{multiplier}
       ────────────────────────────────────── */
    --space-1:   0.25rem;  /*  4px  */
    --space-2:   0.5rem;   /*  8px  */
    --space-3:   0.75rem;  /* 12px  */
    --space-4:   1rem;     /* 16px  */
    --space-5:   1.25rem;  /* 20px  */
    --space-6:   1.5rem;   /* 24px  */
    --space-8:   2rem;     /* 32px  */
    --space-10:  2.5rem;   /* 40px  */
    --space-12:  3rem;     /* 48px  */
    --space-16:  4rem;     /* 64px  */
    --space-20:  5rem;     /* 80px  */
    --space-24:  6rem;     /* 96px  */
    --space-32:  8rem;     /* 128px */

    /* ──────────────────────────────────────
       Design System — Radius Tokens
       Base unit: 0.25rem (4px)
       Usage: --radius-{multiplier}
       ────────────────────────────────────── */
    --radius-05:   0.125rem;  /*  2px  */
    --radius-1:    0.25rem;   /*  4px  */
    --radius-2:    0.5rem;    /*  8px  */
    --radius-3:    0.75rem;   /* 12px  */
    --radius-4:    1rem;      /* 16px  */
    --radius-6:    1.5rem;    /* 24px  */
    --radius-full: 9999px;

    /* ──────────────────────────────────────
       Design System — Container Tokens
       ────────────────────────────────────── */
    --container-sm:   400px;
    --container-md:   600px;
    --container-lg:   860px;
    --container-xl:  1200px;
}

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

html {
    min-height: -webkit-fill-available;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: clip;
    position: relative;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    padding-bottom: env(safe-area-inset-bottom, 2rem);
}

.container {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/backgrounds/flux_1.webp') center/cover;
    opacity: 0.4;
}

.header {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.band-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    font-family: 'Benguiat', 'Inter', 'sans-serif';
    letter-spacing: -1px;
}

.band-logo {
    max-width: 25rem;
    width: 90vw;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

section {
    z-index: 10;
}

.link-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.link-icon img {
    object-fit: contain;
}

.link-icon.soundcloud img {
    object-fit: cover;
    object-position: center left;
}

.press-kit-page .link-icon {
    background: rgba(0, 0, 0, 0.05);
    margin-right: 1rem;
}

.press-kit-page .link-icon.soundcloud img {
    filter: invert(1);
}

.press-kit-page a:hover .link-icon {
    background: rgba(0, 0, 0, 0.15);
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 80px;
    flex-shrink: 0;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-venue {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0.25rem;
}

.event-location {
    font-size: 0.9rem;
    color: #999;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.event-lineup {
    flex: 1;
}

.lineup-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.lineup-bands {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.3;
}

.ticket-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ticket-button:hover {
    background: linear-gradient(135deg, #ff5252, #ff1744);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.ticket-button.unavailable {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    cursor: not-allowed;
}

.ticket-button.unavailable:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    box-shadow: none;
}

.footer {
    margin-top: 3rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        margin-bottom: 2rem;
    }
    
    .band-name {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .link-icon {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }

    .event-card {
        padding: 1.25rem;
    }
    
    .event-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        min-width: auto;
    }
    
    .event-day {
        font-size: 1.25rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .ticket-button {
        align-self: center;
        width: fit-content;
    }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

/* Shared Light Page Styles */
.light-page {
    background: #ffffff;
    color: #333333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: clip;
    position: relative;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    padding-bottom: env(safe-area-inset-bottom, 2rem);
}

.center-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.page-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: #333333;
    margin-bottom: 0;
    line-height: 1;
    font-family: 'Benguiat', 'Inter', sans-serif;
    text-align: center;
}

.back-home-link {
    display: inline-block;
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-home-link:hover {
    color: #333333;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    line-height: 1.3;
}

.section-heading:first-child {
    margin-top: 0;
}

.light-page p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.light-page p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness for light pages */
@media (max-width: 480px) {
    .center-container {
        padding: 1rem;
    }

    .center-content {
        gap: 1.5rem;
    }

    .page-title {
        font-size: 3rem;
    }
}

/* 404 Error Page Styles */
.error-text-container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.error-page .error-title {
    font-size: clamp(4rem, 12vw, 8rem);
    margin-bottom: 1rem;
}

.error-page .error-message {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 0;
    font-weight: 500;
}

.error-image-container {
    max-width: 500px;
    width: 100%;
}

.error-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.back-home-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #333333;
    border: 2px solid #333333;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.back-home-button:hover {
    background: transparent;
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness for 404 page */
@media (max-width: 480px) {
    .error-container {
        padding: 1rem;
    }
    
    .error-content {
        gap: 1.5rem;
    }
    
    .error-title {
        font-size: 3rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .back-home-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Honeypot field - completely hidden */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
}

/* Press Kit Page Styles */
.press-kit-page {
    padding: 0;
}

.press-kit-header {
    background: #ffffff;
    padding: 2rem 2rem 1rem;
    top: 0;
    z-index: 100;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switch {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.6rem;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-switch:hover {
    color: #333;
    border-color: #999;
}

.header-band-logo {
    filter: brightness(0.885) invert(1);
    display: block;
    margin: 0 auto 30px;
    height: auto;
    object-fit: contain;
    max-width: 80vw;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
}

.contact-button:hover {
    background: linear-gradient(135deg, #ff5252, #ff1744);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.press-kit-header .back-home-link,
.eth-page .back-home-link {
    margin-bottom: 0;
}

.press-kit-header .page-title,
.eth-header .page-title {
    font-size: clamp(.825rem, 6.7vw, 2.5rem);
    margin: 0 auto;
    max-width: 1200px;
}

.press-kit-main {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.press-kit-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.press-kit-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
    font-family: 'Benguiat', 'Inter', sans-serif;
}

.listen-card,
.pictures-card,
.video-card {
    grid-column: 1 / -1;
}

.track-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.play-pause-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.play-pause-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.play-pause-btn:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
    background: rgba(255, 107, 107, 0.1);
}

.play-pause-btn:active {
    transform: translateY(0);
}

.play-pause-btn.playing {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.play-pause-btn.loading {
    cursor: wait;
}

.play-icon,
.pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    color: inherit;
    transition: opacity 0.2s ease;
}

.pause-icon {
    opacity: 0;
}

.play-pause-btn.playing .play-icon {
    opacity: 0;
}

.play-pause-btn.playing .pause-icon {
    opacity: 1;
}

.loading-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-left: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.play-pause-btn.loading .play-icon,
.play-pause-btn.loading .pause-icon {
    opacity: 0;
}

.track-name {
    font-weight: 500;
    color: #333333;
    flex: 1;
    min-width: 0;
}

.track-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    min-width: 120px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff5252);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.85rem;
    color: #666666;
    font-family: 'Monaco', 'Courier New', monospace;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.current-time,
.total-time {
    font-style: normal;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .play-pause-btn,
    .progress-bar {
        transition: none;
    }

    .loading-spinner {
        animation: none;
        border-left-color: rgba(0, 0, 0, 0.3);
    }
}

/* Mobile responsiveness for audio player */
@media (max-width: 768px) {
    .track-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .track-controls {
        width: 100%;
        margin-top: 0.5rem;
        min-width: unset;
    }

    .play-pause-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .play-icon,
    .pause-icon {
        width: 14px;
        height: 14px;
    }

    .loading-spinner {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .track-item {
        padding: 0.75rem 0;
    }

    .track-controls {
        gap: 0.75rem;
    }

    .progress-container {
        min-width: 80px;
    }

    .time-display {
        font-size: 0.8rem;
        min-width: 70px;
    }
}

/* Audio player utility classes */
.loading-spinner.hidden {
    display: none;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Photo Gallery Lightbox Enhancements */
.photo-item {
    position: relative;
    cursor: pointer;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-item:focus-within .photo-overlay {
    opacity: 1;
}

.photo-overlay:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

.expand-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Gallery Controls */
.gallery-controls {
    position: relative;
    margin-top: -3rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-fade {
    position: absolute;
    top: 0;
    left: -.5rem;
    right: -.5rem;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #fafafadd 50%,
        #fafafa 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.photo-gallery.expanded ~ .gallery-controls .gallery-fade {
    opacity: 0;
}

.gallery-toggle-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-toggle-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-toggle-btn:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.gallery-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    width: 95vw;
    height: 95vh;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: lightbox-enter 0.3s ease-out;
}

@keyframes lightbox-enter {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.lightbox-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    font-family: 'Benguiat', 'Inter', sans-serif;
}

.lightbox-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333333;
}

.lightbox-close:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    height: 100%;
    overflow: hidden;
    background: #000;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #f8f8f8;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
}

.lightbox-nav:disabled:hover {
    transform: translateY(-50%);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    text-align: center;
}

.photo-counter {
    font-size: 0.9rem;
    color: #666666;
    font-family: 'Monaco', 'Courier New', monospace;
}

/* Mobile lightbox adaptations */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        width: 100%;
        height: 100%;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-header,
    .lightbox-footer {
        padding: 1rem;
    }

    .expand-icon {
        width: 28px;
        height: 28px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .lightbox-overlay,
    .photo-overlay,
    .lightbox-nav {
        transition: none;
    }

    .lightbox-content {
        animation: none;
    }

    @keyframes lightbox-enter {
        from, to {
            opacity: 1;
            transform: none;
        }
    }
}

.music-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ff8c42, #ff7b25);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.2);
}

.music-link:hover {
    background: linear-gradient(135deg, #ff7b25, #ff6500);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Hidden photos initially */
.photo-gallery .hidden-photo {
    display: none;
}

/* When gallery is expanded, show all photos */
.photo-gallery.expanded .hidden-photo {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

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

.photo-item {
    margin: 0;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.photo-item img:hover {
    opacity: 0.9;
}

.photo-note {
    font-size: 0.85rem;
    color: #666666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.video-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.video-placeholder p {
    margin: 0 0 0.5rem;
    color: #666666;
    font-size: 1.1rem;
}

.video-placeholder small {
    color: #888888;
    font-size: 0.9rem;
}

.press-quote {
    margin: 0;
    padding: 0;
    border-left: 4px solid #ff6b6b;
    padding-left: 1.5rem;
    font-style: italic;
}

.press-quote p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444444;
}

.press-quote footer {
    margin-top: 1rem;
}

.press-quote cite a {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.press-quote cite a:hover {
    color: #333333;
    text-decoration: underline;
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-links li {
    margin-bottom: 0.75rem;
}

.social-links li:last-child {
    margin-bottom: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #333333;
}

.link-group-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999999;
    margin: 1.5rem 0 0.75rem;
    font-family: 'Inter', sans-serif;
}

.link-group-heading:first-of-type {
    margin-top: 0;
}

.contact-section {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

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

.contact-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2rem;
    font-family: 'Benguiat', 'Inter', sans-serif;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #333333;
    font-weight: 600;
}

.contact-info a:not(.contact-button) {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover:not(.contact-button) {
    color: #333333;
    text-decoration: underline;
}

.contact-cta {
    color: #666666;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Mobile responsiveness for press kit */
@media (max-width: 768px) {
    .press-kit-header {
        padding: 1.5rem 1rem 1rem;
    }

    .header-nav {
        margin-bottom: 1.5rem;
    }

    .contact-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .press-kit-main {
        padding: 1rem 1rem 2rem;
    }

    .press-kit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .press-kit-card {
        padding: 1.5rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-toggle-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .gallery-controls {
        margin-top: -2.5rem;
        height: 3.5rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .press-kit-header .page-title {
        font-size: 2rem;
    }

    .contact-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .press-kit-card h2 {
        font-size: 1.25rem;
    }
}

/* MOLOKAART Page Styles */


.molokaart-content {
    max-width: 860px;
}

.molokaart-header {
    text-align: center;
    position: relative;
}



.molokaart-page .title-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: .5rem 0 0;
    transition: all 0.3s ease;
}

.molokaart-page .title-link::before,
.molokaart-page .title-link::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 2px;
    background: #333333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.molokaart-page .title-link::before {
    top: 0;
}

.molokaart-page .title-link::after {
    bottom: 1.5rem;
}

.molokaart-page .title-link:hover::before,
.molokaart-page .title-link:hover::after {
    width: 100%;
}

.molokaart-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: start;
}

.molokaart-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.molokaart-image {
    width: 100%;
    max-width: 300px;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-content {
    flex: 1;
}


.molokaart-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.molokaart-page .methods-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
}

.method {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.molokaart-page .method-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.method p {
    margin-bottom: 0;
}

.method a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
}

.method a:hover {
    text-decoration: underline;
}

.molokaart-cta {
    text-align: center;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    background: linear-gradient(135deg, #ff5252, #ff1744);
    border-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.molokaart-events {
    width: 100%;
}

.molokaart-page .events-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
}

/* Events styling for light background */
.molokaart-page .events-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.molokaart-page .event-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.molokaart-page .event-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.molokaart-page .event-date {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 80px;
    flex-shrink: 0;
}

.molokaart-page .event-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    line-height: 1;
}

.molokaart-page .event-month {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.molokaart-page .event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.molokaart-page .event-venue {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 0.25rem;
}

.molokaart-page .event-location {
    font-size: 0.9rem;
    color: #666666;
}

.molokaart-page .lineup-label {
    font-size: 0.8rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.molokaart-page .lineup-bands {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.3;
}

.molokaart-page .ticket-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.molokaart-page .ticket-button:hover {
    background: linear-gradient(135deg, #ff5252, #ff1744);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.molokaart-page .ticket-button.unavailable {
    background: rgba(0, 0, 0, 0.1);
    color: #888888;
    cursor: not-allowed;
}

.molokaart-page .ticket-button.unavailable:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: none;
    box-shadow: none;
}

/* Mobile responsive adjustments for MOLOKAART page */
@media (max-width: 768px) {
    .molokaart-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .molokaart-info {
        gap: 1.5rem;
    }
    
    .molokaart-page .methods-title {
        font-size: 1.3rem;
    }

    .molokaart-image {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .molokaart-container {
        padding: 1rem;
    }
    
    .molokaart-content {
        gap: 2rem;
    }
    
    .molokaart-page .molokaart-title {
        font-size: 3rem;
    }
    
    .molokaart-main {
        gap: 2rem;
    }
    
    .method {
        padding: 1.25rem;
    }
    
    .molokaart-page .method-heading {
        font-size: 1rem;
    }
    
    .instagram-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .molokaart-page .events-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .molokaart-page .event-card {
        padding: 1.25rem;
    }
    
    .molokaart-page .event-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .molokaart-page .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        min-width: auto;
    }
    
    .molokaart-page .event-day {
        font-size: 1.25rem;
    }
    
    .molokaart-page .event-title {
        font-size: 1.1rem;
    }
    
    .molokaart-page .event-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .molokaart-page .ticket-button {
        align-self: center;
        width: fit-content;
    }
}

/* ================================
   Video Player Styles
   ================================ */

/* Video Gallery Navigation */
.video-gallery {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    justify-content: flex-start;
}

.video-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px;
    max-width: 160px;
}

.thumbnail-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
}

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

.video-thumbnail:hover .thumbnail-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail:focus {
    outline: 3px solid #007acc;
    outline-offset: 2px;
    border-radius: 8px;
}

.video-thumbnail.active .thumbnail-image {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4), 0 0 0 3px #ff6b6b;
    transform: translateY(-1px);
}

.video-thumbnail.active .thumbnail-overlay {
    background: rgba(255, 107, 107, 0.2);
}

.video-thumbnail.active .video-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(255, 107, 107, 0.3);
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.video-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 0 0.5rem;
}

.thumbnail-play-icon {
    width: 24px;
    height: 24px;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: absolute;
}

.video-thumbnail:hover .video-title {
    opacity: 0;
}

.video-thumbnail:hover .thumbnail-play-icon {
    opacity: 1;
    transform: scale(1);
}

.video-item {
    margin: 1.5rem 0 0 0;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
}

/* Video Poster Overlay */
.video-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.video-container.playing .video-poster-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Better object-fit for fullscreen */
.video-container video:fullscreen {
    object-fit: contain;
}

/* Video Controls Overlay */
.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto; /* Make overlay clickable */
    cursor: pointer;
    z-index: 2; /* Above poster overlay */
}

/* Hide play button when video is playing, but keep overlay clickable */
.video-container.playing .video-controls-overlay {
    background: transparent; /* Remove dark overlay during playback */
}

.video-container.playing .video-play-btn {
    opacity: 0;
    pointer-events: auto; /* Keep functional for keyboard users */
    transition: opacity 0.3s ease;
}

/* Show play button on hover or focus, even when playing */
.video-container:hover .video-play-btn,
.video-container.playing .video-play-btn:focus {
    opacity: 1;
}

/* Ensure focused button is always visible */
.video-play-btn:focus {
    opacity: 1 !important;
    outline: 3px solid #007acc;
    outline-offset: 2px;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    pointer-events: auto;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.video-play-btn:focus {
    outline: 3px solid #007acc;
    outline-offset: 2px;
}

.video-play-btn.playing .video-controls-overlay {
    opacity: 0;
}

.video-play-btn svg {
    width: 48px;
    height: 48px;
    color: #333;
}

.video-play-btn.loading {
    pointer-events: none;
}

.video-play-icon.hidden,
.video-pause-icon.hidden {
    display: none;
}

.video-loading-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: #333;
    border-radius: 50%;
    animation: video-spinner 1s linear infinite;
}

.video-loading-spinner.hidden {
    display: none;
}

@keyframes video-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Video Controls Bar */
.video-controls-bar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 8px 8px;
    padding: 0.75rem;
    margin-top: -1px;
}

.video-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 0.75rem;
    position: relative;
}

.video-progress-container:hover {
    background: rgba(0, 0, 0, 0.15);
}

.video-progress-container:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

.video-progress-bar {
    height: 100%;
    background: #007acc;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.video-controls-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-time-controls,
.video-quality-controls,
.video-volume-controls,
.video-action-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-time-controls {
    margin-right: auto;
}

.video-time-display {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 0.875rem;
    color: #555;
    min-width: 80px;
}

/* Quality Selector */
.quality-selector {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    min-width: 60px;
}

.quality-selector:focus {
    outline: 2px solid #007acc;
    outline-offset: 1px;
}

.quality-selector:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Volume Controls */
.volume-btn {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.volume-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.volume-btn:focus {
    outline: 2px solid #007acc;
    outline-offset: 1px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #007acc;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #007acc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.volume-slider:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

/* Action Controls */
.fullscreen-btn {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.fullscreen-btn:focus {
    outline: 2px solid #007acc;
    outline-offset: 1px;
}

.fullscreen-btn svg {
    width: 20px;
    height: 20px;
    color: #555;
}

/* Video Description */
.video-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-gallery {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
        align-items: center;
    }

    .video-thumbnail {
        min-width: 120px;
        max-width: 140px;
    }

    .thumbnail-play-icon {
        width: 20px;
        height: 20px;
    }

    .video-title {
        font-size: 0.8rem;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 36px;
        height: 36px;
    }

    .video-controls-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .video-time-controls,
    .video-quality-controls,
    .video-volume-controls,
    .video-action-controls {
        justify-content: space-between;
    }

    .video-volume-controls {
        order: 1;
    }

    .video-quality-controls {
        order: 2;
    }

    .video-action-controls {
        order: 3;
        justify-content: center;
    }

    .volume-slider {
        flex: 1;
        margin-left: 0.5rem;
    }
}

/* ═══════════════════════════════════════════════════
   Easy to Hide — Single EPK Page
   ═══════════════════════════════════════════════════ */

.eth-page {
    padding: 0;
    background: #e8e0d8;
}

/* Frosted glass background layers */
.eth-bg {
    position: fixed;
    inset: 0;
    background: url('/images/eth/artwork-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.eth-bg-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

/* Header */
.eth-header {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem 1rem;
}

.eth-page .header-nav {
    max-width: 1200px;
}

.eth-page .back-home-link {
    color: #555;
}

.eth-page .contact-button {
    background: linear-gradient(135deg, #5a7d6a, #4a6d5a);
    box-shadow: 0 2px 8px rgba(90, 125, 106, 0.2);
}

.eth-page .contact-button:hover {
    background: linear-gradient(135deg, #4a6d5a, #3a5d4a);
    box-shadow: 0 4px 16px rgba(90, 125, 106, 0.3);
}

/* Logo block with decorative rules */
.eth-logo-block {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main content */
.eth-main {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Glass cards */
.eth-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.eth-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.25rem;
    font-family: 'Benguiat', 'Inter', sans-serif;
}

/* Full-width cards */
.eth-listen-card,
.eth-pictures-card,
.eth-lyrics-card {
    grid-column: 1 / -1;
}

/* Song Data — credits (two-column grid with row stripes) */
.eth-song-data {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.eth-song-data dt,
.eth-song-data dd {
    padding: 0.6rem 0.75rem;
    margin: 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.eth-song-data dt:last-of-type,
.eth-song-data dd:last-of-type {
    border-bottom: none;
}

.eth-song-data dt {
    font-weight: 600;
    color: #444;
}

.eth-song-data dd {
    color: #555;
}

/* Song Data — metadata group (compact, inline) */
.eth-song-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.eth-meta-item {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0;
}

.eth-meta-item dt {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.eth-meta-item dd {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Listen section */
.eth-listen-card .track-list {
    margin-bottom: 0;
}

/* ETH enhanced player layout */
.eth-player-layout {
    display: grid !important;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    align-items: center;
    border-bottom: none !important;
    padding: 0 !important;
}

.eth-player-artwork img {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: block;
}

.eth-player-main {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.eth-player-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.eth-player-info .track-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.eth-player-layout .progress-container {
    flex: none;
    height: 8px;
    cursor: pointer;
    border-radius: 4px;
}

.eth-player-layout .progress-bar {
    border-radius: 4px;
}

.eth-player-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.eth-player-layout .play-pause-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #5a7d6a, #4a6d5a);
    border-color: transparent;
    color: #fff;
    touch-action: manipulation;
}

.eth-player-layout .play-pause-btn:hover {
    background: linear-gradient(135deg, #4a6d5a, #3a5d4a);
    border-color: transparent;
}

.eth-player-layout .play-pause-btn.playing {
    background: rgba(90, 125, 106, 0.15);
    border-color: rgba(90, 125, 106, 0.3);
    color: #444;
}

.skip-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    width: 36px;
    height: 36px;
    touch-action: manipulation;
}

.skip-btn:hover {
    color: #222;
}

.skip-label {
    position: absolute;
    font-size: 0.5rem;
    font-weight: 700;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
    color: inherit;
}

/* Pictures */
.eth-pictures-card .photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.eth-pictures-card .photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.eth-pictures-card .photo-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.eth-pictures-card .photo-item:hover img {
    transform: scale(1.03);
}

.eth-pictures-card .photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.eth-pictures-card .photo-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.eth-pictures-card .expand-icon {
    opacity: 0;
    color: #fff;
    transition: opacity 0.3s ease;
}

.eth-pictures-card .photo-overlay:hover .expand-icon {
    opacity: 1;
}

/* Lyrics */
.eth-lyrics {
    font-style: italic;
    line-height: 1.8;
    color: #444;
}

.eth-lyrics p {
    margin-bottom: 1.5rem;
    color: #444;
}

.eth-lyrics p:last-child {
    margin-bottom: 0;
}

/* Social links overrides for eth-page */
.eth-page .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eth-page .social-links li {
    margin-bottom: 0.75rem;
}

.eth-page .social-links a {
    display: flex;
    align-items: center;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.eth-page .social-links a:hover {
    color: #222;
}

.eth-page .link-icon {
    background: rgba(0, 0, 0, 0.05);
    margin-right: 1rem;
}

.eth-page a:hover .link-icon {
    background: rgba(0, 0, 0, 0.1);
}

.eth-page .link-icon.soundcloud img {
    filter: invert(1);
}

/* Contact overrides */
.eth-contact {
    position: relative;
    z-index: 2;
    background: transparent;
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.eth-contact-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.eth-contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #444;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.eth-contact-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.eth-contact-link strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
}

.eth-contact-link span {
    font-size: 1.05rem;
    color: #333;
}

/* ── ETH Responsive ── */

@media (max-width: 768px) {
    .eth-header {
        padding: 1.5rem 1rem 1rem;
    }

    .eth-main {
        padding: 1.5rem 1rem 2rem;
    }

    .eth-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .eth-card {
        padding: 1.5rem;
    }

    .eth-song-data dt,
    .eth-song-data dd {
        padding: 0.5rem 0.5rem;
    }

    .eth-pictures-card .photo-gallery {
        grid-template-columns: 1fr;
    }

    .eth-player-layout {
        grid-template-columns: 1fr !important;
        justify-items: center;
    }

    .eth-player-artwork img {
        width: 160px;
        height: 160px;
    }

    .eth-player-main {
        width: 100%;
    }

    .eth-contact-details {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .eth-card h2 {
        font-size: 1.2rem;
    }
}

/* ──────────────────────────────────────
   Release Page — Easy to Hide pre-release
   Mobile-first (≥320), tablet (≥600), desktop (≥1024)
   ────────────────────────────────────── */

body.release-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-bottom: 0;
}

.release-page .release-eyebrow {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.release-page .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--accent-teal);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    border-radius: var(--radius-2);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.release-page .btn-primary:hover:not(:disabled):not(.loading) {
    background: #5a8a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(107, 158, 154, 0.3);
}

.release-page .btn-primary:disabled,
.release-page .btn-primary.loading {
    opacity: 0.7;
    cursor: progress;
    transform: none;
    box-shadow: none;
}

.release-page .btn-primary .btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.release-page .btn-primary.loading .btn-spinner {
    display: inline-block;
}

.release-page .btn-primary.loading .btn-text {
    opacity: 0.75;
}

/* ─── 01 · Hero ─── */

.release-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: 40px 20px 32px;
    min-height: 92dvh;
    text-align: center;
    overflow: hidden;
}

/* Frosted-glass background, scoped to the hero — mirrors .eth-bg / .eth-bg-overlay pattern */
.release-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
}

.release-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.release-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.release-hero .release-eyebrow {
    font-size: 11px;
    letter-spacing: 0.45em;
}

.release-artwork {
    display: block;
    width: min(320px, calc(100vw - 40px), 50dvh);
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-2);
    overflow: hidden;
    background: var(--bg-secondary);
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-title {
    font-family: 'Inter', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 2px;
}

.release-date {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.release-presave {
    margin-top: var(--space-1);
}

.release-platforms {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

/* ─── 02 · Identity ─── */

.release-identity {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-6);
}

.release-identity-figure {
    position: absolute;
    inset: 0;
    margin: 0;
}

.release-identity-figure picture,
.release-identity-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.release-identity-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 48, 0.6);
    pointer-events: none;
}

.release-bio {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 200px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--bg-secondary);
    text-align: center;
    border: 0;
    padding: 0;
}

/* Ensure [hidden] wins over our flex overrides on release-page */
.release-page [hidden] {
    display: none !important;
}

/* ─── 03 · Upcoming Shows ─── */

.release-shows {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: 28px 20px;
    border-top: 1px solid var(--border);
}

.tour-dates-heading {
    font-family: 'Benguiat', 'Inter', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.shows-list {
    display: flex;
    flex-direction: column;
}

.event-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
}

.event-row:last-child {
    border-bottom: 0;
}

.event-row-main {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

a.event-row-main:hover .event-title {
    color: var(--accent-teal);
}

.event-row .event-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 44px;
    flex: 0 0 auto;
}

.event-row .event-day {
    font-family: 'Benguiat', 'Inter', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.event-row .event-month {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1;
}

.event-row .event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}

.event-row .event-title {
    font-family: 'Benguiat', 'Inter', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.15s ease;
}

.event-row .event-location {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.event-row .event-tickets.btn-primary {
    align-self: stretch;
    padding: 8px 18px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.event-row .event-tickets-soon {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
    line-height: 1.3;
    flex: 0 0 auto;
}

.shows-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    text-align: center;
}

.shows-empty-trailing {
    margin: 0;
    max-width: 48ch;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    text-wrap: balance;
}

/* ─── 04 · Newsletter ─── */

.release-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: 32px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.release-newsletter-heading {
    font-family: 'Benguiat', 'Inter', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.newsletter-inline {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    width: 100%;
    max-width: 520px;
}

.newsletter-inline .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.newsletter-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-2);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    border-color: var(--accent-teal);
}

.newsletter-input.error {
    border-color: var(--accent-copper);
}

.newsletter-submit {
    width: 100%;
}

.newsletter-error {
    min-height: 1em;
    font-size: 12px;
    color: var(--accent-copper);
    text-align: left;
}

.newsletter-error:empty {
    display: none;
}

.newsletter-success {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    align-items: center;
    color: var(--text-primary);
    padding: var(--space-3) 0;
}

.newsletter-success-title {
    font-family: 'Benguiat', 'Inter', serif;
    font-size: 16px;
    font-weight: 700;
}

.newsletter-success-body {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ─── 05 · Socials ─── */

.release-socials {
    padding: 24px 20px;
    border-top: 1px solid var(--border);
}

.socials-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-5);
    font-size: 12px;
}

.socials-row a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.18s ease;
}

.socials-row a:hover {
    color: var(--text-primary);
}

/* Cancel chip styling from .lang-switch press-kit/eth base so it reads like the other socials */
.release-page .socials-row .lang-switch {
    border: 0;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    letter-spacing: normal;
}

/* ─── 06 · Footer ─── */

.release-footer {
    padding: 16px 20px;
    text-align: center;
}

.release-footer p {
    margin: 0;
    font-size: 10px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

/* ─── Tablet (≥600px) ─── */

@media (min-width: 600px) {
    .release-hero {
        padding: 64px 40px 48px;
        gap: var(--space-6);
    }

    .release-hero .release-eyebrow {
        font-size: 13px;
        letter-spacing: 0.46em;
    }

    .release-artwork {
        width: min(440px, 55dvh);
    }

    .release-title {
        font-size: 42px;
    }

    .release-date {
        font-size: 14px;
    }

    .release-platforms {
        font-size: 12px;
    }

    .release-identity {
        min-height: 300px;
    }

    .release-bio {
        max-width: 440px;
        font-size: 15px;
    }

    .release-shows {
        padding: 40px 48px;
        gap: var(--space-5);
    }

    .release-newsletter {
        padding: 48px;
        gap: var(--space-4);
    }

    .release-newsletter-heading {
        font-size: 18px;
    }

    .newsletter-inline {
        flex-direction: row;
        align-items: stretch;
        flex-wrap: wrap;
        max-width: 560px;
    }

    .newsletter-input {
        flex: 1 1 280px;
        padding: 12px 16px;
    }

    .newsletter-submit {
        width: auto;
    }

    .newsletter-error {
        flex: 1 1 100%;
    }

    .release-socials {
        padding: 32px 48px;
    }

    .socials-row {
        gap: var(--space-8);
        font-size: 13px;
    }

    .release-footer {
        padding: 20px 48px;
    }

    .release-footer p {
        font-size: 11px;
    }
}

/* ─── Desktop (≥1024px) ─── */

@media (min-width: 1024px) {
    .release-hero {
        padding: 80px 80px 64px;
        gap: var(--space-8);
    }

    .release-hero .release-eyebrow {
        font-size: 14px;
        letter-spacing: 0.57em;
    }

    .release-artwork {
        width: min(640px, 50dvh);
    }

    .release-title {
        font-size: 56px;
    }

    .release-date {
        font-size: 15px;
    }

    .release-platforms {
        font-size: 13px;
    }

    .release-identity {
        min-height: 400px;
    }

    .release-identity-overlay {
        background: rgba(30, 42, 48, 0.56);
    }

    .release-bio {
        max-width: 700px;
        font-size: 18px;
        line-height: 1.7;
    }

    .release-shows {
        padding: 48px 200px;
        gap: var(--space-6);
    }

    .event-row {
        flex-direction: row;
        align-items: center;
        gap: var(--space-6);
        padding: var(--space-5) 0;
    }

    .event-row-main {
        gap: var(--space-6);
        width: auto;
    }

    .event-row .event-date {
        min-width: 52px;
    }

    .event-row .event-tickets.btn-primary {
        align-self: auto;
    }

    .event-row .event-tickets-soon {
        text-align: right;
    }

    .event-row .event-day {
        font-size: 32px;
    }

    .event-row .event-title {
        font-size: 17px;
    }

    .event-row .event-location {
        font-size: 13px;
    }

    .release-newsletter {
        padding: 56px 200px;
        gap: var(--space-5);
    }

    .tour-dates-heading,
    .release-newsletter-heading {
        font-size: 20px;
    }

    .newsletter-input {
        flex: 1 1 360px;
        padding: 14px 18px;
    }

    .release-socials {
        padding: 40px 200px;
    }

    .socials-row {
        gap: var(--space-10);
        font-size: 14px;
    }

    .release-footer {
        padding: 24px 200px;
    }

    .release-footer p {
        font-size: 12px;
    }
}
