:root {
    --verde: #0f3d2e;
    --amarillo: #ffd600;
    --blanco: #ffffff;
  }
  
  body.welcome-screen {
    background-color: var(--verde);
    font-family: 'Fredoka', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100vh;
    margin: 0;
  }
  
  /* Intro*/

  .intro-container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  
  .club-name {
    font-size: 7rem;   /* corregido */
    font-weight: bold;
    color: var(--amarillo);
    text-transform: uppercase; /* opcional para más impacto */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4); /* sombra suave */
  }
  
  .club-subtitle {
    font-size: 1.8rem;
    color: var(--blanco);
    margin-bottom: 25px;
  }
  
  /* Botón */
  .btn-custom {
    background-color: var(--amarillo);
    color: var(--verde);
    border: 2px solid var(--amarillo);
    padding: 14px 28px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }
  
  .btn-custom:hover {
    background-color: var(--verde);
    color: var(--amarillo);
    border: 2px solid var(--verde);
    transform: scale(1.05);
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 214, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 214, 0, 0); }
  }
  
  /* Video ocupa toda la pantalla*/
  .video-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--verde);
    justify-content: center;
    align-items: center;
    z-index: -1; /* detrás del contenido */
  }
  
  #introVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Tablet (≤768px) */
  @media (max-width: 768px) {
    .club-name {
      font-size: 5rem;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }
    .btn-custom {
      font-size: 1.1rem;
      padding: 12px 24px;
    }
  }
  
  /* Celular (≤576px) */
  @media (max-width: 576px) {
    .club-name {
      font-size: 3.5rem;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    }
    .club-subtitle {
      font-size: 1.2rem;
    }
    .btn-custom {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }