:root {
    --primary-color: #0046EC;
    --accent-color: #FF1654;
    --text-white: #ffffff;
    --blue-light: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.player-header {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
}

.status {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin: 3rem 0;
}

.logo span {
    display: block;
}

.current-show {
    margin-top: 1rem;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.show-image {
    width: 465px;
    height: 465px;
    border-radius: 8px;
    background-color: var(--blue-light);
    background-size: cover;
    background-position: center;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    position: absolute;
    right: 0;
    top: -240px;
    z-index: -1;
}

.current-show .show-time {
    color: var(--accent-color);
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-align: left;
    font-size: 1.8rem;
    height: 15px;
}

.current-show .show-name {
    opacity: 0.9;
    position: relative;
    z-index: 1;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 500;
}

.schedule {
    background-color: var(--blue-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.schedule h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.schedule-item .time {
    font-weight: bold;
    color: var(--accent-color);
}

.schedule-item .show {
    opacity: 0.9;
}

.now-playing {
    background-color: var(--blue-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: var(--blue-light);
}

.track-details h3 {
    font-size: 1.2rem;
    margin: 0;
}

.track-details p {
    margin: 0;
    opacity: 0.8;
}

.controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.play-btn {
    background-color: var(--accent-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
}

.volume-control i {
    font-size: 1.5rem;
}

.volume-control input[type="range"] {
    width: 100px;
    accent-color: var(--accent-color);
}

.open-window {
    background: none;
    border: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.open-window i {
    font-size: 1.2rem;
}

/* Hide unnecessary elements */
.main-controls #prevBtn,
.main-controls #nextBtn,
.playlist-control,
.playlist-container {
    display: none;
}

.playlist-container {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--background-color);
    border-radius: 8px;
}

.playlist-container h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#playlist {
    list-style: none;
}

#playlist li {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#playlist li:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .player-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .volume-control {
        width: 100%;
        justify-content: center;
    }
} 