/* Emisora Virtual Styles */

/* Radio Hero Section */
.radio-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.radio-info h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.radio-info p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Radio Player */
.radio-player {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-display {
    margin-bottom: 2rem;
}

.now-playing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.track-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.track-info p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.track-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.album-art {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Audio Visualizer */
.audio-visualizer {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 3px;
    height: 60px;
    margin-bottom: 1rem;
}

.bar {
    width: 4px;
    background: linear-gradient(to top, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    animation: visualizer 1.5s ease-in-out infinite alternate;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }
.bar:nth-child(7) { animation-delay: 0.6s; }
.bar:nth-child(8) { animation-delay: 0.7s; }
.bar:nth-child(9) { animation-delay: 0.8s; }
.bar:nth-child(10) { animation-delay: 0.9s; }

@keyframes visualizer {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 200px;
}

.volume-control i {
    font-size: 1.2rem;
}

#volumeSlider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6b6b;
    cursor: pointer;
}

#volumeDisplay {
    font-size: 0.9rem;
    min-width: 35px;
}

/* Programming Section */
.programming {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.schedule-content {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
}

.program-slot {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
    transition: var(--transition);
}

.program-slot:hover {
    background: var(--light-bg);
    border-radius: 10px;
}

.program-slot:last-child {
    border-bottom: none;
}

.time-slot {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.program-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.program-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.host {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
}

.listen-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.listen-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Podcasts Section */
.podcasts {
    padding: 80px 0;
    background: var(--white);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.podcast-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.podcast-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: #c0392b;
}

.podcast-info {
    padding: 1.5rem;
}

.podcast-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.podcast-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Live Chat Section */
.live-chat {
    padding: 80px 0;
    background: var(--light-bg);
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
}

.message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.username {
    font-weight: bold;
    color: var(--secondary-color);
    min-width: 80px;
}

.text {
    flex: 1;
}

.time {
    font-size: 0.8rem;
    opacity: 0.6;
}

.chat-input {
    display: flex;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid #e1e8ed;
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e1e8ed;
    border-radius: 25px;
    outline: none;
    margin-right: 10px;
}

.chat-input button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .radio-info h1 {
        font-size: 2.5rem;
    }
    
    .program-slot {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .schedule-tabs {
        justify-content: center;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .volume-control {
        max-width: 100%;
    }
}/* Bro
adcaster Access Button */
.broadcaster-access {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.broadcaster-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    animation: pulse 3s infinite;
}

.broadcaster-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6);
}

.broadcaster-btn i {
    font-size: 1.5rem;
}

.broadcaster-btn span {
    font-size: 0.7rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .broadcaster-access {
        bottom: 20px;
        right: 20px;
    }
    
    .broadcaster-btn {
        width: 60px;
        height: 60px;
    }
    
    .broadcaster-btn i {
        font-size: 1.2rem;
    }
    
    .broadcaster-btn span {
        font-size: 0.6rem;
    }
}