* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0e0e0e;
    color: #fff;
    overflow-x: hidden;
    position: relative;
  }

  .imagen-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
  }

  .imagen-fondo img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: blur(5px) brightness(0.5);
  }

  header {
    
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
  }

  header h1 {
    color: #ffd700;
    font-size: 2em;
  }

  nav {
    background: rgba(218, 208, 208, 0.123);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a {
    color: white;
    padding: 10px 90px;
    text-decoration: none;
    transition: background 0.10s;
  }

  nav a:hover {
    background-color: #444;
  }

  .hero {
    background-image: url('https://cdn.wallpapersafari.com/58/11/iCz43m.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero h2 {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
  }

  .content {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
  }

  .content h3 {
    margin-bottom: 10px;
    color: #ffd700;
  }

  .content p {
    line-height: 1.6;
  }

  footer {
    background: #020202;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    color: #888;
  }

  .noticias {
    padding: 30px 20px;
    
    max-width: 1195px;
    margin: 40px auto;
    background-color: rgba(30, 30, 30, 0.116);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  }

  .noticias h3 {
    color: #ffd700;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8em;
  }

  .noticia {
    display: flex;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.171);
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .noticia:hover {
    transform: scale(1.02);
  }

  .noticia img {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }

  .noticia .texto {
    padding: 15px;
    color: #fff;
  }

  .noticia .texto h4 {
    margin-bottom: 8px;
    color: #ffd700;
  }

  @media (max-width: 768px) {
    .noticia {
      flex-direction: column;
      text-align: center;
    }

    .noticia img {
      width: 100%;
      height: auto;
    }
  }

  .redes-sociales {
    margin-bottom: 10px;
  }

  .redes-sociales a {
    color: #ffd700;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
  }

  .redes-sociales a:hover {
    color: #fff;
    transform: scale(1.2);
  }

  footer p {
    font-size: 14px;
    color: #aaa;
  }
 
  /* contenedor video */
  
  .contenedor-video {
    text-align: center;
    margin: 40px 0;
  }

  .btn-ver-video {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-ver-video:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }

  .oculto {
    display: none;
  }

  video {
    width: 80%;
    max-width: 800px;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  }