css/* RESET I PODSTAWOWE STYLE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-image: url(https://clubdance.xaa.pl/images/tlo.png);
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAWIGACJA (HEADER) */
header {
    background-color: #121220;
    border-bottom: 2px solid #ff007f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.logo span {
    color: #ff007f;
    text-shadow: 0 0 10px #ff007f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #00f0ff;
    text-shadow: 0 0 8px #00f0ff;
}

/* GŁÓWNA ZAWARTOŚĆ */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    main {
        grid-template-columns: 2fr 1fr;
    }
}

/* ODTWARZACZ (PLAYER) */
.player-card {
    background: linear-gradient(135deg, rgba(24, 24, 44, 0.8) 0%, rgba(16, 16, 30, 0.8) 100%);
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.live-badge {
    background-color: #ff007f;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite;
    margin-bottom: 20px;
}

.track-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.track-info p {
    color: #00f0ff;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

audio {
    width: 100%;
    max-width: 400px;
    outline: none;
    border-radius: 30px;
}

/* PANEL BOCZNY (RAMÓWKA) */
.sidebar-card {
    background-color: #121222;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #23233c;
}

.sidebar-card h2 {
    font-size: 20px;
    color: #ff007f;
    margin-bottom: 20px;
    border-bottom: 1px solid #23233c;
    padding-bottom: 10px;
}

.playlist {
    list-style: none;
}

.playlist li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a2e;
}

.playlist li:last-child {
    border-bottom: none;
}

.time {
    color: #00f0ff;
    font-weight: bold;
}

.dj-name {
    color: #e0e0e0;
}

/* STOPKA */
footer {
    background-color: #08080e;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #1a1a2e;
}

/* ANIMACJE */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
