/* ============================================
   FM TERMAL 88.7 - Styles
   Modern Radio Website with Dark Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Thermal/Warm palette */
    --color-primary: #ff6b35;
    --color-primary-light: #ff8c5a;
    --color-primary-dark: #e55a2b;
    --color-secondary: #f7931e;
    --color-accent: #ffcc00;

    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1020 100%);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Shadows & Glows */
    --glow-primary: 0 0 30px rgba(255, 107, 53, 0.4);
    --glow-secondary: 0 0 50px rgba(247, 147, 30, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-radius: 16px;
    --border-radius-lg: 24px;

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index layers */
    --z-sticky: 100;
    --z-navbar: 1000;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text .frequency {
    color: var(--color-primary);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 15, 0.7) 0%,
            rgba(10, 10, 15, 0.5) 50%,
            rgba(10, 10, 15, 0.95) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-frequency {
    display: block;
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
    text-shadow: var(--glow-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: var(--glow-primary);
    }

    50% {
        text-shadow: 0 0 60px rgba(255, 107, 53, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: -10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Now Playing */
.now-playing {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.equalizer {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 20px;
}

.equalizer span {
    width: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: eq-bar 0.8s ease-in-out infinite;
}

.equalizer span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.equalizer span:nth-child(2) {
    height: 16px;
    animation-delay: 0.1s;
}

.equalizer span:nth-child(3) {
    height: 12px;
    animation-delay: 0.2s;
}

.equalizer span:nth-child(4) {
    height: 20px;
    animation-delay: 0.3s;
}

.equalizer span:nth-child(5) {
    height: 10px;
    animation-delay: 0.4s;
}

@keyframes eq-bar {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.track-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.track-info .label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.track-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Player Container */
.player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.player-ring {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            var(--color-primary),
            var(--color-secondary),
            var(--color-accent),
            var(--color-primary));
    opacity: 0.5;
    filter: blur(20px);
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.play-button {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
    box-shadow:
        0 20px 50px rgba(255, 107, 53, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-base);
    z-index: 1;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow:
        0 25px 60px rgba(255, 107, 53, 0.5),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.play-button:active {
    transform: scale(0.98);
}

.play-button svg {
    width: 60px;
    height: 60px;
    color: white;
}

.play-button .icon-pause {
    display: none;
}

.play-button.playing .icon-play {
    display: none;
}

.play-button.playing .icon-pause {
    display: block;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.volume-icon {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
}

.volume-slider {
    width: 120px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   SECTIONS - General
   ============================================ */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.title-accent {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* ============================================
   PROGRAMACIÓN
   ============================================ */
.programacion {
    background: var(--bg-gradient);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.schedule-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: var(--transition-base);
}

.schedule-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-card.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.schedule-card.active::before {
    opacity: 1;
}

.schedule-card.active::after {
    content: 'AL AIRE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.schedule-time {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.schedule-show h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-show p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.schedule-host {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.schedule-host img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card-hover);
}

.schedule-host span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   LOCUTORES (Team)
   ============================================ */
.locutores {
    background: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 107, 53, 0.3);
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-card-hover);
}

.avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, var(--color-primary), var(--color-secondary)) border-box;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.team-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto {
    background: var(--bg-gradient);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-card address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-phone {
    margin-top: 15px !important;
    font-weight: 600;
    color: var(--text-primary) !important;
}

/* WhatsApp Card */
.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.05));
}

.whatsapp-card .contact-icon svg {
    fill: #25D366;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ============================================
   AD BANNERS
   ============================================ */
.ad-banner-section {
    padding: 40px 0;
    background: var(--bg-gradient);
}

.ad-banner {
    display: block;
    max-width: 728px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}

.ad-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ad-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NOTICIAS SECTION
   ============================================ */
.noticias {
    background: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.news-card.featured {
    grid-column: span 3;
    flex-direction: row;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 107, 53, 0.3);
}

.news-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-card-hover);
}

.news-card:not(.featured) .news-image {
    aspect-ratio: 16 / 10;
}

.news-card.featured .news-image {
    width: 45%;
    min-height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card.featured .news-content {
    width: 55%;
    padding: 35px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.news-category {
    background: rgba(255, 107, 53, 0.15);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.news-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card.featured .news-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.news-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.news-link:hover {
    color: var(--color-primary-light);
    gap: 8px;
}

.news-cta {
    text-align: center;
}

/* Logo Styles */
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Button Outline */
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 0 100px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   STICKY PLAYER (Mobile)
   ============================================ */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.sticky-player.visible {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-equalizer {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 16px;
}

.mini-equalizer span {
    width: 3px;
    background: var(--color-primary);
    border-radius: 1px;
    animation: eq-bar 0.6s ease-in-out infinite;
}

.mini-equalizer span:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.mini-equalizer span:nth-child(2) {
    height: 12px;
    animation-delay: 0.1s;
}

.mini-equalizer span:nth-child(3) {
    height: 8px;
    animation-delay: 0.2s;
}

.sticky-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.sticky-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.sticky-play-btn:hover {
    transform: scale(1.1);
}

.sticky-play-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

.sticky-play-btn .icon-pause {
    display: none;
}

.sticky-play-btn.playing .icon-play {
    display: none;
}

.sticky-play-btn.playing .icon-pause {
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero {
        padding: 80px 15px 40px;
    }

    .hero-content {
        gap: 35px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .now-playing {
        padding: 10px 18px;
    }

    .player-ring {
        width: 150px;
        height: 150px;
    }

    .play-button {
        width: 120px;
        height: 120px;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }

    .volume-slider {
        width: 100px;
    }

    .section {
        padding: 60px 0;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }
}

/* Very Small Screens */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .player-ring {
        width: 130px;
        height: 130px;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .play-button svg {
        width: 40px;
        height: 40px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}