/* ===================================
   Club Dance Online - Modern CSS
   Black & White Theme with Youth Appeal
   =================================== */

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: 'Vonique 43';
    src: url('../fonts/Vonique 43_D.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff0055;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    border-radius: 5px;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: #cc0044;
    transform: scale(1.05);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: black;
}

/* Header */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo h1 {
    font-family: 'Vonique 43', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.logo h1 span {
    color: var(--accent-color);
}

.logo h1 span.pulse-text,
.footer-logo-link h3 span.pulse-text {
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 20px rgba(255, 0, 85, 1),
            0 0 40px rgba(255, 0, 85, 0.8),
            0 0 60px rgba(255, 0, 85, 0.6);
    }
    50% {
        opacity: 1;
        text-shadow: 
            0 0 30px rgba(255, 0, 85, 1),
            0 0 60px rgba(255, 0, 85, 1),
            0 0 90px rgba(255, 0, 85, 0.8),
            0 0 120px rgba(255, 0, 85, 0.6);
    }
}

.tagline {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" opacity="0.02" width="100%" height="100%"/></svg>');
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    min-height: 400px;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.glitch {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 var(--accent-color), -0.025em -0.05em 0 #00ffff,
                 0.025em 0.05em 0 #ff00ff;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 var(--accent-color), -0.025em -0.05em 0 #00ffff,
                     0.025em 0.05em 0 #ff00ff;
    }
    14% {
        text-shadow: 0.05em 0 0 var(--accent-color), -0.025em -0.05em 0 #00ffff,
                     0.025em 0.05em 0 #ff00ff;
    }
    15% {
        text-shadow: -0.05em -0.025em 0 var(--accent-color), 0.025em 0.025em 0 #00ffff,
                     -0.05em -0.05em 0 #ff00ff;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 var(--accent-color), 0.025em 0.025em 0 #00ffff,
                     -0.05em -0.05em 0 #ff00ff;
    }
    50% {
        text-shadow: 0.025em 0.05em 0 var(--accent-color), 0.05em 0 0 #00ffff,
                     0 -0.05em 0 #ff00ff;
    }
    99% {
        text-shadow: 0.025em 0.05em 0 var(--accent-color), 0.05em 0 0 #00ffff,
                     0 -0.05em 0 #ff00ff;
    }
    100% {
        text-shadow: -0.025em 0 0 var(--accent-color), -0.025em -0.025em 0 #00ffff,
                     -0.025em -0.05em 0 #ff00ff;
    }
}

.current-show {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    opacity: 0.9;
}

.current-show span {
    color: var(--accent-color);
    font-weight: bold;
}

/* Hero Track Info (Left Side) */
.track-info-large {
    margin: 40px 0;
}

.track-info-large h3 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.track-info-large p {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.listeners-count-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: white;
    margin-top: 30px;
    padding: 15px 25px;
    background: rgba(255, 0, 85, 0.2);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 85, 0.3);
    display: inline-flex;
}

.listeners-count-hero i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.listeners-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
    text-align: left;
}

/* Hero Player (Right Side) */
.album-art-hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.album-art-hero-container {
    width: 350px;
    height: 350px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 0 0 8px rgba(0, 0, 0, 0.8),
        0 0 0 10px rgba(255, 0, 85, 0.5),
        0 15px 50px rgba(0, 0, 0, 0.5);
}

/* Vinyl record grooves effect */
.album-art-hero-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-radial-gradient(
            circle at center,
            transparent 0,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.album-art-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: vinylRotate 8s linear infinite;
    animation-play-state: paused;
    border-radius: 50%;
}

/* Rotate when playing */
.album-art-hero.playing {
    animation-play-state: running;
}

@keyframes vinylRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Vinyl center hole effect */
.album-art-hero-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5),
        0 2px 5px rgba(255, 0, 85, 0.3);
    z-index: 5;
    pointer-events: none;
}

/* Play Button Overlay - Center of Album Art */
.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 0, 85, 0.95);
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-overlay i {
    margin-left: 4px; /* Play icon centering */
}

.play-btn-overlay:hover {
    background: rgba(255, 0, 85, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 0, 85, 0.6);
}

.play-btn-overlay.playing {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.95), rgba(204, 0, 68, 0.95));
}

.play-btn-overlay.playing i {
    margin-left: 0; /* Pause icon is centered */
}

/* Compact Volume Control Below Album */
.volume-control-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 350px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-control-compact i {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition);
}

.volume-control-compact i:hover {
    opacity: 1;
    color: var(--accent-color);
}

.volume-slider-hero {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.volume-slider-hero::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 0, 85, 0.5);
    transition: var(--transition);
}

.volume-slider-hero::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(255, 0, 85, 0.7);
}

.volume-slider-hero::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 0, 85, 0.5);
    transition: var(--transition);
}

.volume-slider-hero::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(255, 0, 85, 0.7);
}

/* Quality Selector Hero */
.quality-selector-hero {
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.hero-quality-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.hero-quality-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.3);
}

.hero-quality-btn i:first-child {
    color: var(--accent-color);
}

.hero-quality-btn i:last-child {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.hero-quality-menu.active + .hero-quality-btn i:last-child {
    transform: rotate(180deg);
}

.hero-quality-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-quality-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-quality-menu .quality-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-quality-menu .quality-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-quality-menu .quality-option i {
    color: var(--accent-color);
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    width: 16px;
    flex-shrink: 0;
}

.hero-quality-menu .quality-option.active i {
    opacity: 1;
}

.hero-quality-menu .quality-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-quality-menu .quality-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-quality-menu .quality-option.active .quality-name {
    color: var(--accent-color);
}

.hero-quality-menu .quality-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Radio Player */
.radio-player {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 30px auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.album-art-container {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b9d);
    animation: rotate 20s linear infinite;
    display: block;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.track-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.track-info p {
    opacity: 0.8;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6);
}

.play-btn.playing {
    background: #00ff88;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 150px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Channel Selector */
.channel-selector {
    margin: 30px 0;
}

.channel-selector h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.channel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.channel-btn i {
    font-size: 1.5rem;
}

.channel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.channel-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.listeners-count {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Ad Spaces */
.ad-space {
    padding: 40px 0;
    background: #f5f5f5;
}

.ad-placeholder {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border: 2px dashed #cccccc;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder.partner-ad {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    border-color: var(--accent-color);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(360deg, #000000 0%, #ff0055d1 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><rect fill="%23ffffff" opacity="0.05" width="100%" height="100%"/></svg>');
    animation: pulse 3s ease-in-out infinite;
}

.stats-section .section-title {
    position: relative;
    z-index: 1;
    color: white;
    margin-bottom: 50px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Recent Tracks Section */
.recent-tracks {
    padding: 60px 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.recent-tracks-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.recent-track-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.recent-track-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.recent-track-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
}

.recent-track-item:hover::before {
    opacity: 1;
}

.recent-track-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    min-width: 40px;
    text-align: center;
}

.recent-track-cover {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.recent-track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-track-info {
    flex: 1;
    min-width: 0;
}

.recent-track-info h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: white;
    line-height: 1.5;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.recent-track-info p {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* Sections */
.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: #ffffff;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: linear-gradient(180deg, #191919 0%, #000000 100%);
    position: relative;
}

.music-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 85, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 0, 85, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.info-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.6);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.info-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #cc0044;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* About Preview */
.about-preview {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    margin: 20px 0;
    line-height: 1.7;
}

/* Events Section */
.events {
    padding: 60px 0;
    background: white;
}

/* Social & Mobile Section */
.social-mobile {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.social-links-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-links-center a {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-links-center a:hover {
    background: var(--accent-color);
    transform: scale(1.15);
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: var(--transition);
}

.btn-app:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.partner-cta {
    font-size: 1.1rem;
}

.partner-cta a {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
}

.partner-cta a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
}

.contact-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 15px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo {
    width: 100%;
    max-width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%) brightness(1);
}

/* Partner Text Logo */
.partner-logo-text {
    cursor: default;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
}

.text-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.partner-logo-text:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* OnlineStat Logo */
.onlinestat-logo {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.online-white {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-green {
    color: rgba(0, 255, 0, 0.3);
    font-weight: 700;
    transition: color 0.3s ease;
}

.partner-logo-text:has(.onlinestat-logo) {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
}

.partner-item:hover .online-white {
    color: white;
}

.partner-item:hover .stat-green {
    color: #00ff00;
}

/* Partner CTA */
.partner-cta {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.1) 0%, rgba(255, 0, 85, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 85, 0.2);
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.partner-cta:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.partner-cta-icon {
    flex-shrink: 0;
}

.partner-cta-icon i {
    font-size: 4rem;
    color: var(--accent-color);
}

.partner-cta-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 2px;
}

.partner-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.partner-cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-color);
    color: #000 !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(255, 0, 85, 0.3);
}

.partner-cta-button:hover {
    background: #ff1a6b;
    color: #000 !important;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .partner-logo {
        height: 100px;
    }
    
    .text-logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .partner-cta {
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        text-align: center;
    }
    
    .partner-cta-icon i {
        font-size: 3rem;
    }
    
    .partner-cta-content h3 {
        font-size: 1.6rem;
    }
    
    .partner-cta-content p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section h3 {
    font-family: 'Vonique 43', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-link h3 {
    color: white;
}

.footer-logo-link h3 span {
    color: var(--accent-color);
}

.footer-section p {
    margin: 10px 0;
    opacity: 0.8;
}

.non-profit {
    font-style: italic;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.studio-credit {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.studio-credit a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.studio-credit a:hover {
    color: white;
    text-shadow: 0 0 10px var(--accent-color);
}

.studio-credit strong {
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.02;
    }
    50% {
        opacity: 0.05;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .glitch {
        font-size: 2rem;
    }

    /* Hero responsive */
    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-right {
        flex: 1;
        width: 100%;
    }

    .album-art-hero-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .album-art-hero-container::before {
        width: 60px;
        height: 60px;
    }

    .volume-control-compact {
        width: 280px;
    }

    .play-btn-overlay {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .track-info-large h3 {
        font-size: 2rem;
    }

    .track-info-large p {
        font-size: 1.3rem;
    }

    .listeners-count-hero {
        margin: 20px auto;
    }

    .radio-player {
        padding: 20px;
    }

    .player-info {
        flex-direction: column;
        text-align: center;
    }

    .player-controls {
        flex-direction: column;
        gap: 20px;
    }

    .channels {
        grid-template-columns: 1fr 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .music-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recent-tracks-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recent-track-item {
        padding: 15px;
    }

    .recent-track-number {
        font-size: 1.5rem;
        min-width: 35px;
    }

    .recent-track-cover {
        width: 80px;
        height: 80px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .glitch {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .album-art {
        width: 80px;
        height: 80px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .channels {
        grid-template-columns: 1fr;
    }
}
