:root {
    --primary-color: #2a2a2a;
    --accent-color: #6c63ff;
    --text-color: #ffffff;
    --background-color: #000000;
    /* --background-color-dark: #05000a; */ /* Entfernt die ungenutzte Variable */
}

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

/* Smooth Transitions für alle interaktiven Elemente */
a, button, input, .time-slot, .stat-item, .day-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(ellipse at center, 
        rgba(108, 99, 255, 0.1) 0%,
        rgba(5, 0, 10, 1) 70%,
        rgba(0, 0, 0, 1) 100%);
    background-color: rgb(5, 0, 10);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Hintergrund mit Sternen/Partikeln */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: -2;
}

/* Animation für fließende Sterne */
@keyframes move-stars {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) translateX(20px); opacity: 0; }
}

/* Smooth Fade-in beim Scrollen */
@keyframes fadeInOnScroll {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.3),
                    0 0 40px rgba(108, 99, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(108, 99, 255, 0.5),
                    0 0 60px rgba(108, 99, 255, 0.2);
    }
}

/* Gradient Shift Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Sterne/Partikel */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: move-stars linear infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8),
                0 0 8px rgba(108, 99, 255, 0.5);
}

.star:nth-child(3n) {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 1),
                0 0 12px rgba(108, 99, 255, 0.6);
}

.star:nth-child(5n) {
    width: 1px;
    height: 1px;
    opacity: 0.6;
}

/* Verzögerung für Sterne */
.star:nth-child(1) { top: 10%; left: 20%; animation-duration: 15s; opacity: 0.8; }
.star:nth-child(2) { top: 50%; left: 70%; animation-duration: 10s; opacity: 0.6; }
.star:nth-child(3) { top: 80%; left: 40%; animation-duration: 12s; opacity: 0.9; }
.star:nth-child(4) { top: 30%; left: 90%; animation-duration: 8s; opacity: 0.7; }
.star:nth-child(5) { top: 60%; left: 10%; animation-duration: 18s; opacity: 0.5; }
.star:nth-child(6) { top: 20%; left: 50%; animation-duration: 14s; opacity: 1; }
.star:nth-child(7) { top: 90%; left: 80%; animation-duration: 11s; opacity: 0.7; }
.star:nth-child(8) { top: 40%; left: 30%; animation-duration: 9s; opacity: 0.6; }
.star:nth-child(9) { top: 70%; left: 60%; animation-duration: 16s; opacity: 0.8; }
.star:nth-child(10) { top: 0%; left: 5%; animation-duration: 20s; opacity: 0.9; }
.star:nth-child(11) { top: 15%; left: 35%; animation-duration: 17s; opacity: 0.7; }
.star:nth-child(12) { top: 45%; left: 5%; animation-duration: 13s; opacity: 0.8; }
.star:nth-child(13) { top: 75%; left: 25%; animation-duration: 19s; opacity: 0.6; }
.star:nth-child(14) { top: 25%; left: 65%; animation-duration: 10s; opacity: 0.9; }
.star:nth-child(15) { top: 55%; left: 95%; animation-duration: 15s; opacity: 0.7; }
.star:nth-child(16) { top: 85%; left: 15%; animation-duration: 12s; opacity: 0.8; }
.star:nth-child(17) { top: 35%; left: 45%; animation-duration: 18s; opacity: 0.5; }
.star:nth-child(18) { top: 65%; left: 75%; animation-duration: 14s; opacity: 1; }
.star:nth-child(19) { top: 5%; left: 85%; animation-duration: 11s; opacity: 0.7; }
.star:nth-child(20) { top: 95%; left: 55%; animation-duration: 9s; opacity: 0.6; }
.star:nth-child(21) { top: 50%; left: 0%; animation-duration: 20s; opacity: 0.8; }
.star:nth-child(22) { top: 0%; left: 100%; animation-duration: 15s; opacity: 0.7; }
.star:nth-child(23) { top: 100%; left: 50%; animation-duration: 18s; opacity: 0.9; }
.star:nth-child(24) { top: 30%; left: 0%; animation-duration: 12s; opacity: 0.6; }
.star:nth-child(25) { top: 70%; left: 100%; animation-duration: 16s; opacity: 0.8; }

@keyframes subtle-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes glowing {
    0% { text-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color); }
    50% { text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color); }
    100% { text-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color); }
}

/* Keyframes für die Erscheinungs-Animation von unten */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Keyframes für die Bounce-Animation */
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Keyframes für einfaches Einblenden */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out forwards; /* Animation ohne Verzögerung hier */
    opacity: 0; /* Startzustand für Animation */
    animation-delay: 0.2s; /* Verzögerung für den Header */
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), #ff6b6b, var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(108, 99, 255, 0.4));
    transition: transform 0.2s ease;
    cursor: pointer;
    /* Text nicht markierbar */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
}

h1:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Galaxy-Welle Overlay */
.neon-wave-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 40%;
    background: 
        radial-gradient(ellipse 80% 100% at 50% 50%, 
            rgba(138, 43, 226, 0.6) 0%,
            rgba(108, 99, 255, 0.5) 15%,
            rgba(255, 20, 147, 0.4) 30%,
            rgba(108, 99, 255, 0.3) 45%,
            rgba(255, 107, 107, 0.3) 60%,
            rgba(138, 43, 226, 0.2) 75%,
            transparent 100%
        ),
        radial-gradient(ellipse 60% 80% at 50% 50%,
            rgba(108, 99, 255, 0.4) 0%,
            rgba(255, 107, 107, 0.3) 25%,
            rgba(138, 43, 226, 0.2) 50%,
            transparent 75%
        );
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    filter: blur(60px);
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
}

body.neon-wave .neon-wave-overlay {
    animation: galaxyWaveMove 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

@keyframes galaxyWaveMove {
    0% {
        top: -100%;
        opacity: 0;
        height: 30%;
        transform: rotate(0deg) scaleX(0.8);
    }
    15% {
        opacity: 1;
    }
    35% {
        height: 50%;
        transform: rotate(2deg) scaleX(1);
    }
    55% {
        height: 60%;
        transform: rotate(-1deg) scaleX(1.1);
    }
    75% {
        height: 55%;
        transform: rotate(1deg) scaleX(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 110%;
        opacity: 0;
        height: 40%;
        transform: rotate(0deg) scaleX(0.9);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}

.player {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15) 0%, 
        rgba(255, 107, 107, 0.1) 50%,
        rgba(108, 99, 255, 0.15) 100%);
    background-size: 200% 200%;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(108, 99, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards, float 6s ease-in-out infinite;
    opacity: 0;
    animation-delay: 0.4s, 2s;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, 
        rgba(108, 99, 255, 0.15) 0%, 
        transparent 60%);
    pointer-events: none;
    opacity: 0.6;
}

.player::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
}


.player:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(108, 99, 255, 0.4),
                0 0 0 1px rgba(108, 99, 255, 0.3) inset,
                0 0 80px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.4);
}

.now-playing {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.control-btn {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.2),
        rgba(255, 107, 107, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.control-btn:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(108, 99, 255, 0.6);
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.5),
                0 0 60px rgba(108, 99, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.3),
        rgba(255, 107, 107, 0.25));
}

.control-btn:active {
    transform: scale(1.05) rotate(-5deg);
    transition: transform 0.1s ease;
}

.control-btn:hover::before {
    width: 100%;
    height: 100%;
}


.control-btn .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.control-btn:hover .icon {
    transform: scale(1.1);
}

.control-btn.playing {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.control-btn.playing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.volume-control {
    width: 200px;
    position: relative;
    z-index: 1;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        rgba(108, 99, 255, 0.3),
        rgba(255, 107, 107, 0.3));
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.2) inset;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.6),
                0 0 30px rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.8),
                0 0 40px rgba(108, 99, 255, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.6);
}

input[type="range"]::-moz-range-track {
    height: 6px;
    background: linear-gradient(90deg, 
        rgba(108, 99, 255, 0.3),
        rgba(255, 107, 107, 0.3));
    border-radius: 10px;
}

footer {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.2);
}

/* Programm Section Styles */
.program-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.12) 0%, 
        rgba(255, 107, 107, 0.08) 50%,
        rgba(108, 99, 255, 0.12) 100%);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(108, 99, 255, 0.1);
    position: relative;
    overflow: hidden;
    /* Animation wird durch JavaScript gesteuert */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.5),
        rgba(255, 107, 107, 0.5),
        rgba(108, 99, 255, 0.5));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.program-section:hover::before {
    opacity: 0.3;
}

.program-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
}

.program-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(108, 99, 255, 0.4),
                0 0 0 1px rgba(108, 99, 255, 0.3) inset,
                0 0 80px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.4);
}

.program-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b, var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.3));
    animation: gradientShift 4s ease infinite;
    transition: transform 0.3s ease;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b, var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.3));
    animation: gradientShift 4s ease infinite;
    transition: transform 0.3s ease;
}

.program-section h2:hover,
.about-section h2:hover {
    transform: scale(1.05);
}

.day-selector {
    display: none; /* Tag-Auswahl ausgeblendet - nur aktueller Tag wird angezeigt */
}

.day-btn {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15),
        rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.85rem;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transform-origin: center;
    font-size: 0.95rem;
}

.day-btn:hover {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.25),
        rgba(255, 107, 107, 0.15));
    border-color: rgba(108, 99, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
    color: #ffffff;
}

.day-btn.active {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 25px rgba(108, 99, 255, 0.5),
                0 0 30px rgba(108, 99, 255, 0.3);
}

.current-day-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15),
        rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.current-day-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
}

.current-day-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInOnScroll 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

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

.time-slot:hover::before {
    left: 100%;
}

/* Verzögerung für jeden Programmeintrag */
.time-slot:nth-child(1) { animation-delay: 0.05s; }
.time-slot:nth-child(2) { animation-delay: 0.10s; }
.time-slot:nth-child(3) { animation-delay: 0.15s; }
.time-slot:nth-child(4) { animation-delay: 0.20s; }
.time-slot:nth-child(5) { animation-delay: 0.25s; }
.time-slot:nth-child(6) { animation-delay: 0.30s; }
.time-slot:nth-child(7) { animation-delay: 0.35s; }
.time-slot:nth-child(8) { animation-delay: 0.40s; }
.time-slot:nth-child(9) { animation-delay: 0.45s; }
.time-slot:nth-child(10) { animation-delay: 0.50s; }
.time-slot:nth-child(11) { animation-delay: 0.55s; }
.time-slot:nth-child(12) { animation-delay: 0.60s; }
.time-slot:nth-child(13) { animation-delay: 0.65s; }
.time-slot:nth-child(14) { animation-delay: 0.70s; }
.time-slot:nth-child(15) { animation-delay: 0.75s; }
.time-slot:nth-child(16) { animation-delay: 0.80s; }
.time-slot:nth-child(17) { animation-delay: 0.85s; }
.time-slot:nth-child(18) { animation-delay: 0.90s; }
.time-slot:nth-child(19) { animation-delay: 0.95s; }
.time-slot:nth-child(20) { animation-delay: 1.00s; }

.time-slot:hover {
    transform: translateY(-6px) translateX(10px) scale(1.02);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.25), rgba(255, 107, 107, 0.15));
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.4),
                0 0 0 1px rgba(108, 99, 255, 0.3) inset,
                0 0 60px rgba(108, 99, 255, 0.2);
}

.time {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    background: rgba(108, 99, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(108, 99, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.time-slot:hover .time {
    background: rgba(108, 99, 255, 0.25);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    transform: scale(1.05);
}

/* Über Uns Section Styles */
.about-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.12) 0%, 
        rgba(255, 107, 107, 0.08) 50%,
        rgba(108, 99, 255, 0.12) 100%);
    background-size: 200% 200%;
    border-radius: 28px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(108, 99, 255, 0.1);
    position: relative;
    overflow: hidden;
    /* Animation wird durch JavaScript gesteuert - keine CSS-Animation */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.about-section:hover {
    background-position: 100% 50%;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.5),
        rgba(255, 107, 107, 0.5),
        rgba(108, 99, 255, 0.5));
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.about-section:hover::before {
    opacity: 0.3;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
}

.about-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(108, 99, 255, 0.4),
                0 0 0 1px rgba(108, 99, 255, 0.3) inset,
                0 0 80px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.4);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Float Animation startet erst nach Einblend-Animation */
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.2s;
    position: relative;
    overflow: hidden;
    /* Gleiche Größe für alle Kacheln */
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    flex: 0 0 180px;
    will-change: transform;
    /* Initial unsichtbar - wird durch JavaScript animiert */
    opacity: 0;
    transform: translateY(20px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.08);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.25), rgba(255, 107, 107, 0.15));
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 16px 50px rgba(108, 99, 255, 0.5),
                0 0 0 1px rgba(108, 99, 255, 0.3) inset,
                0 0 80px rgba(108, 99, 255, 0.3);
    animation: float 2s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(108, 99, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(108, 99, 255, 0.6));
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Navbar Styles - Konsolidiert */
.navbar-island {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.2) 0%,
        rgba(255, 107, 107, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.7rem 2.5rem;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(108, 99, 255, 0.3) inset,
                0 0 40px rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInDownIsland 0.6s ease-out;
    overflow-y: auto;
}

@keyframes fadeInDownIsland {
    0% { opacity: 0; transform: translate(-50%, -30px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

.navbar-island.navbar-hidden {
    top: -100px;
}

.nav-links-island {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

.nav-link-island {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-island::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #ff6b6b);
    border-radius: 2px;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.nav-link-island:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link-island:hover::after {
    width: 100%;
}

.hamburger {
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.2),
        rgba(255, 107, 107, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.3),
        rgba(255, 107, 107, 0.2));
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #ffffff;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #ffffff;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .hamburger {
        display: none; /* Auf Desktop ausblenden */
    }

    .navbar-island {
        display: flex; /* Auf Desktop als Flex anzeigen */
        position: fixed;
        top: 20px; /* Desktop Position */
        left: 50%;
        transform: translateX(-50%);
        right: auto; /* Mobile Position zurücksetzen */
        width: auto; /* Mobile Breite zurücksetzen */
        height: auto; /* Mobile Höhe zurücksetzen */
        flex-direction: row; /* Desktop Anordnung */
        padding: 1rem 2rem; /* Desktop Padding */
        border-radius: 50px; /* Desktop Border Radius */
    }

    .nav-links-island {
         display: flex; /* Auf Desktop als Flex anzeigen */
         flex-direction: row; /* Desktop Anordnung */
    }

    .nav-link-island {
        font-size: 1rem; /* Desktop Größe */
    }
}

/* iOS-spezifische Styles für besseres Player-Design */
@supports (-webkit-touch-callout: none) {
    .player {
        -webkit-tap-highlight-color: transparent;
    }
    
    .control-btn {
        -webkit-tap-highlight-color: rgba(108, 99, 255, 0.3);
    }
    
    /* Verbesserte Touch-Targets für iOS */
    .control-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    input[type="range"] {
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
        padding: 10px 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    /* Volume-Control auf mobilen Geräten ausblenden */
    .volume-control {
        display: none;
    }

    .navbar-island {
        display: block; /* Auf Mobile als Block anzeigen */
        position: fixed !important; /* Position fixieren (mit !important, falls nötig) */
        top: -100% !important; /* Standardmäßig ausgeblendet (von oben) */
        left: 0 !important; /* Links am Bildschirmrand */
        right: 0 !important; /* Rechts am Bildschirmrand */
        width: 100% !important; /* Volle Breite */
        height: auto !important; /* Automatische Höhe */
        background: rgba(5, 0, 10, 0.95);
        backdrop-filter: blur(15px);
        padding: 80px 20px 30px;
        border-radius: 0 0 24px 24px; /* Abgerundete untere Ecken */
        border-bottom: 1px solid rgba(108, 99, 255, 0.3);
        transform: none !important; /* Zentrierung auf Mobile zurücksetzen */
        transition: top 0.3s ease; /* Transition für Dropdown von oben */
        z-index: 1000;
    }

    .navbar-island.active {
        top: 0 !important; /* Eingeblendet (von oben) */
    }

    .nav-links-island {
        flex-direction: column; /* Vertikale Anordnung */
        align-items: center; /* Links zentrieren */
        gap: 2rem;
        justify-content: center; /* Vertikal zentrieren */
    }

    .nav-link-island {
        font-size: 1.2rem; /* Größere Schrift */
        text-align: center; /* Text zentrieren */
        display: block; /* Als Block-Element für bessere Zentrierung */
    }

    /* Verhindert Scrollen des Body, wenn das Menü aktiv ist */
    body.menu-active {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .player {
        padding: 2rem 1.5rem;
        animation: none !important;
        opacity: 1 !important;
        border-radius: 20px;
    }
    
    .player::before {
        animation: none;
    }
    
    /* Volume-Control auf mobilen Geräten ausblenden */
    .volume-control {
        display: none;
    }
    
    .program-section {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
        margin: 2rem 0;
    }
    
    .about-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 3rem 0;
    }
    
    .program-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .program-section::before,
    .about-section::before {
        filter: blur(4px);
    }
    
    .day-selector {
        gap: 0.25rem;
    }
    
    .day-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .time-slot {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.25rem;
        animation: none !important;
        opacity: 1 !important;
    }
    
    .time-slot .time {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .time-slot .show {
        font-size: 1rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        /* Gleiche Größe auch auf Mobile */
        width: 100%;
        min-width: 140px;
        max-width: 180px;
        height: auto;
        min-height: 140px;
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    header,
    main section,
    footer {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* Individuelle Verzögerungen für jede Sektion in main */
main section:nth-of-type(1) { /* Programm Sektion */
    animation-delay: 0.6s; /* Verzögerung nach Player */
}

main section:nth-of-type(2) { /* Über Uns Sektion */
    animation-delay: 0.8s; /* Verzögerung nach Programm Sektion */
}

/* Optional: Weitere Verzögerungen für andere Sektionen in main */
/* main section:nth-of-type(3) { animation-delay: 1s; } */

.title {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

.title h1 {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.title p {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.news-section {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.12) 0%, 
        rgba(255, 107, 107, 0.08) 50%,
        rgba(108, 99, 255, 0.12) 100%);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.5s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(108, 99, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.news-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* News Item Styles - Konsolidiert */
.news-item {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.1),
        rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.news-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15),
        rgba(255, 107, 107, 0.1));
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.news-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.news-item p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.news-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.discord-section {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.12) 0%, 
        rgba(255, 107, 107, 0.08) 50%,
        rgba(108, 99, 255, 0.12) 100%);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.7s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 0 60px rgba(108, 99, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.discord-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discord-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #5865F2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.discord-button:hover {
    transform: translateY(-3px);
    background: #4752C4;
}

.discord-icon {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028c.462-.63.874-1.295 1.226-1.994.021-.041.001-.09-.041-.106a13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    body {
        padding: 3rem 1rem 1rem 1rem;
    }

    .title h1 {
        font-size: 2rem;
    }

    .player {
        padding: 1.5rem;
    }

    .current-track {
        font-size: 1.1rem;
    }

    .control-btn {
        width: 50px;
        height: 50px;
    }

    .control-btn .icon {
        width: 18px;
        height: 18px;
    }

    .news-section, .discord-section {
        padding: 3rem 1rem;
    }

    .news-title {
        font-size: 1.5rem;
    }

    .discord-title {
        font-size: 1.5rem;
    }

    .discord-description {
        font-size: 1rem;
    }

    .discord-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation auf Sektionen anwenden und verzögern */
.title,
.player,
.news-section,
.discord-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.title { animation-delay: 0.1s; }
.player { animation-delay: 0.3s; }
.news-section { animation-delay: 0.5s; }
.discord-section { animation-delay: 0.7s; } 

/* Bessere Platzierung des Neu-Badges neben dem Show-Titel */
.time-slot .show {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.time-slot:hover .show {
	color: #ffffff;
	transform: translateX(4px);
}

/* Neu Badge */
.badge-new {
	display: inline-block;
	margin-left: 0; /* durch gap geregelt */
	padding: 0.2rem 0.7rem;
	border-radius: 999px;
	font-size: 0.75rem;
	line-height: 1.2;
	font-weight: 600;
	background: linear-gradient(135deg, var(--accent-color, #6c63ff), #ff6b6b);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
	box-shadow: 0 4px 20px rgba(108, 99, 255, 0.5),
	            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
	text-shadow: 0 1px 8px rgba(0,0,0,0.3);
	white-space: nowrap;
	vertical-align: middle;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.badge-new::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(45deg);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.time-slot:hover .badge-new {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(108, 99, 255, 0.7),
	            0 0 0 1px rgba(255, 255, 255, 0.3) inset;
} 