:root {
    --primary-color: #F29100; /* Naranja Radio Urbana */
    --dark-bg: #121212;
    --card-bg: rgba(30, 30, 30, 0.6);
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(242, 145, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(242, 145, 0, 0.05) 0%, transparent 20%);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Glassmorphism */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    border-bottom: var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* Ajustar segun logo real */
    object-fit: contain;
}

.nav-link {
    margin-left: 20px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Hero */
.hero {
    height: 100vh; /* Pantalla completa inicio */
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
}

/* Player Card */
.player-card {
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.frequency {
    background: rgba(242, 145, 0, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.station-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.slogan {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Controls */
.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(242, 145, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px; /* Visual adjustment for play icon */
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(242, 145, 0, 0.6);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

/* Visualizer Animation */
.visualizer {
    display: flex;
    justify-content: center;
    gap: 5px;
    height: 30px;
    align-items: flex-end;
    margin-bottom: 30px;
    opacity: 0.5;
}

.bar {
    width: 6px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: bounce 1s infinite;
}

.visualizer.active .bar {
    animation-play-state: running;
    opacity: 1;
}

.visualizer:not(.active) .bar {
    animation-play-state: paused;
    height: 5px; /* Estado quieto */
}

.bar:nth-child(1) { animation-duration: 0.8s; height: 15px; }
.bar:nth-child(2) { animation-duration: 1.2s; height: 25px; }
.bar:nth-child(3) { animation-duration: 1.0s; height: 20px; }
.bar:nth-child(4) { animation-duration: 0.9s; height: 22px; }
.bar:nth-child(5) { animation-duration: 1.1s; height: 18px; }
.bar:nth-child(6) { animation-duration: 1.3s; height: 10px; }

@keyframes bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.social-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.social-btn i { font-size: 1.5rem; }
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; color: white; }
.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; color: white; }
.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; color: white; }

/* Banner / Ads */
.banner-section { margin: 60px auto; }
.ad-banner {
    padding: 40px;
    text-align: center;
    background: linear-gradient(45deg, rgba(242,145,0,0.1), rgba(0,0,0,0.4));
    border: 1px solid var(--primary-color);
}
.btn-outline {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
}
.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* News Section */
.news-section { margin-bottom: 80px; }
.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
}
.accent-dot { color: var(--primary-color); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.news-card {
    overflow: hidden;
    transition: transform 0.3s;
}
.news-card:hover { transform: translateY(-5px); }

.news-image {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}
.news-1 { background-image: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?auto=format&fit=crop&w=600&q=80'); }
.news-2 { background-image: url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?auto=format&fit=crop&w=600&q=80'); }

.news-content { padding: 25px; }
.news-tag {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.news-content h3 { margin-bottom: 10px; font-size: 1.2rem; }
.news-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.read-more { color: white; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.btn-main {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}
.center-btn { text-align: center; }

/* Contact Section */
.contact-section { margin-bottom: 80px; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    background: rgba(242, 145, 0, 0.1);
}

.contact-info h2 { margin-bottom: 15px; }
.contact-info p { color: var(--text-muted); margin-bottom: 30px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.info-item i { color: var(--primary-color); }

.contact-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}
.form-group textarea { height: 120px; resize: none; }
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}
.btn-submit {
    width: 100%;
    padding: 12px;
    background: white;
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover { background: var(--primary-color); color: white; }

/* Responsive */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 15px; }
    .hero { min-height: auto; padding: 100px 0 60px; height: auto; }
    .station-name { font-size: 2.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links { margin-top: 10px; }
