

        body {
             background-color: #1a1a1a;
            margin: 0;
            padding: 0;
            background: radial-gradient(circle at top, #111 0%, #000 100%);
            font-family: "Roboto Condensed", sans-serif;
            text-align: center;
            background-color: #1a1a1a;
            color: #e0e0e0;
             font-family: "Roboto Condensed", sans-serif;
            min-height: 100vh;
            padding-top: 100px;
        }

           .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #252525;
            padding: 15px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: grid;
            grid-template-columns: auto 1fr 200px;
            gap: 30px;
            align-items: center;
            border-top: 3px solid #CC0000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            max-width: 100%;
            height: auto;
            max-height: 50px;
            object-fit: contain;
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            background-color: #000000;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #666666;
        }

        .header-btn {
            padding: 10px 20px;
            background-color: #2d2d2d;
            color: #e0e0e0;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-btn::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            transition: width 0.3s ease;
        }

        .header-btn:hover {
            transform: translateX(3px);
            background-color: #353535;
        }

        .header-btn:hover::before {
            width: 6px;
        }

        .header-btn.activo-header {
            background-color: #3a3a3a;
            transform: translateX(3px);
        }

        .header-btn.activo-header::before {
            width: 6px;
        }

        .header-btn-1::before {
            background-color: #CC0000;
        }

        .header-btn-2::before {
            background-color: #CC0000;
        }

        .header-btn-3::before {
            background-color: #CC0000;
        }

        .header-btn-4::before {
            background-color: #CC0000;
        }

        .header-play {
            width: 0;
            height: 0;
            border-left: 10px solid #CC0000;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            flex-shrink: 0;
        }

        .header-btn-2 .header-play {
            border-left-color: #CC0000;
        }

        .header-btn-3 .header-play {
            border-left-color: #CC0000;
        }

        .header-btn-4 .header-play {
            border-left-color: #CC0000;
        }

        .menu-container {
            position: relative;
            display: flex;
            justify-content: flex-end;
        }

        .menu-btn {
            padding: 10px 20px;
            background-color: #2d2d2d;
            color: #e0e0e0;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .menu-btn:hover {
            background-color: #353535;
        }

        .menu-icon {
            width: 20px;
            height: 2px;
            background-color: #e0e0e0;
            position: relative;
            transition: all 0.3s ease;
        }

        .menu-icon::before,
        .menu-icon::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background-color: #e0e0e0;
            transition: all 0.3s ease;
        }

        .menu-icon::before {
            top: -6px;
        }

        .menu-icon::after {
            top: 6px;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background-color: #2d2d2d;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            min-width: 180px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 12px 20px;
            color: #e0e0e0;
            cursor: pointer;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dropdown-item:hover {
            background-color: #353535;
            border-left-color: #3b82f6;
            padding-left: 23px;
        }

        .dropdown-item:nth-child(2):hover {
            border-left-color: #10b981;
        }

        .dropdown-item:nth-child(3):hover {
            border-left-color: #f59e0b;
        }

        .dropdown-item:nth-child(4):hover {
            border-left-color: #ef4444;
        }

        @media (min-width: 769px) {
            .btn-menu-mobile {
                display: none !important;
            }
        }

        .main-content {
            padding: 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }

        .columna-8 {
            background-color: #252525;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .tres-columnas {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .cuatro-columnas {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
            grid-column: 1 / -1;
        }

        .columna-4 {
            background-color: #252525;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .boton {
            width: 100%;
            padding: 15px 20px;
            background-color: #2d2d2d;
            color: #e0e0e0;
            border: 1px solid #CC0000;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .boton::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            transition: width 0.3s ease;
        }

        .boton:hover {
            transform: translateX(3px);
            background-color: #353535;
        }

        .boton:hover::before {
            width: 8px;
        }

        .boton.activo {
            background-color: #3a3a3a;
            transform: translateX(3px);
        }

        .boton.activo::before {
            width: 8px;
        }

        .boton-1::before {
            background-color: #3b82f6;
        }

        .boton-2::before {
            background-color: #10b981;
        }

        .boton-3::before {
            background-color: #f59e0b;
        }

        .boton-4::before {
            background-color: #ef4444;
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 12px solid #3b82f6;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            flex-shrink: 0;
        }

        .boton-2 .play-icon {
            border-left-color: #10b981;
        }

        .boton-3 .play-icon {
            border-left-color: #f59e0b;
        }

        .boton-4 .play-icon {
            border-left-color: #ef4444;
        }

        .columna-item {
            background-color: #2d2d2d;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
            transition: all 0.3s ease;
        }

        .columna-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }

        .columna-item:nth-child(2) {
            border-left-color: #10b981;
        }

        .columna-item:nth-child(3) {
            border-left-color: #f59e0b;
        }

        .columna-item h3 {
            color: #f0f0f0;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .columna-item p {
            font-size: 14px;
        }

        .columna-item-cuatro {
            background-color: #2d2d2d;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
            
            transition: all 0.3s ease;
        }

        .columna-item-cuatro:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }

        .columna-item-cuatro:nth-child(1) {
            border-left-color: #CC0000;
            border-right: 4px solid #CC0000;
        }

        .columna-item-cuatro:nth-child(2) {
             border-left-color: #CC0000;
            border-right: 4px solid #CC0000;
        }

        .columna-item-cuatro:nth-child(3) {
             border-left-color: #CC0000;
            border-right: 4px solid #CC0000;
        }

        .columna-item-cuatro:nth-child(4) {
             border-left-color: #CC0000;
            border-right: 4px solid #CC0000;
        }

        .columna-item-cuatro h3 {
            color: #f0f0f0;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .columna-item-cuatro p {
            font-size: 14px;
        }

        h1 {
            color: #f0f0f0;
            margin-bottom: 20px;
        }

        p {
            line-height: 1.6;
            color: #b0b0b0;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 90px;
            }
            
            .header {
                grid-template-columns: 1fr auto;
                gap: 15px;
                padding: 15px;
            }
            
            .logo {
                justify-content: flex-start;
            }
            
            .logo-img {
                max-height: 40px;
            }
            
            .header-buttons {
                display: none;
            }
            
            .menu-container {
                justify-content: flex-end;
            }
            
            .dropdown-menu {
                min-width: 200px;
            }
            
            .main-content {
                padding: 10px;
            }
            
            .container {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .columna-8,
            .columna-4 {
                width: 100%;
            }
            
            .tres-columnas {
                grid-template-columns: 1fr;
            }
            
            .cuatro-columnas {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            body {
                padding-top: 120px;
            }
            
            .header {
                grid-template-columns: 150px 1fr 150px;
                padding: 12px 20px;
            }
            
            .logo-img {
                max-height: 45px;
            }
            
            .header-buttons {
                gap: 8px;
                padding: 8px;
            }
            
            .header-btn {
                padding: 8px 15px;
                font-size: 13px;
            }
            
            .cuatro-columnas {
                grid-template-columns: repeat(2, 1fr);
            }
                }
            #player-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            background-color: #000;
            overflow: hidden;
            }

#vivo {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #CC0000;
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  font-size: 14px;
}

#reloj {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  z-index: 10;
  font-size: 14px;
}

#zocalo {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 8px 0;
  z-index: 10;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-content span {
  padding: 0 50px;
  color: white;
  font-size: 16px;
}

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

#preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-image: url('preload-image2.png');
  background-size: cover;
  background-position: center;
  z-index: 9999;
  display: none;
}

#preloader.active {
  display: block;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

#player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  #vivo {
    font-size: 12px;
    padding: 4px 10px;
    top: 5px;
    left: 5px;
  }
  
  #reloj {
    font-size: 12px;
    padding: 4px 10px;
    top: 5px;
    right: 5px;
  }
  
  #zocalo {
    bottom: 0px;
    padding: 0px 0;
  }
  
  .ticker-content span {
    font-size: 14px;
    padding: 0 30px;
  }
  
  #player {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  #vivo {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  #reloj {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  #zocalo {
    bottom: 0px;
    padding: 6px 0;
  }
  
  .ticker-content span {
    font-size: 12px;
    padding: 0 20px;
  }
}

/* === FOOTER === */
.footer {
  background: #121212;
  color: #ccc;
  padding: 40px 20px 10px;
  border-top: 2px solid #e63946;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.05rem;
  border-left: 4px solid #e63946;
  padding-left: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  border-top: 1px solid #333;
  margin-top: 24px;
  color: #999;
}
/* === ENLACES === */
a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
}
a:hover {
  color: #CCCCCC;
  text-decoration: none;
  font-weight: bold;
}