/* base.css — split from styles.css. Edit here; npm run build copies to /css. */

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

html {
    background-color: #0d0d0d;
}

:root {
    color-scheme: dark;
    --primary-color: #ffffff;
    --secondary-color: #0a0a0a;
    --accent-color: #ff1a3a;
    --accent-hover: #e61734;
    --accent-dark: #cc1430;
    --accent-glow: rgba(255, 26, 58, 0.5);
    --radius: 2px;
    --text-color: #ffffff;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.65);
    --border-color: rgba(255, 255, 255, 0.12);
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-dark: #0d0d0d;
    --bg-darker: #000000;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-large: 0 24px 80px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 26, 58, 0.4);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #ff1a3a 0%, #cc1430 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.75) 100%);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.25, 0.64, 1);
    --header-height: 3.25rem;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Oswald', system-ui, sans-serif;
    --page-width: 1100px;
    --page-gutter: 2rem;
    --section-y: 4.75rem;
}

@media (max-width: 768px) {
    :root {
        --header-height: 3.1rem;
        --page-gutter: 1.25rem;
        --section-y: 3.25rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

main {
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(ellipse 130% 90% at 50% -35%, rgba(255, 26, 58, 0.09), transparent 58%),
        radial-gradient(ellipse 65% 55% at 100% 18%, rgba(72, 48, 110, 0.08), transparent 52%),
        radial-gradient(ellipse 70% 50% at 0% 88%, rgba(255, 26, 58, 0.045), transparent 50%);
    background-attachment: fixed, fixed, fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    body {
        background-attachment: scroll, scroll, scroll;
    }
}

::selection {
    background: rgba(255, 26, 58, 0.35);
    color: #fff;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0.5rem;
    z-index: 10001;
    padding: 0.75rem 1.25rem;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 6px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 0;
}

:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Header & Navigation */
@keyframes navHeaderReveal {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes navHeaderEdgeShimmer {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.45;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.9;
    }
}

@keyframes navLogoGlow {
    0%, 100% {
        text-shadow: 0 0 16px rgba(255, 26, 58, 0.22), 0 0 32px rgba(255, 26, 58, 0.08);
    }
    50% {
        text-shadow: 0 0 24px rgba(255, 26, 58, 0.38), 0 0 44px rgba(255, 26, 58, 0.14);
    }
}

@keyframes navDividerBreath {
    0%, 100% {
        border-left-color: rgba(255, 255, 255, 0.14);
    }
    50% {
        border-left-color: rgba(255, 26, 58, 0.35);
    }
}

header {
    background-color: rgba(0, 0, 0, 0.98);
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 26, 58, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(255, 26, 58, 0.2);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
    animation: navHeaderReveal 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 26, 58, 0.08) 18%,
        rgba(255, 26, 58, 0.45) 50%,
        rgba(255, 26, 58, 0.08) 82%,
        transparent 100%
    );
    background-size: 220% 100%;
    animation: navHeaderEdgeShimmer 16s ease-in-out infinite;
}

header:hover {
    box-shadow: 0 6px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 26, 58, 0.14);
    border-bottom-color: rgba(255, 26, 58, 0.32);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.nav-container > *:first-child {
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: space-between;
    min-width: 0;
}

.nav-primary {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-secondary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    min-width: 0;
    padding-left: 1.25rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    transition: border-left-color 0.4s ease;
    animation: navDividerBreath 10s ease-in-out infinite;
}

.lang-float {
    position: fixed;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.5rem + env(safe-area-inset-right, 0px));
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lang-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-float .lang-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
}

.lang-float .lang-link.active,
.lang-float .lang-link[aria-current="page"] {
    color: #fff;
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: 0 0 16px rgba(255, 26, 58, 0.35);
}

.lang-float .lang-link.active:visited,
.lang-float .lang-link[aria-current="page"]:visited {
    color: #fff;
}

.lang-float .lang-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    pointer-events: none;
}

body.cookie-banner-visible .lang-float {
    bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 600px) {
    body.cookie-banner-visible .lang-float {
        bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 768px) {
    .lang-float {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        right: calc(1rem + env(safe-area-inset-right, 0px));
        padding: 0.5rem 0.85rem;
        min-height: 44px;
    }

    .lang-float .lang-link {
        padding: 0.35rem 0.5rem;
        min-height: 44px;
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
    }
}

.lang-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
    line-height: 1;
}

.lang-link:visited {
    color: #fff;
}

.lang-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.lang-link.active {
    color: #fff;
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: 0 0 14px rgba(255, 26, 58, 0.28);
}

.lang-link.active:visited {
    color: #fff;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    letter-spacing: 1px;
    user-select: none;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    transition: color 0.3s ease, text-shadow 0.35s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), letter-spacing 0.35s ease;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 26, 58, 0.3);
    display: inline-block;
    animation: navLogoGlow 6s ease-in-out infinite;
}

.logo a:hover {
    animation-play-state: paused;
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px) scale(1.02);
    letter-spacing: 3.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    font-size: 1rem;
    text-transform: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, text-shadow 0.3s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), letter-spacing 0.25s ease;
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 26, 58, 0.1);
    text-shadow: 0 0 10px var(--accent-glow);
    transform: translateY(-2px);
    letter-spacing: 1.85px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 2rem);
}

.nav-menu a.active {
    color: var(--accent-color);
    background-color: rgba(255, 26, 58, 0.15);
    text-shadow: 0 0 15px var(--accent-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 8px;
}

.menu-toggle:hover {
    transform: scale(1.06);
    background: rgba(255, 26, 58, 0.08);
}

.menu-toggle:active {
    transform: scale(0.96);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background-color 0.25s ease;
    transform-origin: center;
    border-radius: 1px;
}

.menu-toggle:hover span {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px rgba(255, 26, 58, 0.35);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.menu-toggle.active:hover {
    transform: none;
    background: rgba(255, 26, 58, 0.1);
}

.social-icons-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border-radius: 4px;
    padding: 6px;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
    background-color: rgba(255, 26, 58, 0.2);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 26, 58, 0.35);
}

.social-icon:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

@media (min-width: 769px) {
    .logo {
        animation: navItemIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.06s backwards;
    }

    .nav-menu li:nth-child(1) { animation: navItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.11s backwards; }

    .nav-menu li:nth-child(2) { animation: navItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.17s backwards; }

    .nav-menu li:nth-child(3) { animation: navItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.23s backwards; }

    .nav-menu li:nth-child(4) { animation: navItemIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.29s backwards; }

    .nav-secondary {
        animation: navItemIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.34s backwards,
            navDividerBreath 10s ease-in-out infinite;
    }
}

@media (max-width: 1024px) {
    .nav-right {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .social-icons-header {
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .lang-switch {
        gap: 0.4rem;
    }
}

@media (max-width: 900px) {
    .nav-container {
        padding: 0 1.5rem;
    }

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

    .release-container {
        gap: 3rem;
    }

    .media-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .media-copy {
        order: -1;
    }

    .highlights-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@keyframes heroLightSweep {
    0% { background-position: 200% 0; }
    50% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 40px rgba(255, 26, 58, 0.6), 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 26, 58, 0.3);
    }
    50% {
        text-shadow: 0 0 60px rgba(255, 26, 58, 0.8), 0 8px 40px rgba(0, 0, 0, 0.9), 0 0 100px rgba(255, 26, 58, 0.5);
    }
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-body);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 26, 58, 0.2);
    border-radius: 999px;
    border: 2px solid rgba(255, 26, 58, 0.4);
    box-shadow: 0 0 20px rgba(255, 26, 58, 0.3);
    color: #fff;
}

.album-title {
    font-size: 3.5rem;
    margin: 2rem 0;
    font-weight: 300;
    letter-spacing: 5px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
    font-style: italic;
    opacity: 0.95;
}

.album-status {
    font-size: 1.6rem;
    margin: 0 0 3rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 10px;
    text-transform: uppercase;
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-glow);
    display: inline-block;
    padding: 0.35em 0.6em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

@keyframes heroScrollCue {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.65; }
    50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .sponsor-logo:hover {
        transform: none;
    }
}

.btn-hero-shop {
    background: rgba(232, 184, 74, 0.08);
    color: #fff;
    border: 2px solid rgba(232, 184, 74, 0.75);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-shop:hover {
    background: rgba(232, 184, 74, 0.18);
    border-color: #e8b84a;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(232, 184, 74, 0.2);
}

@keyframes heroTitleShimmer {
    0%, 100% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
}

@media (prefers-reduced-motion: reduce) {
    header {
        animation: none !important;
    }

    header::after {
        animation: none;
        opacity: 0.55;
        background-position: 50% 50%;
    }

    .logo a {
        animation: none;
        text-shadow: 0 0 20px rgba(255, 26, 58, 0.3);
    }

    .logo,
    .nav-menu li,
    .nav-secondary {
        animation: none !important;
    }

    .nav-secondary {
        border-left-color: rgba(255, 255, 255, 0.18);
    }
}

.btn {
    padding: 1.1rem 2.75rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    transition:
        transform 0.45s var(--ease-premium),
        box-shadow 0.45s var(--ease-premium),
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        filter 0.35s ease;
    display: inline-block;
    border-radius: 6px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow:
        0 6px 20px rgba(255, 26, 58, 0.4),
        0 0 30px rgba(255, 26, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff2a4a 0%, #e61734 100%);
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(255, 26, 58, 0.48),
        0 0 55px rgba(255, 26, 58, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    filter: brightness(1.03);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.99);
    transition-duration: 0.12s;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow:
        0 10px 35px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.99);
    transition-duration: 0.12s;
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #999;
    color: #fff;
    border-color: #999;
}

.btn:disabled:hover,
.btn[disabled]:hover {
    transform: none;
    box-shadow: none;
}

.release-highlight {
    padding: 6rem 2rem 5rem;
    margin-bottom: 0;
    background: linear-gradient(165deg, #2d1f1a 0%, #1f1512 30%, #1a120f 60%, #261a15 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    scroll-margin-top: calc(5.5rem + env(safe-area-inset-top, 0px));
}

.release-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 20%, rgba(180, 80, 50, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.release-inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
}

.release-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 200, 180, 0.7);
    margin-bottom: 2rem;
    text-align: center;
}

.release-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.05fr;
    gap: 4rem;
    align-items: start;
}

.release-artwork {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 2rem;
}

.vinyl-frame {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 30%, rgba(80, 50, 40, 0.95), rgba(25, 15, 12, 0.98));
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 200, 180, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vinyl-frame::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 220, 200, 0.12);
    border-radius: 18px;
}

.vinyl-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.release-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.release-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.release-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.25);
    margin-bottom: 0.25rem;
}

.release-details h2 {
    font-size: 3.5rem;
    margin: 0 0 0.25rem;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.05;
}

.release-intro h2 {
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.05;
    margin: 0;
}

.release-description {
    font-size: 1.1rem;
    color: rgba(255, 230, 215, 0.85);
    margin: 0;
    max-width: 52ch;
    line-height: 1.75;
}

.platform-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 220, 200, 0.7);
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: #fff;
}

.release-player {
    max-width: 1100px;
    width: 100%;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.release-player--catalog {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.album-embed {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.album-embed-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.album-embed-header span {
    color: rgba(255, 220, 200, 0.68);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.album-embed-header h3 {
    margin: 0;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
}

.release-player iframe {
    display: block;
    width: 100%;
    height: 152px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.release-player--catalog iframe {
    height: 352px;
}

.newest-release {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #261a15 0%, #17100e 100%);
}

.newest-release-inner {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.newest-release-artwork img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.newest-release-copy {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.newest-release-label {
    color: rgba(255, 220, 200, 0.68);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.newest-release-copy h2 {
    margin: 0;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
}

.newest-release-copy p {
    max-width: 42ch;
    margin: 0;
    color: rgba(255, 230, 215, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.release-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 0;
    padding-top: 0.5rem;
}

.release-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.release-meta ol,
.release-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.release-meta ol {
    counter-reset: track;
}

.release-meta ol li {
    counter-increment: track;
    position: relative;
    padding-left: 1.75rem;
}

.release-meta ol li::before {
    content: counter(track);
    position: absolute;
    left: 0;
    top: 0;
}

.track-duration {
    color: var(--text-light);
    font-weight: 400;
    margin-left: 0.5rem;
    font-size: 0.95em;
}

.highlights {
    padding: 6rem 2rem 6.5rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0a0a 100%);
}

.highlights-inner {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.highlights-heading {
    font-size: 3.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 6px;
    color: #fff;
    margin: 0 0 3rem;
    text-align: center;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
}

.highlight-card {
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition:
        transform 0.5s var(--ease-premium),
        box-shadow 0.5s var(--ease-premium),
        border-color 0.45s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.highlight-card--tour {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 26, 58, 0.2);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-card--tour::before { background: var(--gradient-accent); }

.highlight-card--music {
    background: linear-gradient(145deg, #17131d 0%, #100f17 100%);
    border: 1px solid rgba(120, 90, 180, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-card--music::before { background: var(--accent-color); }

.highlight-card--merch {
    background: linear-gradient(145deg, #1f1a14 0%, #1a1610 100%);
    border: 1px solid rgba(180, 120, 40, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-card--merch::before { background: linear-gradient(90deg, #c4942e, #e8b84a); }

.highlight-card--press {
    background: linear-gradient(145deg, #0f141a 0%, #0d1117 100%);
    border: 1px solid rgba(30, 100, 140, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.highlight-card--press::before { background: linear-gradient(90deg, #1e6490, #2a8bc4); }

.highlight-card:hover {
    transform: translateY(-8px);
}

.highlight-card--tour:hover {
    border-color: rgba(255, 26, 58, 0.45);
    box-shadow:
        0 28px 64px rgba(255, 26, 58, 0.14),
        0 0 0 1px rgba(255, 26, 58, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.highlight-card--music:hover {
    border-color: rgba(160, 125, 220, 0.45);
    box-shadow:
        0 28px 64px rgba(120, 90, 180, 0.14),
        0 0 0 1px rgba(160, 125, 220, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.highlight-card--merch:hover {
    border-color: rgba(232, 184, 74, 0.45);
    box-shadow:
        0 28px 64px rgba(180, 120, 40, 0.12),
        0 0 0 1px rgba(232, 184, 74, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.highlight-card--press:hover {
    border-color: rgba(42, 139, 196, 0.45);
    box-shadow:
        0 28px 64px rgba(30, 100, 140, 0.12),
        0 0 0 1px rgba(42, 139, 196, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card-pill {
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.card-pill--music {
    background: rgba(120, 90, 180, 0.18);
    color: #c9b7ff;
    border: 1px solid rgba(160, 125, 220, 0.32);
}

.card-pill--tour {
    background: rgba(255, 26, 58, 0.12);
    color: var(--accent-color);
    border: 1px solid rgba(255, 26, 58, 0.25);
}

.card-pill--merch {
    background: rgba(196, 148, 46, 0.2);
    color: #e8b84a;
    border: 1px solid rgba(196, 148, 46, 0.35);
}

.card-pill--press {
    background: rgba(42, 139, 196, 0.2);
    color: #5eb3e8;
    border: 1px solid rgba(42, 139, 196, 0.35);
}

.highlight-card h3 {
    font-size: 1.75rem;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.card-link {
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition:
        gap 0.4s var(--ease-spring),
        letter-spacing 0.4s ease,
        filter 0.35s ease;
}

.card-link span {
    transition: transform 0.3s ease;
}

.card-link:hover span {
    transform: translateX(4px);
}

.card-link:hover {
    letter-spacing: 1.15px;
}

.card-link--tour:hover {
    filter: drop-shadow(0 0 16px rgba(255, 26, 58, 0.45));
}

.card-link--music:hover {
    filter: drop-shadow(0 0 16px rgba(201, 183, 255, 0.45));
}

.card-link--merch:hover {
    filter: drop-shadow(0 0 16px rgba(232, 184, 74, 0.4));
}

.card-link--press:hover {
    filter: drop-shadow(0 0 16px rgba(94, 179, 232, 0.45));
}

.card-link--tour { color: var(--accent-color); }

.card-link--music { color: #c9b7ff; }

.card-link--merch { color: #e8b84a; }

.card-link--press { color: #5eb3e8; }

.card-link::after {
    content: none;
}

.home-bio {
    padding: 0 2rem 5rem;
    background:
        radial-gradient(ellipse 60% 70% at 85% 10%, rgba(255, 26, 58, 0.08), transparent 58%),
        var(--bg-primary);
}

.home-bio-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-bio h2 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 0.98;
    text-transform: uppercase;
}

.home-bio p {
    max-width: 72ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.8;
}

.media-feature {
    position: relative;
    padding: 6rem 2rem 7rem;
    overflow: hidden;
    scroll-margin-top: calc(5.5rem + env(safe-area-inset-top, 0px));
}

.media-feature-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0c0c0e 0%, #15151a 35%, #1a1a22 70%, #0f0f12 100%);
    z-index: 0;
}

.media-feature-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 30% 50%, rgba(255, 26, 58, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.media-container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.media-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 26, 58, 0.9);
    margin-bottom: 1.25rem;
    display: block;
}

.media-player {
    position: relative;
}

.media-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.media-copy .card-pill {
    margin-bottom: 0;
}

.card-pill--dark {
    background: rgba(255, 26, 58, 0.25);
    border-color: rgba(255, 26, 58, 0.5);
    color: #fff;
}

.media-copy h2 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.media-copy p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.75;
    font-size: 1.08rem;
}

.media-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.media-bullets li::before {
    content: '– ';
    color: var(--accent-color);
}

.media-cta {
    width: fit-content;
    margin-top: 0.5rem;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-tour .sponsors-section {
    padding: 1rem 0 4rem 0;
}

body.page-tour .sponsors-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    body.page-tour .sponsors-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    body.page-tour .sponsors-container {
        padding: 0 0.75rem;
    }
}

.venue-link {
    display: inline;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 26, 58, 0.55);
    text-underline-offset: 0.15em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.venue-link:hover {
    color: #fff;
    background: none;
    text-decoration-color: var(--accent-color);
}

.page-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.page-header-pretitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.page-header-title {
    font-size: 4.5rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    margin: 0 0 0.25rem;
    color: #fff;
    letter-spacing: 4px;
    line-height: 1.1;
}

.page-header-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 60ch;
    margin: 0 auto;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--accent-glow);
}

.placeholder-image {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cart-toggle-header .cart-icon {
    flex-shrink: 0;
    display: block;
}

.cart-toggle-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.cart-toggle-header:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.cart-count {
    display: none;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    aspect-ratio: 1;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count[style*="inline-flex"] {
    display: inline-flex !important;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 1;
}

.cart-header h2 {
    font-size: 1.75rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cart-items {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 1rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-qty-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cart-qty-btn:hover {
    background: rgba(255, 26, 58, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cart-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.cart-remove {
    background: rgba(196, 30, 58, 0.1);
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.cart-remove:hover {
    background: var(--accent-color);
    color: #fff;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
    position: sticky;
    bottom: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-total span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.cart-total span:last-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

#paypal-button-container {
    margin-bottom: 1rem;
    min-height: 45px;
    background: transparent;
}

#paypal-button-container .paypal-buttons {
    line-height: 0;
}

#paypal-button-container > div,
#paypal-button-container .paypal-buttons {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

#paypal-button-container .paypal-buttons + .paypal-buttons {
    margin-top: 0 !important;
}

#paypal-button-container iframe {
    display: block;
    margin: 0;
}

.cart-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.paypal-setup-note {
    padding: 1.25rem 1rem;
    background: rgba(255, 26, 58, 0.15);
    border: 1px solid rgba(255, 26, 58, 0.22);
    border-radius: 8px;
    text-align: center;
    line-height: 1.5;
}

.paypal-setup-note__title {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.paypal-setup-note p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.paypal-loading {
    margin: 0;
    padding: 1rem 0.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.paypal-instructions {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
}

.paypal-instructions a {
    color: var(--accent-color);
    text-decoration: none;
}

.paypal-instructions a:hover {
    text-decoration: underline;
}

.social-media {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.social-media h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.9rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background: transparent;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.sponsors-section {
    background: var(--bg-primary);
    padding: 4rem 2rem;
}

.sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.5rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    filter: grayscale(100%) contrast(1.1) invert(1) brightness(1.1);
    mix-blend-mode: lighten;
    transition:
        opacity 0.35s ease,
        transform 0.4s var(--ease-premium),
        filter 0.35s ease;
    display: block;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.06);
    filter: grayscale(85%) contrast(1.12) invert(1) brightness(1.14);
}

footer {
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 0;
    border-top: none;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 26, 58, 0.15) 15%,
        rgba(255, 26, 58, 0.55) 50%,
        rgba(255, 26, 58, 0.15) 85%,
        transparent 100%
    );
    pointer-events: none;
}

footer p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.75rem;
    margin-bottom: 1.25rem;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-lineup {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .nav-right {
        position: relative;
        width: 100%;
        justify-content: flex-end;
        gap: 1rem;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        max-width: 320px;
        margin: 0 auto;
        background: rgba(10, 10, 10, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 1.5rem 1.75rem;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(16px);
        z-index: 999;
        justify-content: flex-start;
    }

    .nav-links.open {
        display: flex;
        animation: fadeIn 0.25s ease;
    }

    .nav-primary,
    .nav-secondary {
        width: 100%;
    }

    .nav-secondary {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 1rem;
        margin-top: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .menu-toggle {
        display: flex;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        text-align: left;
        padding: 0.85rem 1rem;
        min-height: 44px;
        min-width: 44px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        border-radius: 8px;
        letter-spacing: 1px;
    }

    .lang-switch {
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .cart-toggle-header {
        margin-right: 0;
        margin-bottom: 0.5rem;
        width: 100%;
        justify-content: center;
        min-height: 44px;
        padding: 0.65rem 1rem;
    }

    .cart-count {
        min-width: 20px;
        min-height: 20px;
        aspect-ratio: 1;
        font-size: 0.65rem;
        padding: 0 5px;
    }

    .social-icons-header {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .album-title {
        font-size: 2rem;
        margin: 1.5rem 0;
    }

    .tagline {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }

    .album-status {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .release-highlight {
        padding: 4rem 1.5rem 4rem;
        margin-bottom: 0;
    }

    .release-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .release-player {
        margin-top: 3rem;
    }

    .release-player--catalog {
        grid-template-columns: 1fr;
    }

    .release-artwork {
        order: -1;
        position: static;
    }

    .release-details {
        text-align: center;
        align-items: center;
    }

    .release-details h2 {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 0;
    }

    .release-intro h2 {
        font-size: 3rem;
    }

    .release-description {
        font-size: 1rem;
        margin: 0;
        max-width: 100%;
    }

    .newest-release {
        padding: 2.5rem 1.5rem;
    }

    .newest-release-inner {
        grid-template-columns: 120px 1fr;
    }

    .highlights {
        padding: 4rem 1.5rem 4rem;
    }

    .highlights-heading {
        font-size: 2.75rem;
        margin-bottom: 2rem;
    }

    .highlights-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.5rem;
    }

    .highlight-card p {
        font-size: 0.95rem;
    }

    .home-bio {
        padding: 0 1.5rem 4rem;
    }

    .home-bio-inner {
        padding: 1.5rem;
    }

    .media-feature {
        padding: 4rem 1.5rem 6rem;
    }

    .media-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .media-copy {
        order: -1;
        text-align: center;
        align-items: center;
    }

    .media-copy h2 {
        font-size: 2rem;
        margin: 0;
        text-align: center;
    }

    .media-copy p {
        font-size: 1rem;
        margin: 0;
        text-align: center;
    }

    .media-cta {
        align-self: center;
    }

    .media-cta {
        width: 100%;
    }

    .page-header-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .sponsors-section {
        padding: 3rem 1.5rem;
        margin-top: 4rem;
    }

    body.page-tour .sponsors-section {
        padding: 1rem 1.5rem 4rem 1.5rem;
        margin-top: 1rem;
    }

    .sponsors-container {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: center;
        padding: 0 0.5rem;
    }

    .sponsor-logo {
        height: 20px;
        width: auto;
        max-width: 80px;
        min-width: 0;
        flex: 0 0 auto;
        object-fit: contain;
        object-position: center;
    }

    footer {
        padding: 3rem 1.5rem;
        margin-top: 0;
    }

    footer p {
        font-size: 0.9rem;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo a {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .logo img {
        height: 34px;
    }

    header {
        padding: 1rem 0;
    }

    .album-title {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0.35rem 0.85rem;
    }

    .album-status {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px; /* Better touch target */
    }

    .release-highlight {
        padding: 3rem 1rem 3rem;
        margin-bottom: 0;
    }

    .release-container {
        gap: 2rem;
    }

    .release-player {
        margin-top: 2.5rem;
    }

    .release-details h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin: 0 0 0.25rem;
    }

    .release-intro h2 {
        font-size: 2.5rem;
    }

    .release-description {
        font-size: 0.95rem;
    }

    .newest-release {
        padding: 2rem 1rem;
    }

    .newest-release-inner {
        grid-template-columns: 92px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .newest-release-copy h2 {
        font-size: 2rem;
    }

    .newest-release-copy p {
        font-size: 0.9rem;
    }

    .highlights {
        padding: 3rem 1rem 3rem 1rem;
    }

    .highlights-container {
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem 1.25rem;
    }

    .highlight-card h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .home-bio {
        padding: 0 1rem 3rem;
    }

    .home-bio-inner {
        padding: 1.25rem;
    }

    .media-feature {
        padding: 3rem 1rem 4rem;
    }

    .media-copy h2 {
        font-size: 1.75rem;
    }

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

    .price {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 2rem 1rem;
        text-align: center;
    }

    footer p {
        font-size: 0.85rem;
    }

    .sponsors-section {
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    body.page-tour .sponsors-section {
        padding: 1rem 1rem 4rem 1rem;
        margin-top: 0.75rem;
    }

    .sponsors-container {
        flex-wrap: nowrap;
        gap: 0.85rem;
        padding: 0 0.5rem;
        justify-content: center;
    }

    .sponsor-logo {
        height: 18px;
        width: auto;
        max-width: 70px;
        min-width: 0;
        flex: 0 0 auto;
        object-fit: contain;
        object-position: center;
    }
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 0px);
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1.5rem calc(2rem + env(safe-area-inset-right, 0px)) 1.5rem calc(2rem + env(safe-area-inset-left, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 2px solid rgba(255, 26, 58, 0.3);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 680px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner a:hover {
    color: #fff;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 26, 58, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 26, 58, 0.5);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        text-align: left;
        padding: 0.75rem calc(1rem + env(safe-area-inset-right, 0px)) 0.75rem calc(1rem + env(safe-area-inset-left, 0px));
        gap: 0.65rem;
    }

    .cookie-banner p {
        font-size: 0.78rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cookie-banner-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        justify-content: stretch;
    }

    .cookie-btn {
        width: 100%;
        min-height: 42px;
        padding: 0.65rem 0.85rem;
        font-size: 0.78rem;
    }
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.error-code {
    font-size: 10rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 10px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 60px rgba(255, 26, 58, 0.3);
    margin-bottom: 1rem;
    animation: glowPulse 3s ease-in-out infinite;
}

.error-page h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

.error-page p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 44ch;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.error-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .error-code {
        font-size: 6rem;
        letter-spacing: 6px;
    }

    .error-page h1 {
        font-size: 1.75rem;
    }

    .error-page p {
        font-size: 1rem;
    }
}

.logo-short {
    display: none;
}

.nav-tickets-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem !important;
    border-radius: 999px !important;
    background: rgba(255, 26, 58, 0.14) !important;
    border: 1px solid rgba(255, 26, 58, 0.42) !important;
    color: #fff !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
}

.nav-tickets-pill::after {
    display: none !important;
}

.nav-tickets-pill:hover {
    background: var(--gradient-accent) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
}

@keyframes heroKenBurns {
    from { transform: scale(1.02) translate3d(0.5%, 0.3%, 0); }
    to { transform: scale(1.09) translate3d(-0.5%, -0.4%, 0); }
}

@keyframes heroBadgeDrift {
    from { transform: translate3d(-7%, -5%, 0) rotate(-2deg) scale(1); }
    to { transform: translate3d(7%, 5%, 0) rotate(3deg) scale(1.12); }
}

.btn-tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.35px;
    border-radius: 2px;
    box-shadow: none;
}

.btn-tertiary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

html[lang="de"] .cookie-banner p {
    line-height: 1.55;
}

.newest-release {
    padding-top: 4.5rem;
}

.newest-release-meta {
    margin: 0;
    color: rgba(255, 220, 200, 0.62);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.newest-release-play {
    margin-top: 0.35rem;
    width: fit-content;
    border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
    .newest-release-artwork--float img {
        animation: artworkFloat 5s ease-in-out infinite;
    }
}

@keyframes artworkFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
}

.highlights-heading {
    font-size: clamp(2.4rem, 6vw, 3.5rem);
    text-align: left;
    margin-bottom: 2.25rem;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.55s var(--ease-premium);
    z-index: 0;
    filter: saturate(0.85) brightness(0.45);
}

.highlight-card > * {
    position: relative;
    z-index: 1;
}

@media (hover: hover) {
    .highlight-card:hover::after {
        opacity: 0.35;
    }
}

.home-bio--split {
    padding: 0 2rem 5rem;
}

.home-bio--split .home-bio-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: center;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.home-bio-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.home-bio-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-bio-timeline {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

.home-bio-timeline__line {
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 26, 58, 0.2), var(--accent-color), rgba(255, 26, 58, 0.2));
}

.home-bio-quote {
    max-width: 1140px;
    margin: 2rem auto 0;
    padding: 1.35rem 1.5rem;
    border-left: 3px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 14px 14px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.65;
}

.home-bio-quote p {
    margin: 0;
    font-style: italic;
}

.home-bio-quote cite {
    display: block;
    margin-top: 0.55rem;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.media-copy__title {
    font-size: clamp(2rem, 4.5vw, 3rem) !important;
    letter-spacing: 0.04em !important;
    font-family: 'Bebas Neue', sans-serif !important;
    line-height: 1.05 !important;
}

@media (max-width: 768px) {
    .home-bio--split .home-bio-inner {
        grid-template-columns: 1fr;
    }
}

.spotify-now-bar {
    position: sticky;
    top: var(--header-height);
    z-index: 999;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    background: rgba(8, 8, 8, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    isolation: isolate;
}

body.spotify-bar-hidden .spotify-now-bar {
    display: none;
}

.spotify-now-bar__shell {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.85rem);
    max-width: var(--page-width);
    margin: 0 auto;
    min-height: 3.5rem;
    padding:
        0.45rem
        max(var(--page-gutter), env(safe-area-inset-right, 0px))
        0.45rem
        max(var(--page-gutter), env(safe-area-inset-left, 0px));
}

.spotify-now-bar__art {
    width: clamp(2.5rem, 8vw, 2.85rem);
    height: clamp(2.5rem, 8vw, 2.85rem);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    flex-shrink: 0;
}

.spotify-now-bar__meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.12rem;
    min-width: 0;
    flex: 1 1 auto;
}

.spotify-now-bar__label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.58rem, 1.4vw, 0.68rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1ed760;
    line-height: 1;
}

.spotify-now-bar__track {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.88rem, 2.1vw, 1.02rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.spotify-now-bar__controls {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.spotify-now-bar__btn,
.spotify-now-bar__dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.spotify-now-bar__btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.spotify-now-bar__btn:hover {
    color: #fff;
    border-color: rgba(30, 215, 96, 0.55);
    background: rgba(30, 215, 96, 0.1);
}

.spotify-now-bar__btn:active {
    transform: scale(0.94);
}

.spotify-now-bar__btn:focus-visible,
.spotify-now-bar__dismiss:focus-visible,
.spotify-restore:focus-visible {
    outline: 2px solid #1ed760;
    outline-offset: 2px;
}

.spotify-now-bar__btn--play {
    width: 2.75rem;
    height: 2.75rem;
    border-color: rgba(30, 215, 96, 0.55);
    color: #1ed760;
}

.spotify-now-bar__btn--play .spotify-icon-pause {
    display: none;
}

.spotify-now-bar.is-playing .spotify-now-bar__btn--play .spotify-icon-play {
    display: none;
}

.spotify-now-bar.is-playing .spotify-now-bar__btn--play .spotify-icon-pause {
    display: block;
}

.spotify-now-bar.is-playing .spotify-now-bar__btn--play,
body.spotify-bar-playing .spotify-now-bar__btn--play {
    background: rgba(30, 215, 96, 0.16);
}

.spotify-now-bar__dismiss {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.spotify-now-bar__dismiss:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.spotify-now-bar__dismiss:active {
    transform: scale(0.94);
}

.spotify-now-bar__engine {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    opacity: 0.01;
    pointer-events: none;
    z-index: -1;
}

.spotify-now-bar__engine iframe {
    border: 0;
    width: 80px !important;
    height: 80px !important;
}

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

.spotify-restore {
    position: fixed;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    left: calc(1.25rem + env(safe-area-inset-left, 0px));
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(30, 215, 96, 0.5);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    color: #1ed760;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-restore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.spotify-restore:active {
    transform: scale(0.96);
}

.spotify-restore[hidden] {
    display: none;
}

@media (max-width: 720px) {
    .spotify-now-bar__shell {
        gap: 0.5rem;
        min-height: 3.35rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .spotify-now-bar__controls {
        gap: 0.15rem;
    }
}

@media (max-width: 480px) {
    .spotify-now-bar__shell {
        gap: 0.4rem;
    }

    .spotify-now-bar__label {
        letter-spacing: 0.12em;
    }

    .spotify-now-bar__btn,
    .spotify-now-bar__dismiss {
        width: 2.65rem;
        height: 2.65rem;
    }

    .spotify-now-bar__btn--play {
        width: 2.9rem;
        height: 2.9rem;
    }

    .spotify-now-bar__btn svg {
        width: 17px;
        height: 17px;
    }

    .spotify-now-bar__btn--play svg {
        width: 19px;
        height: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spotify-now-bar__btn,
    .spotify-now-bar__dismiss,
    .spotify-restore {
        transition: none;
    }

    .spotify-now-bar__btn:active,
    .spotify-now-bar__dismiss:active,
    .spotify-restore:hover,
    .spotify-restore:active {
        transform: none;
    }
}

@keyframes tourMapPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(255, 26, 58, 0.55); }
    50% { box-shadow: 0 0 28px rgba(255, 26, 58, 0.9); }
}

@media (max-width: 900px) {
    .newest-release {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .newest-release-inner {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 1rem;
        padding: 1rem;
        align-items: start;
    }

    .newest-release-copy {
        min-width: 0;
    }

    .newest-release-copy p {
        max-width: none;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .newest-release-play {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .newest-release-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .newest-release-artwork {
        width: min(52vw, 11.5rem);
    }

    .newest-release-copy {
        align-items: center;
    }

    .newest-release-copy p {
        text-align: center;
    }
}

@supports (view-transition-name: none) {
    @view-transition {
        navigation: auto;
    }
}

@supports (color: oklch(0% 0 0)) {
    :root {
        --accent-color: oklch(59% 0.22 25);
        --accent-hover: oklch(53% 0.2 25);
    }
}

header {
    padding: 0.65rem 0;
    animation: none;
    background-color: rgba(8, 8, 8, 0.94);
    border-bottom: 1px solid rgba(255, 26, 58, 0.32);
    box-shadow: none;
}

header::after,
header:hover {
    animation: none;
    box-shadow: none;
    border-bottom-color: rgba(255, 26, 58, 0.32);
}

header::after {
    display: none;
}

.nav-container {
    max-width: var(--page-width);
    padding: 0 var(--page-gutter);
}

.logo a,
.logo a:hover {
    animation: none;
    text-shadow: none;
    transform: none;
    letter-spacing: 0.07em;
    line-height: 1;
    white-space: nowrap;
    font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.logo-long {
    display: inline;
}

.logo-line {
    display: inline;
}

.logo a:hover {
    color: #fff;
}

.logo-short {
    display: none;
    font-size: 1.45rem;
    letter-spacing: 0.16em;
}

.nav-menu a {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.45rem 0.35rem;
    border-radius: 0;
}

.nav-menu a::after {
    height: 1px;
    bottom: 0.1rem;
    box-shadow: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: transparent;
    text-shadow: none;
    transform: none;
    letter-spacing: 0.16em;
}

.nav-secondary {
    animation: none;
    border-left-color: rgba(255, 255, 255, 0.14);
    padding-left: 1rem;
    gap: 0.85rem;
}

.nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-lang .lang-link {
    min-height: 0;
    padding: 0.25rem 0.4rem;
    border-radius: var(--radius);
    background: transparent;
    border-color: transparent;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.nav-lang .lang-link:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: transparent;
}

.nav-lang .lang-link.active,
.nav-lang .lang-link[aria-current="page"] {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: none;
}

.lang-float {
    display: none;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-tertiary {
    border-radius: var(--radius);
}

.btn::before {
    display: none;
}

.btn:hover {
    filter: none;
}

.btn:disabled,
.btn[disabled] {
    background: #1c1c1c;
    color: rgba(255, 255, 255, 0.42);
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
    box-shadow: none;
}

.highlight-card,
.highlight-card--music,
.highlight-card--merch,
.highlight-card--press {
    border-radius: var(--radius);
    background: #141414;
    border-color: rgba(255, 255, 255, 0.1);
}

.highlight-card--merch::before,
.highlight-card--press::before,
.highlight-card--music::before {
    background: var(--accent-color);
}

.highlight-card--merch:hover,
.highlight-card--press:hover,
.highlight-card--music:hover {
    border-color: rgba(255, 26, 58, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.release-highlight {
    background: var(--bg-primary);
}

.page-header--photo {
    position: relative;
    overflow: hidden;
    margin: 0 0 3rem;
    min-height: 22rem;
    display: flex;
    align-items: flex-end;
    text-align: left;
}

.page-header--photo .page-header-media {
    position: absolute;
    inset: 0;
}

.page-header--photo .page-header-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.page-header--photo .page-header-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-header--photo-lower .page-header-media img {
    object-position: center 55%;
}

.page-header--photo .page-header-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.45) 55%, rgba(13, 13, 13, 0.2) 100%);
}

.page-header--photo .page-header-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 5.5rem var(--page-gutter) 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
    box-sizing: border-box;
}

.page-header--photo .page-header-subtitle {
    margin: 0;
}

footer {
    background: #000;
    padding: 3.25rem 0 2.5rem;
    text-align: left;
}

.footer-inner {
    max-width: var(--page-width);
    margin: 0 auto 1.75rem;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    gap: 2rem 3rem;
    align-items: start;
}

.footer-wordmark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0 0 0.35rem;
}

.footer-lineup {
    margin: 0;
}

.footer-nav {
    justify-content: flex-start;
    margin: 0;
}

.footer-nav a {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.footer-socials .social-icon {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.72);
    margin-left: 0;
}

.footer-socials .social-icon:hover {
    transform: none;
    box-shadow: none;
}

.footer-legal {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 1.25rem var(--page-gutter) 0;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal a {
    margin-left: 0.75rem;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header--photo .page-header-copy {
        padding: 4.5rem var(--page-gutter) 1.5rem;
    }

    .nav-secondary {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        justify-content: space-between;
    }
}

@media (max-width: 380px) {
    .logo-long {
        display: none;
    }

    .logo-short {
        display: inline;
    }
}

.page-header--photo .page-header-pretitle,
.page-header--photo .tour-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 6px 18px rgba(0, 0, 0, 0.65);
}

.page-header--photo .page-header-pretitle::before,
.page-header--photo .tour-pretitle::before {
    content: '';
    width: 1.75rem;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    flex-shrink: 0;
}

.page-header--photo .page-header-title,
.page-header--photo h1,
.tour-heading.page-header--photo .tour-title {
    text-align: left;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.store-page:has(.page-header--photo),
.press-page:has(.page-header--photo),
.contact-page:has(.page-header--photo),
.tour-page:has(.page-header--photo) {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 0 var(--section-y);
}

.store-page:has(.page-header--photo) > *:not(.page-header),
.press-page:has(.page-header--photo) > *:not(.page-header),
.contact-page:has(.page-header--photo) > *:not(.page-header),
.tour-page:has(.page-header--photo) > *:not(.tour-heading) {
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

.store-page .page-header--photo,
.press-page .page-header--photo,
.contact-page .page-header--photo,
.tour-page .tour-heading.page-header--photo {
    margin: 0 0 2.75rem;
    width: 100%;
}

.privacy-page {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: var(--section-y) var(--page-gutter) 5rem;
    box-sizing: border-box;
}

.error-page {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}
