body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
  }
  
  /* Título principal */
  h1 {
    color: #ff6b1a;
  }
  
  /* Subtítulo */
  h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
  }
  
  /* Texto base */
  p {
    color: #cfcfcf;
  }
  
  /* Enlaces del navbar */
  nav a {
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ff6b1a;
  }
  
  /* Botones principales de sección */
  .tournament-card {
    background: linear-gradient(135deg, #ff6b1a, #ff914d);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s;
    background-size: 200% 200%;
    background-position: left center;
    box-shadow: 0 6px 15px rgba(255, 107, 26, 0.4);
    border: none;
  }
  
  /* Efecto al pasar el mouse */
  .tournament-card:hover {
    transform: translateY(-4px) scale(1.02);
    background-position: right center;
    box-shadow: 0 12px 25px rgba(255, 107, 26, 0.5);
  }
  
  /* H2 dentro del botón */
  .tournament-card h2 {
    font-size: 1.3rem;
    margin: 0;
    color: white;
  }
  
  
  /* Fondo del contenedor principal */
  .container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Ajuste responsive para móviles */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.5rem;
    }
  
    .tournament-card {
      padding: 1.5rem;
    }
  }
  
  /* Animación de bienvenida */
  .redirect-animation-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0042ff 0%, #ff6b1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.5s;
  }
  .redirect-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px #0004;
    animation: popIn 0.7s cubic-bezier(.68,-0.55,.27,1.55);
    position: relative;
    overflow: hidden;
  }
  .redirect-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: spin 1.2s linear infinite;
    filter: drop-shadow(0 0 10px #ff6b1a88);
  }
  .redirect-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
    animation: fadeInText 1.2s;
    text-shadow: 0 2px 12px #0008;
  }
  @keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
  }
  @keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
  }
  .redirect-animation-bg.fade-out {
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
  }
  
  /* Asegúrate de que los colores y estilos coincidan con el resto de la plataforma */
