/*
Theme Name: La Cuchi Radio
Theme URI: https://lacuchiradio.com
Author: La Cuchi Team
Author URI: https://lacuchiradio.com
Description: Tema vanguardista para estación de radio online La Cuchi. Diseño moderno 2026 con glassmorphism, gradientes neón y animaciones fluidas. Optimizado para WordPress 6.9.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: la-cuchi-radio
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, translation-ready, entertainment, music
*/

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM 2026
   ============================================ */
:root {
    /* Primary Colors - Neon Pop Vibes */
    --primary-gradient: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    --secondary-gradient: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
    --accent-gradient: linear-gradient(90deg, #00f5d4 0%, #00bbf9 100%);

    /* Solid Colors */
    --primary-pink: #ff006e;
    --primary-purple: #8338ec;
    --primary-blue: #3a86ff;
    --accent-cyan: #00f5d4;
    --accent-magenta: #f72585;

    /* Dark Theme Base */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a2e;
    --bg-card: rgba(26, 26, 46, 0.6);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(20px);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-glow-pink: 0 0 40px rgba(255, 0, 110, 0.4);
    --shadow-glow-purple: 0 0 40px rgba(131, 56, 236, 0.4);
    --shadow-glow-blue: 0 0 40px rgba(58, 134, 255, 0.4);
    --shadow-glow-cyan: 0 0 40px rgba(0, 245, 212, 0.4);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(58, 134, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 65ch;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
}

/* ============================================
   GLASSMORPHISM COMPONENTS
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-base);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-glow-pink);
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-glow-purple);
    animation: pulse 2s ease-in-out infinite;
}

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

.btn-play svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(131, 56, 236, 0.4); }
    50% { box-shadow: 0 0 60px rgba(131, 56, 236, 0.6); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.main-nav a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-base);
}

.main-nav a:hover {
    color: var(--text-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--accent-cyan);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual - Radio Player */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-player-hero {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

.player-circle-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: rotateGlow 10s linear infinite;
}

.player-circle-middle {
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.player-circle-inner {
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sound Waves Animation */
.sound-waves {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.sound-wave {
    width: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    animation: soundWave 0.8s ease-in-out infinite;
}

.sound-wave:nth-child(1) { height: 20px; animation-delay: 0s; }
.sound-wave:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.sound-wave:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.sound-wave:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.sound-wave:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.sound-wave:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.sound-wave:nth-child(7) { height: 20px; animation-delay: 0.6s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* Floating Elements */
.floating-note {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-note:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-note:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-note:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 2s; }
.floating-note:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   LIVE PLAYER BAR
   ============================================ */
.live-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
    z-index: 1000;
    transform: translateY(0);
    transition: var(--transition-base);
}

.player-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.player-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.player-album-art {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.player-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.player-track-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.player-track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.player-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.player-btn.play-pause {
    background: var(--primary-gradient);
    box-shadow: var(--shadow-glow-pink);
}

.player-btn.play-pause:hover {
    transform: scale(1.1);
}

.player-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    appearance: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-pink);
    cursor: pointer;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 0, 110, 0.2);
    border: 1px solid var(--primary-pink);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-glow-purple);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    margin: 0 auto;
    font-size: 1rem;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule {
    position: relative;
}

.schedule-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

.schedule-info h2 {
    margin-bottom: var(--space-md);
}

.schedule-info p {
    margin-bottom: var(--space-lg);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    transition: var(--transition-base);
}

.schedule-item.active {
    border-color: var(--primary-pink);
    background: rgba(255, 0, 110, 0.1);
}

.schedule-time {
    min-width: 100px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.schedule-show {
    flex: 1;
}

.schedule-show-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.schedule-show-host {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.schedule-now-badge {
    padding: 4px 12px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ============================================
   DJ / HOST SECTION
   ============================================ */
.djs {
    background: var(--bg-secondary);
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.dj-card {
    overflow: hidden;
    text-align: center;
    padding-bottom: var(--space-lg);
}

.dj-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.dj-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dj-card:hover .dj-image img {
    transform: scale(1.1);
}

.dj-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-secondary), transparent 50%);
}

.dj-info {
    padding: 0 var(--space-md);
}

.dj-name {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.dj-show {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.dj-social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.dj-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.dj-social a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-method-value {
    font-weight: 600;
}

.contact-form {
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-bottom: 80px; /* Space for player bar */
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-nav h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-nav a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .radio-player-hero {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .schedule-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-secondary);
        padding: 100px var(--space-lg);
        transition: var(--transition-base);
        border-left: 1px solid var(--glass-border);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .player-bar-inner {
        flex-wrap: wrap;
    }

    .player-volume {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .radio-player-hero {
        max-width: 280px;
    }

    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .player-info {
        flex: 1;
        min-width: 0;
    }

    .player-track-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Neon Text Effect */
.neon-text {
    text-shadow:
        0 0 10px var(--primary-pink),
        0 0 20px var(--primary-pink),
        0 0 40px var(--primary-pink);
}

/* Glow Border Animation */
@keyframes borderGlow {
    0%, 100% { border-color: var(--primary-pink); }
    33% { border-color: var(--primary-purple); }
    66% { border-color: var(--primary-blue); }
}

.glow-border {
    animation: borderGlow 3s ease-in-out infinite;
}

/* Marquee for Now Playing */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   STATIONS MODAL
   ============================================ */
.stations-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.stations-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.stations-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.stations-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.stations-modal.is-open .stations-modal-content {
    transform: scale(1) translateY(0);
}

.stations-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--glass-border);
}

.stations-modal-header h2 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    margin: 0;
}

.stations-modal-header h2 svg {
    color: var(--primary-pink);
}

.stations-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.stations-modal-close:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: white;
}

.stations-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
}

.stations-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.station-item-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md);
    background: var(--glass-bg);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-base);
}

.station-item-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
}

.station-item-btn.is-playing {
    background: rgba(255, 0, 110, 0.15);
    border-color: var(--primary-pink);
}

.station-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.station-item-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.station-item-info {
    flex: 1;
    min-width: 0;
}

.station-item-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-item-genre {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.station-item-playing {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.station-item-btn.is-playing .station-item-playing {
    opacity: 1;
}

.mini-waves {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.mini-waves span {
    width: 3px;
    background: var(--primary-pink);
    border-radius: 2px;
    animation: miniWave 0.6s ease-in-out infinite;
}

.mini-waves span:nth-child(1) { height: 8px; animation-delay: 0s; }
.mini-waves span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.mini-waves span:nth-child(3) { height: 12px; animation-delay: 0.2s; }

@keyframes miniWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.stations-modal-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.now-playing-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.now-playing-label {
    color: var(--text-muted);
}

.now-playing-name {
    color: var(--primary-pink);
    font-weight: 600;
}

.no-stations {
    text-align: center;
    padding: var(--space-xl);
    color: var(--text-muted);
}

.no-stations p {
    margin-bottom: var(--space-md);
}

/* Needs Interaction Animation */
.needs-interaction {
    animation: needsAttention 1.5s ease-in-out infinite;
}

@keyframes needsAttention {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.8);
    }
}

/* Modal Responsive */
@media (max-width: 480px) {
    .stations-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .stations-modal-header {
        padding: var(--space-md);
    }

    .stations-modal-header h2 {
        font-size: 1.1rem;
    }

    .station-item-btn {
        padding: var(--space-sm);
    }

    .station-item-icon {
        width: 40px;
        height: 40px;
    }

    .station-item-icon svg {
        width: 20px;
        height: 20px;
    }
}
