/* ============================================================
   Web-Radio 2.0 – Portal Stylesheet
   ============================================================ */

/* === VARIABLES === */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #55556a;
    --accent: #6c5ce7;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --accent-secondary: #00cec9;
    --live-red: #ff4757;
    --live-glow: rgba(255, 71, 87, 0.4);
    --success: #2ed573;
    --border-radius: 16px;
    --border-radius-sm: 10px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* === BACKGROUND LAYERS === */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        linear-gradient(180deg, 
            rgba(10, 10, 15, 0.4) 0%, 
            rgba(10, 10, 15, 0.6) 40%, 
            rgba(10, 10, 15, 0.92) 70%, 
            rgba(10, 10, 15, 1) 100%
        ),
        url('../img/bg-studio.jpg') center top / cover no-repeat;
}

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.ambient-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    animation: orbFloat 20s ease-in-out infinite;
}

.ambient-bg .orb:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.ambient-bg .orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.content {
    position: relative;
    z-index: 3;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.9);
    border-bottom-color: var(--glass-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-logo-text {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.nav-back {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-back:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

/* === BUTTONS === */
.btn-primary {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: white;
    background: linear-gradient(135deg, var(--accent), #8b7cf7);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* === HERO === */
.hero {
    padding: 40px 40px 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.3s ease;
}

.hero-badge.live .dot {
    background: var(--live-red);
    box-shadow: 0 0 12px var(--live-glow);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge.live {
    border-color: rgba(255, 71, 87, 0.2);
    background: rgba(255, 71, 87, 0.08);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero h1 .highlight,
.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero .hero-tagline {
    font-size: 22px;
    color: var(--accent);
    font-weight: 600;
    margin: 0 auto 16px;
    max-width: 700px;
    white-space: nowrap;
}

.hero .hero-motto {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === DYNAMIC SECTIONS === */
.dynamic-section {
    display: none;
}

.dynamic-section.visible {
    display: block;
}

/* === LIVE SECTION === */
.live-section {
    padding: 20px 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.live-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.live-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-card-hover);
}

.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--live-red), var(--accent), var(--accent-secondary));
}

.live-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(255, 71, 87, 0.15);
    color: var(--live-red);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.live-indicator .rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--live-red);
    animation: pulse 2s ease-in-out infinite;
}

.live-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-muted);
}

.live-dj-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dj-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
}

.dj-details h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dj-details p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* === EQUALIZER === */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
}

.equalizer .bar {
    width: 4px;
    border-radius: 2px;
    background: var(--live-red);
    animation: eq 1.2s ease-in-out infinite;
}

.equalizer .bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.equalizer .bar:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.equalizer .bar:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.equalizer .bar:nth-child(4) { height: 80%; animation-delay: 0.45s; }
.equalizer .bar:nth-child(5) { height: 50%; animation-delay: 0.6s; }

@keyframes eq {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

/* === SCHEDULE === */
.schedule-section {
    padding: 20px 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-grid {
    display: grid;
    gap: 8px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-card);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border);
}

.schedule-item.now {
    background: rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.2);
}

.schedule-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-muted);
    min-width: 120px;
}

.schedule-item.now .schedule-time {
    color: var(--accent);
}

.schedule-dj {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
}

.schedule-genre {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--glass);
    color: var(--text-secondary);
    font-weight: 500;
}

.schedule-now-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === FEATURES === */
.features-section {
    padding: 40px 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    border: 1px solid transparent;
    transition: all 0.4s ease;
    cursor: default;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-icon.purple { background: rgba(108, 92, 231, 0.12); }
.feature-icon.teal { background: rgba(0, 206, 201, 0.12); }
.feature-icon.pink { background: rgba(253, 121, 168, 0.12); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* === CTA === */
.cta-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.05));
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-card .btn-primary {
    position: relative;
    z-index: 1;
}

/* === FORM (Bewerbung) === */
.form-wrapper {
    padding: 140px 40px 80px;
    max-width: 640px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.form-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--live-red);
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.05);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: white;
    background: linear-gradient(135deg, var(--accent), #8b7cf7);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px var(--accent-glow);
    margin-top: 32px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

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

.form-message {
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: var(--live-red);
}

/* === FOOTER === */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links span {
    color: var(--text-muted);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* === 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: 768px) {
    .nav { padding: 12px 20px; }
    .nav-links .nav-link { display: none; }

    .hero { padding: 150px 20px 80px; }
    .hero p { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: center; }

    .live-section,
    .schedule-section,
    .features-section,
    .cta-section { padding-left: 20px; padding-right: 20px; }

    .live-card { padding: 24px; }
    .live-dj-info { flex-direction: column; text-align: center; }

    .schedule-item { flex-wrap: wrap; gap: 8px; }
    .schedule-time { min-width: auto; }

    .cta-card { padding: 40px 24px; }
    .features-grid { grid-template-columns: 1fr; }

    .form-wrapper { padding: 120px 20px 60px; }
    .form-card { padding: 28px 20px; }
}

/* === RADIO STATUS SECTION === */
.radio-status-section {
    position: relative;
    z-index: 10;
    padding: 100px 40px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.radio-status-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Status Box - KOMPAKT */
.radio-status-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 12px 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    max-width: 400px;
    width: 100%;
}

.radio-status-box.online {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.15) 0%, rgba(46, 213, 115, 0.08) 100%);
    border-color: rgba(46, 213, 115, 0.4);
    box-shadow: 0 4px 20px rgba(46, 213, 115, 0.2);
}

.radio-status-box.offline {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.1) 0%, rgba(60, 60, 60, 0.08) 100%);
    border-color: rgba(100, 100, 100, 0.3);
}

.status-message {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Now Playing - KOMPAKT & ZENTRIERT */
.radio-now-playing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
    backdrop-filter: blur(20px);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.now-playing-cover {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-secondary);
}

.now-playing-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.now-playing-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.now-playing-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

.now-playing-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.now-playing-timer {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 600;
}

/* Next Tracks - KOMPAKT */
.radio-next-tracks {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.1) 0%, rgba(0, 184, 180, 0.06) 100%);
    border: 2px solid rgba(0, 206, 201, 0.3);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    backdrop-filter: blur(20px);
    max-width: 700px;
    width: 100%;
}

.next-tracks-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-secondary);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.next-track-item {
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 8px 14px;
    line-height: 1.3;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-sm);
    margin: 6px 0;
    font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .radio-status-section {
        padding: 90px 20px 20px;
    }
    
    .radio-status-box,
    .radio-now-playing,
    .radio-next-tracks {
        max-width: 100%;
    }
    
    .now-playing-title {
        font-size: 1rem;
    }
}

/* === IMPRESSUM MODAL === */
.impressum-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 40px 20px;
    overflow-y: auto;
}

.impressum-modal.active {
    display: block;
}

.impressum-modal-content {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.impressum-modal-content h2 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.impressum-modal-content h2:first-child {
    margin-top: 0;
}

.impressum-modal-content p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.impressum-modal-content strong {
    color: #ffffff;
    font-weight: 600;
}

.impressum-close {
    position: sticky;
    top: 0;
    float: right;
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.4);
    color: var(--live-red);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.impressum-close:hover {
    background: rgba(255, 71, 87, 0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .impressum-modal {
        padding: 20px 10px;
    }
    
    .impressum-modal-content {
        padding: 30px 20px;
        max-height: calc(100vh - 40px);
    }
}

/* === KONTAKTFORMULAR IM IMPRESSUM === */
.kontakt-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.kontakt-group {
    margin-bottom: 18px;
}

.kontakt-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.kontakt-group input,
.kontakt-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.kontakt-group input:focus,
.kontakt-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 206, 201, 0.1);
}

.kontakt-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-kontakt {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    border: none;
    border-radius: 10px;
    color: var(--bg-primary);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 24px;
}

.btn-kontakt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 206, 201, 0.3);
}

.btn-kontakt svg {
    flex-shrink: 0;
}

.kontakt-message {
    display: none;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.kontakt-message.success {
    display: block;
    background: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: var(--success);
}

.kontakt-message.error {
    display: block;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: var(--live-red);
}

