:root {
    --primary: #8a2be2;
    --background: #121212;
    --card-bg: #1e1e1e;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --success: #4CAF50;
    --danger: #f44336;
    --border-radius: 12px;
}

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

body {
    background: var(--background);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

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

.player-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.banner-section {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 2rem;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    opacity: 0.5;
}

.cover-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

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

.player-info {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.radio-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.radio-meta {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.player-controls {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.control-btn {
    background: var(--primary);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.volume-slider {
    -webkit-appearance: none;
    width: 200px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin: 0 1rem;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.carousel-section {
    margin-top: 4rem;
}

.carousel-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
    padding: 1rem 0;
}

.carousel-item {
    flex: 0 0 250px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-cover {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.carousel-info {
    padding: 1rem;
}

.carousel-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.carousel-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.language-selector {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-selector a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.language-selector a:hover {
    color: var(--text);
}

.language-selector a.active {
    color: var(--primary);
    font-weight: bold;
}

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

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

    .player-controls {
        gap: 1rem;
    }

    .volume-slider {
        width: 150px;
    }

    .carousel-item {
        flex: 0 0 200px;
    }

    .cover-container {
        width: 200px;
        height: 200px;
    }
} 