audio::-webkit-media-controls-timeline { display: none; }

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

:root {
    --color-primary: #f806dc;
    --color-secondary: #12020a;
    --color-accent: #00eeff;
    --color-bg: #faf8f5;
}

body {
    background: var(--color-bg);
    color: #333;
    line-height: 1.6;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--color-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.current-date { font-weight: 500; }

.live-buttons {
    display: flex;
    gap: 15px;
}

.btn-live {
    background: rgba(255,255,255,0.15);
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-live:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.main-header {
    background: white;
    padding: 25px 0;
    border-bottom: 3px solid var(--color-primary);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-section img {
    height: 70px;
    width: auto;
}

.logo-text h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text p {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.header-search {
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== NAV ===== */
nav {
    background: var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ===== LIVE BAR ===== */
.live-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.live-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.live-indicator {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(139, 0, 66, 0.3);
    animation: pulseGlow 2s infinite;
}

.live-indicator i {
    font-size: 0.8rem;
    animation: blink 1s step-start infinite;
}

.live-text {
    letter-spacing: 1px;
}

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

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(139, 0, 66, 0.5); }
}

.media-toggle-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-media {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-media i {
    font-size: 1.1rem;
}

.btn-tv {
    background: var(--color-secondary);
    color: white;
    border: 2px solid var(--color-secondary);
}

.btn-tv:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 2, 10, 0.3);
}

.btn-tv.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(139, 0, 66, 0.4);
}

.btn-radio {
    background: white;
    color: var(--color-secondary);
    border: 2px solid #e0e0e0;
}

.btn-radio:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-radio.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.4);
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.main-column {
    min-width: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.section-header h2 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    flex: 1;
}

.section-header::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--color-accent);
}

/* ===== STREAMING CONTAINER ===== */
.streaming-container {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

#video-player-wrapper {
    width: 100%;
}

.video-js {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.video-js .vjs-big-play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 0 30px rgba(139, 0, 66, 0.5);
    transition: all 0.3s ease;
    margin: 0; cursor: pointer; z-index: 2;
}

.video-js.vjs-has-started .vjs-big-play-button,
.video-js.vjs-playing .vjs-big-play-button,
.video-js.vjs-seeking .vjs-big-play-button,
.video-js.vjs-waiting .vjs-big-play-button { display: none !important; }

.video-js.vjs-paused:not(.vjs-has-started) .vjs-big-play-button { display: flex !important; }

.video-js .vjs-big-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
    background: var(--color-accent) !important;
}

.video-js .vjs-control-bar {
    background: linear-gradient(to top, rgba(18, 2, 10, 0.9), transparent);
    height: 50px; padding: 0 10px;
    border-radius: 0 0 8px 8px;
}

.video-js .vjs-play-progress { background: var(--color-primary); }
.video-js .vjs-slider { background: rgba(255, 255, 255, 0.3); }
.video-js .vjs-volume-level { background: var(--color-primary); }

/* ===== RADIO PLAYER ===== */
#radio-player-wrapper { display: none; width: 100%; border-radius: 8px; overflow: hidden; }

.radio-visual {
    background: linear-gradient(135deg, #1a0a2e, #2d1445, var(--color-secondary));
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.radio-visual::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.2) 0%, transparent 70%);
    animation: radioGlow 2s ease-in-out infinite;
}

@keyframes radioGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.radio-particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(0, 191, 165, 0.7);
    animation: floatParticle linear infinite;
}

.radio-particle:nth-child(1) { left: 10%; animation-duration: 4s; }
.radio-particle:nth-child(2) { left: 25%; animation-duration: 5s; animation-delay: 0.5s; }
.radio-particle:nth-child(3) { left: 40%; animation-duration: 3.5s; animation-delay: 1s; }
.radio-particle:nth-child(4) { left: 60%; animation-duration: 4.5s; animation-delay: 1.5s; }
.radio-particle:nth-child(5) { left: 75%; animation-duration: 3s; animation-delay: 0.8s; }
.radio-particle:nth-child(6) { left: 90%; animation-duration: 5.5s; animation-delay: 0.2s; }

@keyframes floatParticle {
    0% { bottom: -10px; opacity: 0; transform: scale(0.5); }
    20% { opacity: 1; }
    80% { opacity: 0.5; }
    100% { bottom: 110%; opacity: 0; transform: scale(1.5); }
}

.radio-icon-wrapper { position: relative; z-index: 2; }

.radio-icon-pulse {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.7);
    animation: iconPulse 1.5s ease-in-out infinite;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.radio-icon-pulse img { width: 75px; height: 75px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255,255,255,0.5)); }

@keyframes iconPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(0, 191, 165, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0); }
}

.radio-info { position: relative; z-index: 2; }

.radio-title {
    color: var(--color-accent);
    font-size: 1.6rem; font-weight: 800; letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 191, 165, 0.6);
    margin-bottom: 5px;
}

.radio-subtitle { color: rgba(255,255,255,0.7); font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; }

.equalizer { display: flex; align-items: flex-end; gap: 5px; height: 50px; position: relative; z-index: 2; }

.eq-bar {
    width: 8px; border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, var(--color-primary), var(--color-accent));
    animation: eqBounce ease-in-out infinite alternate;
    min-height: 5px;
}

.eq-bar:nth-child(1) { animation-duration: 0.6s; }
.eq-bar:nth-child(2) { animation-duration: 0.8s; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { animation-duration: 0.5s; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { animation-duration: 0.7s; animation-delay: 0.05s; }
.eq-bar:nth-child(5) { animation-duration: 0.9s; animation-delay: 0.15s; }
.eq-bar:nth-child(6) { animation-duration: 0.6s; animation-delay: 0.25s; }
.eq-bar:nth-child(7) { animation-duration: 0.75s; animation-delay: 0.3s; }
.eq-bar:nth-child(8) { animation-duration: 0.55s; animation-delay: 0.1s; }

@keyframes eqBounce { 0% { height: 8px; } 100% { height: 45px; } }
.eq-bar.paused { animation-play-state: paused; height: 8px; }

.audio-hidden { width: 100%; margin-top: 15px; position: relative; z-index: 2; border-radius: 30px; accent-color: var(--color-accent); }

.sound-waves { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }

.wave-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 191, 165, 0.3);
    animation: waveExpand 3s ease-out infinite;
}

.wave-ring:nth-child(1) { width: 100px; height: 100px; }
.wave-ring:nth-child(2) { width: 150px; height: 150px; animation-delay: 0.8s; }
.wave-ring:nth-child(3) { width: 200px; height: 200px; animation-delay: 1.6s; }

@keyframes waveExpand {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.radio-vol-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 8px 16px;
}

.vol-icon {
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    width: 24px;
    text-align: center;
    transition: opacity 0.2s;
}

.vol-icon:hover { opacity: 0.7; }

.vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 130px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.vol-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
}

.vol-pct {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    min-width: 36px;
    text-align: right;
}

/* ===== PROGRAMACIÓN GALLERY ===== */
.programacion-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

#gallery {
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #111;
}

.gallery-container { display: flex; transition: transform 0.5s ease-in-out; }
.gallery-item { min-width: 100%; box-sizing: border-box; position: relative; }

.gallery-item img {
    width: 100%; height: auto;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item img:hover { filter: brightness(1.05) contrast(1.05); transform: scale(1.01); }
.expandable-image { position: relative; }

.expandable-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px; right: 20px;
    background: var(--color-primary);
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid white;
}

.gallery-item:hover .expandable-image::after { opacity: 1; transform: scale(1.1); }

.gallery-info {
    margin-top: 20px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.gallery-info h4 {
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-info h4 i {
    color: var(--color-accent);
}

.gallery-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== MODAL ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.image-modal.active { display: flex; justify-content: center; align-items: center; animation: fadeIn 0.3s ease; }

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px; max-height: 90vh;
    display: flex; justify-content: center; align-items: center;
    margin: auto;
}

.modal-image {
    width: auto; height: auto;
    max-width: 95%; max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.modal-caption {
    position: absolute;
    bottom: -70px; left: 50%;
    transform: translateX(-50%);
    color: white; text-align: center;
    font-size: 1.1rem;
    background: var(--color-primary);
    padding: 12px 35px;
    border-radius: 30px;
    max-width: 90%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.modal-close {
    position: absolute;
    top: -45px; right: 0;
    color: white;
    font-size: 1.5rem; font-weight: bold;
    cursor: pointer;
    background: var(--color-primary);
    border-radius: 50%;
    width: 50px; height: 50px;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 2px solid white;
    z-index: 10000;
}

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

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-live-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-live-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-live-btn.tv { background: var(--color-primary); }
.sidebar-live-btn.radio { background: var(--color-secondary); }

.sidebar-live-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-time {
    background: var(--color-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
}

.schedule-info h5 {
    color: var(--color-secondary);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.schedule-info p {
    color: #888;
    font-size: 0.8rem;
}

.social-icons-widget {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn.fb { background: #1877f2; }
.social-btn.yt { background: #ff0000; }
.social-btn.tt { background: #000; }
.social-btn.gp { background: #34a853; }

/* ===== FOOTER ===== */
footer {
    background: var(--color-secondary);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .main-layout {
grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hamburger {
display: flex;
    }

    .nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--color-secondary);
flex-direction: column;
    }

    .nav-links.active {
display: flex;
    }

    .logo-text h1 {
font-size: 1.5rem;
    }

    .logo-text p {
font-size: 0.7rem;
    }

    .page-header h1 {
font-size: 1.8rem;
    }

    .section-header h2 {
font-size: 1.4rem;
    }

    .live-bar-content {
flex-direction: column;
align-items: stretch;
    }

    .live-indicator {
justify-content: center;
    }

    .media-toggle-buttons {
width: 100%;
justify-content: center;
    }

    .btn-media {
flex: 1;
justify-content: center;
font-size: 0.85rem;
padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .logo-section img {
height: 50px;
    }

    .top-bar-content {
flex-direction: column;
gap: 8px;
    }

    .page-header {
padding: 30px 20px;
    }

    .page-header h1 {
font-size: 1.5rem;
    }
}