/* ===================================================
   Klodwig Music - Frontend Styles
   Extrahiert aus docs/prototype-v2.html
   =================================================== */

:root {
    --bg-deep: #0d0d1a;
    --bg-dark: #141428;
    --bg-card: #1a1a33;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dim: #8a7333;
    --cyan: #00d4ff;
    --magenta: #9b4dca;
    --text: #e8e6e3;
    --text-dim: #a0a0b0;
    --text-bright: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 500;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0.8rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
nav.scrolled {
    border-bottom-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-brand {
    text-decoration: none; display: inline-flex; align-items: center; line-height: 1;
}
.brand-logo { height: 70px; width: auto; display: block; }
.brand-klodwig {
    font-family: 'Great Vibes', cursive; font-size: 2rem;
    background: linear-gradient(180deg, #f0e4a8 0%, #c9a84c 50%, #8a7333 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
    line-height: 1.1;
}
.brand-music {
    font-family: 'Quicksand', sans-serif; font-size: 0.55rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em;
    color: var(--text-dim); margin-top: -0.15rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-dim); text-decoration: none; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-mobile-toggle {
    display: none; background: none; border: none;
    color: var(--gold); font-size: 1.5rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden;
    padding: 6rem 2rem 4rem;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(155,77,202,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0,212,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slider-wrapper {
    position: relative; max-width: 1100px; width: 100%; z-index: 2;
}
.hero-slides {
    position: relative; overflow: hidden;
    touch-action: pan-y;
}
.hero-slide {
    display: none; align-items: center; gap: 4rem; width: 100%;
    animation: heroFadeIn 0.6s ease;
}
.hero-slide.active { display: flex; }
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* HERO ARROWS */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(13,13,26,0.6);
    border: 1px solid rgba(201,168,76,0.2); border-radius: 50%;
    width: 48px; height: 48px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; color: var(--gold);
    font-size: 1.2rem; transition: all 0.3s; backdrop-filter: blur(8px);
}
.hero-arrow:hover {
    background: rgba(201,168,76,0.15); border-color: var(--gold);
    transform: translateY(-50%) scale(1.05);
}
.hero-arrow-left { left: -60px; }
.hero-arrow-right { right: -60px; }

/* HERO PROGRESS BAR + CONTROLS */
.hero-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 2rem;
}
.hero-progress-track {
    flex: 1; max-width: 300px; height: 3px;
    background: rgba(255,255,255,0.1); border-radius: 2px;
    overflow: hidden; cursor: pointer; position: relative;
}
.hero-progress-bar {
    height: 100%; width: 0; background: var(--gold);
    border-radius: 2px; transition: width 0.1s linear;
}
.hero-dots-inline {
    display: flex; gap: 0.5rem; align-items: center;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none;
    cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-pause {
    background: none; border: none; color: var(--text-dim);
    cursor: pointer; padding: 4px; transition: color 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.hero-pause:hover { color: var(--gold); }
.hero-pause svg { width: 16px; height: 16px; }

.hero-fallback {
    text-align: center; z-index: 2; position: relative;
}
.hero-fallback-logo { max-width: 400px; width: 80%; margin-bottom: 1.5rem; }
.hero-fallback-text {
    font-size: 1.2rem; color: var(--text-dim); font-weight: 500;
    font-style: italic;
}

.hero-cover {
    flex-shrink: 0; width: 380px; height: 380px;
    border-radius: 8px; overflow: hidden; position: relative;
    box-shadow: 0 0 60px rgba(201,168,76,0.15), 0 25px 50px rgba(0,0,0,0.5);
    animation: heroFloat 6s ease-in-out infinite;
    margin-top: 12px;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); }
}
.hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cover picture { display: block; width: 100%; height: 100%; }
.hero-cover picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cover::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; pointer-events: none;
}
.hero-text { flex: 1; }
.hero-label {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--cyan); margin-bottom: 1rem; font-weight: 700;
}
.hero-title {
    font-family: 'Permanent Marker', cursive; font-size: 3.2rem;
    line-height: 1.15; margin-bottom: 0.5rem; color: var(--text-bright);
}
.hero-title .paren { color: var(--gold); }
.hero-subtitle {
    font-size: 1.1rem; font-weight: 500; color: var(--text-dim);
    margin-bottom: 2rem; line-height: 1.7;
}
.hero-subtitle .em { color: var(--gold-light); font-weight: 700; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.badge-new {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.25rem 0.7rem; border-radius: 3px;
    background: rgba(201,168,76,0.2); color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.3);
}
.btn-primary-front {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--bg-deep); font-family: 'Quicksand', sans-serif;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    border-radius: 4px; letter-spacing: 0.05em; transition: all 0.3s;
    border: none; cursor: pointer;
}
.btn-primary-front:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.3); }
.btn-secondary-front {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; background: transparent; color: var(--cyan);
    font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; border-radius: 4px; letter-spacing: 0.05em;
    border: 1px solid rgba(0,212,255,0.3); transition: all 0.3s;
}
.btn-secondary-front:hover { border-color: var(--cyan); background: rgba(0,212,255,0.08); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; position: relative; }
.section-dark { background: var(--bg-dark); }
.section-deep { background: var(--bg-deep); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em;
    color: var(--cyan); margin-bottom: 0.75rem; font-weight: 700;
}
.section-title {
    font-family: 'Permanent Marker', cursive; font-size: 2.2rem;
    color: var(--text-bright); margin-bottom: 1.5rem; line-height: 1.2;
}
.gold-line {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 2rem;
}

/* ===== RELEASE GRID ===== */
.release-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.release-grid-empty {
    grid-column: 1 / -1; text-align: center;
    color: var(--text-dim); font-size: 1rem; padding: 3rem 0;
}
.release-card {
    border-radius: 8px; overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    cursor: pointer; transition: all 0.3s;
}
.release-card:hover {
    border-color: rgba(201,168,76,0.2); transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.release-card.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.15); transform: none;
    border-bottom-left-radius: 0; border-bottom-right-radius: 0;
    border-bottom-color: transparent; position: relative; z-index: 2;
    overflow: visible;
}
.release-card.active .release-card-img {
    border-top-left-radius: 7px; border-top-right-radius: 7px;
}
.release-card.active::after {
    content: ''; position: absolute;
    bottom: calc(-1.5rem - 1px); left: -1px; right: -1px;
    height: calc(1.5rem + 2px);
    background: var(--bg-card);
    border-left: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 3;
}
.release-card-img { width: 100%; aspect-ratio: 1; overflow: hidden; position: relative; }
.release-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block;
}
.release-card-img picture { display: block; width: 100%; height: 100%; }
.release-card-img picture img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.release-card:hover .release-card-img img { transform: scale(1.05); }
.release-card.active .release-card-img::after { display: none; }
.release-card-info { padding: 1rem; text-align: center; }
.release-card-title {
    font-family: 'Permanent Marker', cursive; font-size: 0.95rem;
    color: var(--text-bright); margin-bottom: 0.4rem;
}
.release-card-badges { display: flex; gap: 0.3rem; flex-wrap: wrap; justify-content: center; }
.release-badge {
    display: inline-block; font-size: 0.6rem; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 0.15rem 0.45rem; border-radius: 3px; font-weight: 700;
}
.badge-album { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-single { background: rgba(0,212,255,0.12); color: var(--cyan); }
.badge-ep { background: rgba(155,77,202,0.15); color: var(--magenta); }
.badge-year { background: rgba(255,255,255,0.06); color: var(--text-dim); }
.badge-coming-soon { background: rgba(155,77,202,0.15); color: var(--magenta); }
.badge-new-release { background: rgba(201,168,76,0.2); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }

/* Placeholder cover */
.placeholder-cover {
    width: 100%; height: 100%; display: flex;
    align-items: center; justify-content: center;
    font-family: "Permanent Marker", cursive;
    color: rgba(255,255,255,0.15); font-size: 0.85rem;
    text-align: center; padding: 0.8rem; line-height: 1.3;
    background: linear-gradient(135deg, #1a1a3a, #2a1a2a, #1a2a2a);
}

/* ===== EXPAND PANEL ===== */
.release-expand-container {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
}
.release-expand-container.open {
    max-height: 2500px;
    opacity: 1;
}
.expand-inner {
    background: var(--bg-card); border: 1px solid var(--gold);
    border-radius: 10px 10px 10px 10px; padding: 2.5rem;
    display: grid; grid-template-columns: 250px 1fr; gap: 2.5rem;
    align-items: start; position: relative; overflow: hidden;
}
.expand-inner.expand-edge-left  { border-top-left-radius: 0; }
.expand-inner.expand-edge-right { border-top-right-radius: 0; }
.expand-inner.expand-edge-both  { border-top-left-radius: 0; border-top-right-radius: 0; }
.expand-cover {
    width: 250px; height: 250px; border-radius: 8px; overflow: hidden;
    box-shadow: 0 0 40px rgba(201,168,76,0.1), 0 15px 40px rgba(0,0,0,0.4);
}
.expand-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expand-cover picture { display: block; width: 100%; height: 100%; }
.expand-cover picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expand-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); font-size: 1.2rem; cursor: pointer;
    transition: all 0.3s; line-height: 1; z-index: 2;
}
.expand-close:hover { color: var(--text-bright); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.expand-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--cyan); font-weight: 700; margin-bottom: 0.5rem;
}
.expand-title {
    font-family: 'Permanent Marker', cursive; font-size: 1.8rem;
    color: var(--text-bright); margin-bottom: 0.8rem;
}
.expand-title .paren { color: var(--gold); }
.expand-desc {
    color: var(--text-dim); line-height: 1.8; font-size: 0.95rem;
    margin-bottom: 1.5rem; font-weight: 500;
}
.expand-desc .em { color: var(--gold-light); font-weight: 700; }
.expand-streams { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.stream-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.2rem; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: var(--text);
    text-decoration: none; border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; transition: all 0.3s;
}
.stream-btn:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.stream-btn svg { width: 16px; height: 16px; }

/* Share Buttons */
.expand-share { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.share-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 0.9rem; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08); color: var(--text-dim);
    text-decoration: none; border-radius: 50px; font-size: 0.78rem;
    font-weight: 600; transition: all 0.3s; cursor: pointer;
    font-family: inherit; line-height: 1;
}
.share-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.share-whatsapp:hover { border-color: #25D366; color: #25D366; }
.share-facebook:hover { border-color: #1877F2; color: #1877F2; }
.share-native:hover { border-color: var(--cyan); color: var(--cyan); }
.share-copy:hover { border-color: var(--gold-dim); color: var(--gold-light); }
.share-btn svg { width: 14px; height: 14px; }
.share-btn i { font-size: 13px; }

.expand-tracklist { border-top: 1px solid rgba(201,168,76,0.1); padding-top: 1rem; }
.expand-tracklist-title {
    font-family: 'Permanent Marker', cursive; font-size: 1rem;
    color: var(--gold-light); margin-bottom: 0.8rem;
}
.expand-tracks {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem; list-style: none;
}
.expand-tracks li {
    display: grid; grid-template-columns: 30px 1fr; gap: 0.4rem;
    align-items: center; padding: 0.45rem 0.6rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 5px; transition: background 0.2s;
}
.expand-tracks li:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.15); }
.expand-tracks .track-num {
    font-family: 'Permanent Marker', cursive; font-size: 1rem;
    color: var(--gold-light); text-align: center; line-height: 1;
}
.expand-tracks .track-info {
    display: flex; align-items: center; gap: 0.5rem; min-width: 0;
}
.expand-tracks .track-name {
    flex: 1; font-size: 0.9rem; color: var(--text); font-weight: 500;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
}
.expand-tracks .track-meta {
    font-size: 0.75rem; color: var(--text-dim); font-weight: 400; white-space: nowrap; flex-shrink: 0;
}

/* Marquee für abgeschnittene Tracktitel */
.track-name.marquee {
    overflow: hidden; text-overflow: clip;
    display: flex; gap: 3rem;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.marquee-inner {
    flex-shrink: 0;
    animation: marqueeScroll 8s linear infinite;
    animation-delay: 2s;
}
.track-name.marquee:hover .marquee-inner {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 3rem)); }
}

/* Help box inside expand */
.help-box {
    margin-top: 1.5rem; grid-column: 1 / -1;
    background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.12);
    border-radius: 8px; padding: 2rem; text-align: center;
    min-width: 0;
}
.help-box h3 {
    font-family: 'Permanent Marker', cursive; font-size: 1.3rem;
    color: var(--text-bright); margin-bottom: 0.8rem;
}
.help-heart {
    display: inline-block; margin-right: 0.3rem; vertical-align: middle;
}
.help-heart svg {
    width: 22px; height: 22px; vertical-align: middle;
    fill: none; stroke: var(--gold); stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.4));
}
.help-box p {
    color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.8;
    font-weight: 500; font-size: 0.9rem;
}
.help-box p .em { color: var(--text); font-weight: 700; }
.help-resources {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}
.help-country { width: 260px; max-width: 100%; }
.help-country-name {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--gold); font-weight: 700; margin-bottom: 0.4rem;
}
.help-link {
    color: var(--text); text-decoration: none; font-size: 0.85rem;
    font-weight: 600; padding: 0.5rem 1rem; display: flex;
    align-items: center; justify-content: center; gap: 0.5rem;
    border: 1px solid rgba(201,168,76,0.2); border-radius: 4px;
    transition: all 0.3s; margin-bottom: 0.4rem;
}
.help-link:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.help-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-grid {
    display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: center;
}
.about-image {
    width: 280px; height: 280px; border-radius: 50%; overflow: hidden;
    border: 3px solid rgba(201,168,76,0.3); box-shadow: 0 0 40px rgba(201,168,76,0.1);
    background: linear-gradient(135deg, var(--bg-card), rgba(201,168,76,0.1));
}
.about-image img {
    width: 100%; height: 100%; object-fit: cover;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dim); font-size: 4rem;
}
.about-text p {
    margin-bottom: 1.2rem; color: var(--text);
    line-height: 1.8; font-size: 1.05rem; font-weight: 500;
}
.about-text .em { color: var(--gold-light); font-weight: 700; }

/* ===== KONTAKT ===== */
.contact-box { max-width: 600px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: flex; gap: 1.2rem; }
.form-group-front { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-front label {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-dim); font-weight: 700;
}
.form-group-front input, .form-group-front select, .form-group-front textarea {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px; padding: 0.8rem 1rem; color: var(--text);
    font-family: 'Quicksand', sans-serif; font-size: 0.95rem;
    font-weight: 500; transition: border-color 0.3s; outline: none;
}
.form-group-front input:focus, .form-group-front select:focus, .form-group-front textarea:focus {
    border-color: rgba(201,168,76,0.4);
}
.form-group-front textarea { resize: vertical; min-height: 140px; }
.form-group-front select { cursor: pointer; }
.form-group-front select option { background: var(--bg-card); }
.form-submit { align-self: flex-start; margin-top: 0.5rem; }
.contact-status {
    padding: 1rem 1.5rem; border-radius: 8px; display: none;
    font-weight: 600; font-size: 0.9rem;
}
.contact-status.success {
    display: block; background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light);
}
.contact-status.error {
    display: block; background: rgba(255,74,74,0.1);
    border: 1px solid rgba(255,74,74,0.3); color: #ff6b6b;
}
.contact-status-dismiss {
    background: none; border: none; color: inherit; font-size: 1.3rem;
    cursor: pointer; float: right; line-height: 1; padding: 0 0 0 1rem;
    opacity: 0.7; transition: opacity 0.2s;
}
.form-checkbox-front { flex-direction: row !important; }
.checkbox-label-front {
    display: flex; align-items: flex-start; gap: 0.6rem;
    cursor: pointer; font-size: 0.85rem; color: var(--text-dim);
    line-height: 1.5;
}
.checkbox-label-front input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 3px;
    background: var(--bg-card); cursor: pointer; transition: all 0.2s;
}
.checkbox-label-front input[type="checkbox"]:checked {
    background: var(--gold); border-color: var(--gold);
}
.checkbox-label-front input[type="checkbox"]:checked::after {
    content: '✓'; display: block; text-align: center;
    color: var(--bg-deep); font-size: 13px; font-weight: 700; line-height: 18px;
}
.checkbox-label-front input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 2px;
}
.checkbox-label-front a { color: var(--gold); text-decoration: underline; }
.checkbox-label-front a:hover { color: var(--gold-light); }
.contact-status-dismiss:hover { opacity: 1; }

/* Honeypot */
.form-field-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(201,168,76,0.9); color: var(--bg-deep);
    border: none; cursor: pointer; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.scroll-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
}
.scroll-top:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: var(--bg-deep);
}
.footer-content {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-left { display: flex; align-items: center; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; }
.footer-brand .brand-logo { height: 70px; }
.footer-tagline { color: var(--text-dim); font-size: 0.85rem; font-weight: 500; }
.footer-streams { display: flex; gap: 1rem; }
.footer-stream-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); text-decoration: none; transition: all 0.3s;
    font-size: 22px;
}
.footer-stream-icon:hover {
    background: rgba(255,255,255,0.1); color: var(--gold);
    border-color: rgba(255,255,255,0.2);
}
.footer-bottom {
    max-width: 1100px; margin: 1.5rem auto 0; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--text-dim); font-weight: 500;
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a {
    color: var(--text-dim); text-decoration: none; transition: color 0.3s; cursor: pointer;
}
.footer-bottom a:hover { color: var(--text); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ===== LEGAL MODALS ===== */
.legal-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); z-index: 300;
}
.legal-overlay.active { display: block; }

.legal-modal {
    display: none; position: fixed;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90%; max-width: 700px; max-height: 85vh;
    background: var(--bg-dark); border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px; z-index: 301; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.legal-modal.active { display: flex; flex-direction: column; }

.legal-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem; border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    flex-shrink: 0;
}
.legal-tabs { display: flex; gap: 0; }
.legal-tab {
    padding: 0.6rem 1.5rem; background: none; border: none;
    font-family: 'Quicksand', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: var(--text-dim); cursor: pointer; transition: all 0.3s;
    border-bottom: 2px solid transparent; position: relative;
}
.legal-tab:hover { color: var(--text); }
.legal-tab.active {
    color: var(--gold); border-bottom-color: var(--gold);
}
.legal-tab-content { display: none; }
.legal-tab-content.active { display: block; }
.legal-modal-close {
    background: none; border: none; color: var(--text-dim);
    font-size: 2rem; cursor: pointer; transition: color 0.3s;
    line-height: 1; padding: 0 0.3rem;
}
.legal-modal-close:hover { color: var(--gold); }

.legal-modal-body {
    padding: 2rem; overflow-y: auto; flex: 1;
    font-size: 0.9rem; line-height: 1.8; color: var(--text);
}
.legal-modal-body h3 {
    font-family: 'Quicksand', sans-serif; font-weight: 700;
    color: var(--gold-light); font-size: 1rem;
    margin: 1.8rem 0 0.6rem; padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p { margin-bottom: 0.8rem; color: var(--text-dim); }
.legal-modal-body em { color: var(--text-dim); font-style: italic; }
.legal-modal-body a { color: var(--gold); transition: color 0.3s; }
.legal-modal-body a:hover { color: var(--gold-light); }

/* ===== LYRICS ===== */
.track-lyrics-btn {
    background: none; border: none; cursor: pointer;
    color: var(--gold); padding: 0.15rem 0.3rem;
    transition: all 0.3s; line-height: 1; flex-shrink: 0;
    opacity: 0.7; border-radius: 3px;
}
.track-lyrics-btn:hover { color: var(--gold-light); opacity: 1; background: rgba(201,168,76,0.1); }
.lyrics-icon-svg { width: 14px; height: 14px; vertical-align: middle; }
.lyrics-section { color: var(--gold); font-weight: 700; }

.lyrics-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); z-index: 300;
}
.lyrics-overlay.active { display: block; }

.lyrics-modal {
    display: none; position: fixed;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90%; max-width: 600px; max-height: 85vh;
    background: var(--bg-dark); border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px; z-index: 301; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lyrics-modal.active { display: flex; flex-direction: column; }

.lyrics-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 2rem; border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    flex-shrink: 0;
}
.lyrics-modal-title {
    font-family: 'Permanent Marker', cursive; font-size: 1.2rem;
    color: var(--text-bright); margin: 0;
}
.lyrics-modal-close {
    background: none; border: none; color: var(--text-dim);
    font-size: 2rem; cursor: pointer; transition: color 0.3s;
    line-height: 1; padding: 0 0.3rem;
}
.lyrics-modal-close:hover { color: var(--gold); }

.lyrics-modal-body {
    padding: 2rem; overflow-y: auto; flex: 1;
    font-size: 0.95rem; line-height: 1.9; color: var(--text);
    white-space: pre-wrap; font-weight: 500;
}

/* Animations */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-arrow-left { left: 10px; }
    .hero-arrow-right { right: 10px; }
    .hero-arrow { width: 40px; height: 40px; background: rgba(13,13,26,0.8); }
}
@media (max-width: 900px) {
    .hero-slide { flex-direction: column; text-align: center; }
    .hero-cover { width: 300px; height: 300px; }
    .hero-title { font-size: 2.4rem; }
    .hero-cta { justify-content: center; }
    .release-grid { grid-template-columns: repeat(3, 1fr); }
    .expand-inner { grid-template-columns: 1fr; }
    .expand-cover { width: 200px; height: 200px; margin: 0 auto; }
    .expand-tracks { grid-template-columns: 1fr; }
    .expand-tracks .track-name { white-space: normal; }
    .about-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .about-image { margin: 0 auto; width: 220px; height: 220px; }
    .gold-line { margin-left: auto; margin-right: auto; }
    .help-resources { flex-direction: column; align-items: center; }
    .help-box { padding: 1.5rem; }
    .help-country { width: 100%; max-width: 300px; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; position: fixed; top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: #0d0d1a; flex-direction: column;
        align-items: center; justify-content: center; gap: 2.5rem; z-index: 200;
    }
    .nav-links.open a { font-size: 1.2rem; color: var(--text); }
    .nav-links.open::before {
        content: 'Menü';
        font-family: 'Quicksand', sans-serif;
        font-size: 0.85rem; font-weight: 600;
        letter-spacing: 3px; text-transform: uppercase;
        color: var(--gold); position: absolute; top: 2rem;
    }
    .nav-mobile-toggle { display: block; z-index: 201; }
    .hero-cover { width: 260px; height: 260px; }
    .hero-title { font-size: 2rem; }
    .hero-arrow { width: 36px; height: 36px; font-size: 1rem; }
    .hero-arrow-left { left: 5px; }
    .hero-arrow-right { right: 5px; }
    .hero-pause { width: 32px; height: 32px; }
    .hero-pause svg { width: 12px; height: 12px; }
    .section { padding: 4rem 1.2rem; }
    .release-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .release-card.active::after { bottom: calc(-1rem - 1px); height: calc(1rem + 2px); }
    .expand-inner { padding: 1.5rem; gap: 1.5rem; }
    .expand-tracks { grid-template-columns: 1fr; }
    .expand-tracks .track-num { font-size: 1rem; }
    .help-box { padding: 1.2rem; margin-top: 1rem; }
    .help-box h3 { font-size: 1.1rem; }
    .help-box p { font-size: 0.85rem; margin-bottom: 1rem; }
    .help-country { width: 100%; }
    .help-link { font-size: 0.8rem; padding: 0.45rem 0.8rem; }
    .form-row { flex-direction: column; }
    .scroll-top { bottom: 1.5rem; right: 1rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-cover img { animation: none; }
    .release-expand-container { transition: none; }
}

/* ===== PRINT ===== */
@media print {
    nav, .scroll-top, .hero-controls, .hero-arrow, footer,
    .contact-form, .legal-overlay, .legal-modal, .lyrics-overlay, .lyrics-modal { display: none !important; }
    body { background: white; color: black; }
    .section { padding: 1rem 0; }
    .release-card { break-inside: avoid; }
}
