:root {
    /* Color Palette */
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-light: #ffffff;
    --accent-primary: #cf2027; /* Official UNLa Red */
    --accent-hover: #a8171d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dark: #333333;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
}

.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    background-color: #111;
    background-image: url('assets/ed-argumedo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevent interacting with iframe */
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.5) 0%, rgba(10, 10, 15, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo-img {
    max-width: 250px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-slogan {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.cta-button {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */
.social-links {
    position: absolute;
    top: 2rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid white;
    border-radius: 50%;
    color: white !important;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    background-color: rgba(0, 0, 0, 0.2);
}

.social-icon i {
    color: #ffffff !important;
}

.social-icon:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(207, 32, 39, 0.5);
    color: white;
}

/* ==========================================================================
   PLAYER SECTION
   ========================================================================== */
.player-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-darker);
    border-top: 4px solid var(--accent-primary);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.6);
}

.player-container {
    padding: 0 1rem;
    max-width: 1400px;
}

.player-glass {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-primary);
    text-transform: uppercase;
}

.player-info h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.player-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.control-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.control-btn.playing {
    background: var(--bg-light);
    color: var(--bg-darker);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.volume-control i {
    font-size: 1.2rem;
}

input[type=range] {
    -webkit-appearance: none;
    width: 120px;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* Above the fixed player */
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 3px solid white;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   SIDE NAVIGATION
   ========================================================================== */
.side-nav {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 50;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.side-nav li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.nav-label {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-right: 0.8rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    white-space: nowrap;
    pointer-events: none;
    background-color: rgba(0,0,0,0.6);
    padding: 4px 10px;
    border-radius: 4px;
}

.nav-line {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    border-radius: 2px;
}

.side-nav li a:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

.side-nav li a:hover .nav-line {
    width: 45px;
    background-color: var(--accent-primary);
}

/* ==========================================================================
   PROGRAMMING SECTION
   ========================================================================== */
.programming-section {
    padding: 6rem 0 2rem;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(207, 32, 39, 0.2);
    border-color: rgba(207, 32, 39, 0.3);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-time {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.program-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(207, 32, 39, 0.9), rgba(0,0,0,0));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.program-card:hover .program-overlay {
    bottom: 0;
    opacity: 1;
}

.btn-more {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-darker);
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-primary);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    color: var(--accent-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem 2.5rem;
    overflow-y: auto;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-time {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(207, 32, 39, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .modal-body {
        padding: 2rem 1.5rem;
    }
    .modal-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
    padding: 6rem 0 4rem; /* Reduced padding since we now have a black footer */
    background-color: transparent; /* Removed the dark overlay */
    color: var(--text-primary);
    position: relative; /* ensure it scrolls over the fixed background */
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--accent-primary);
}

.section-title::before {
    left: -70px;
}

.section-title::after {
    right: -70px;
}

.section-title span {
    color: var(--accent-primary);
}

.instagram-feed-container {
    min-height: 400px;
}

.snap-desktop {
    display: block;
    width: 100%;
}

.snap-mobile {
    display: none;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   PROGRAM INTERNAL PAGES
   ========================================================================== */
.program-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(17,17,17,0.7), rgba(18,18,18,0.9));
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.program-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.program-header .program-time {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(207, 32, 39, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(207, 32, 39, 0.3);
}

.program-section {
    padding: 4rem 0;
}

/* Sección de Sesiones Radio UNLa (home) */
.sesiones-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(18,18,18,0.98) 100%);
    position: relative;
    z-index: 1;
}

.youtube-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 32, 39, 0.3);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-title {
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 600;
}

.btn-playlist {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    margin: 0 auto 4rem auto;
}

.btn-playlist:hover {
    background-color: var(--accent-secondary);
    transform: scale(1.05);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: rgba(207, 32, 39, 0.3);
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #222;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Quill.js puede generar estilos inline con color negro.
   Forzamos texto claro en todos los elementos del cuerpo de la noticia
   dentro de la card (fondo oscuro). */
.news-body *,
.news-body p,
.news-body span,
.news-body li,
.news-body h1,
.news-body h2,
.news-body h3,
.news-body strong,
.news-body em,
.news-body b,
.news-body i {
    color: var(--text-secondary) !important;
    background-color: transparent !important;
}

/* Botón "Leer nota completa" en cards y modal.
   Los selectores compuestos y a:visited son necesarios para sobreescribir
   el color violeta que los navegadores aplican a los links visitados. */
a.news-read-more,
a.news-read-more:link,
a.news-read-more:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    padding: 8px 16px;
    background: rgba(207, 32, 39, 0.15);
    border: 1.5px solid #cf2027;
    color: #cf2027 !important;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
}
a.news-read-more:hover,
a.news-read-more:focus {
    background: #cf2027 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Generic Modal */
.generic-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.generic-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-box {
    background-color: var(--bg-dark);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.generic-modal.active .modal-content-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: var(--accent-primary);
    transform: scale(1.1) rotate(90deg);
}

.modal-img-container {
    width: 100%;
    height: 300px;
    background: #111;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text-content {
    padding: 2rem;
}

.modal-date {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.no-news {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    grid-column: 1 / -1;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--accent-primary);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .program-header {
        padding: 6rem 0 3rem;
    }
    .program-header h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    padding-bottom: calc(2rem + 90px); /* Add padding to clear the fixed audio player */
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.site-footer p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.8;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(207, 32, 39, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(207, 32, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(207, 32, 39, 0);
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
    
    .player-glass {
        padding: 0.8rem 0;
    }
    
    .player-info h2 {
        font-size: 1rem;
    }
    
    .live-indicator {
        padding: 0.3rem 0;
        margin-bottom: 0;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .snap-desktop {
        display: none;
    }
    .snap-mobile {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .social-links {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .side-nav {
        display: none;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 110px;
        right: 15px;
        font-size: 30px;
        border-width: 2px;
    }

    .hero-slogan {
        font-size: 0.9rem;
    }
    
    .hero-video {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::before,
    .section-title::after {
        width: 30px;
    }
    
    .section-title::before {
        left: -40px;
    }
    
    .section-title::after {
        right: -40px;
    }
    
    .hero-logo-img {
        max-width: 200px;
    }
}
