  @font-face {
      font-family: 'FuturaCondensed';
      src: url('../fonts/FuturaLT-Condensed_1.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
  }

  body,
  html {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: 'FuturaCondensed', sans-serif;

  }


  .content {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-top: 0px;
      min-height: 1550px;
  }

  .banner {
      width: 90%;
      max-width: 1200px;
  }

  .buttons {
      display: flex;
      justify-content: center;
      gap: 2em ;
      flex-wrap: wrap;
      margin-top: -40px;
  }

  .buttons img {
      width: 100%;
      max-width: 150px;
      cursor: pointer;
  }

  .buttons img:hover {
      transform: scale(1.1);

  }

  .promocional-text {
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      width: 900px;
      font-size: 2.5rem;
      margin: 70px auto;
  }
@media (max-width: 900px) {
  .promocional-text {
    width: 95vw;
    font-size: 2rem;
    padding: 18px;
  }
}
@media (max-width: 600px) {
  .promocional-text {
    width: 98vw;
    font-size: 1.2rem;
    padding: 10px;
  }
}

  .test-button-container {
      display: flex;
      justify-content: flex-end;
      padding-right: 20px;
      /* Ajusta según sea necesario */
      text-align: right;

  }

  .test-button-container img {
      cursor: pointer;
      width: 7%;
      padding-top: 5%;
      position: fixed;
      top: 70%;
      left: 91%;
      z-index: 1000;
  }

  .test-button-container img:hover {
      transform: scale(1.1);
  }

  .footer {
      position: relative;
      width: 100%;
      text-align: center;
  }

  .footer-img {
      width: 100%;
  }

  .footer-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.2rem;
      color: white;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-family: 'FuturaCondensed', sans-serif;
  }

  .footer-columns-container {
      position: absolute;
      width: 100%;
      bottom: 50px;
      /* Ajusta según sea necesario */
      display: flex;
      justify-content: right;
      z-index: 2;
  }

  .footer-columns {
      display: flex;
      justify-content: space-around;
      width: 62%;
      max-width: 1200px;
      padding: 20px;
      border-radius: 10px;
      color: black;
  }

  .footer-column {
      flex: 1;
      text-align: left;
      padding: 10px;
  }

  .footer-column h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      font-family: 'FuturaCondensed', sans-serif;
  }

  .footer-column p,
  .footer-column a {
      font-size: 1rem;
      color: black;
      text-decoration: none;
      display: block;
      margin-bottom: 5px;
      font-family: 'FuturaCondensed', sans-serif;
  }

  .footer-column a:hover {
      text-decoration: underline;
  }

  /* Ajustes responsivos */
  @media (max-width: 768px) {
      .footer-columns {
          flex-direction: column;
          text-align: center;
          width: 90%;
      }

      .footer-column {
          text-align: center;
      }
  }

  .pergamino-container {
      position: absolute;
      top: -64px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      display: flex;
      justify-content: center;
      z-index: 2;
  }

  .pergamino-img {
      width: 100%;
      max-width: 900px;
      height: auto;
      display: block;
      transition: transform 0.2s;
      position: relative;
      z-index: 9999;
      margin: -120px auto;
  }
  .pergamino-img:hover {
      animation: pulse 0.6s;
  }
  .pergamino-img:hover::after {
      content: '';
      position: absolute;
      top: 0;
      left: -60%;
      width: 120%;
      height: 100%;
      pointer-events: none;
      z-index: 999;
      background: linear-gradient(120deg, rgba(255,215,0,1) 0%, rgba(255,215,0,1) 40%, rgba(255,255,180,1) 50%, rgba(255,215,0,1) 60%, rgba(255,215,0,1) 100%);
      opacity: 0.85;
      animation: flash-gold-pergamino 0.6s linear;
  }
  @keyframes pulse {
      0% {
          transform: scale(1);
      }
      40% {
          transform: scale(1.12);
      }
      60% {
          transform: scale(0.97);
      }
      100% {
          transform: scale(1);
      }
  }
  @keyframes flash-gold-pergamino {
      0% {
          left: -60%;
          opacity: 0.85;
      }
      60% {
          left: 60%;
          opacity: 0.85;
      }
      80% {
          left: 100%;
          opacity: 0.5;
      }
      100% {
          left: 120%;
          opacity: 0;
      }
  }

  .boton-apuestas-virtuales {
      position: relative;
      overflow: hidden;
  }
  .boton-apuestas-virtuales:hover::after {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(200,200,200,0.7) 50%, rgba(255,255,255,0) 100%);
      animation: shine 0.7s;
  }
  @keyframes shine {
      0% { left: -75%; }
      100% { left: 125%; }
  }

  .footer-wrapper {
    position: relative;
    width: 100vw;
    background: #000;
    overflow: hidden;
  }
  .pergamino-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
  }
  .pergamino-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    position: relative;
    z-index: 9999;
    margin: -120px auto;
  }
  .footer {
    position: relative;
    width: 100vw;
    background: #000;
    color: #fff;
    z-index: 1;
    box-sizing: border-box;
    padding-top: 90px; /* Altura del pergamino para que el contenido no lo tape */
  }
  @media (max-width: 900px) {
    .pergamino-img {
      max-width: 98vw;
    }
    .footer {
      padding-top: 60px;
    }
  }

  @media (max-width: 768px) {
      .banner {
          width: 95%;
      }

      .buttons {
          gap: 20px;
      }

      .buttons img {
          width: 64%;
          max-width: 120px;
      }
      
      .test-button-container img {
          width: 12%;
          top: 75%;
          left: 85%;
      }
  }

  @media (max-width: 480px) {
      .content {
          padding-top: 30px;
      }

      .buttons {
          flex-direction: row;
          align-items: center;
          gap: 15px;
      }

      .buttons img {
          width: 60%;
          max-width: 100px;
      }
      
      .test-button-container img {
          width: 15%;
          top: 80%;
          left: 80%;
      }
  }
  
  @media (max-width: 360px) {
      .test-button-container img {
          width: 18%;
          top: 85%;
          left: 75%;
      }
      
      .buttons {
          flex-direction: row;
          align-items: center;
          gap: 8px;
          margin-top: -50px;
      }
      
      .buttons img {
          width: 25%;
          max-width: 80px;
      }
  }
  
  @media (max-width: 320px) {
      .buttons {
          flex-direction: row;
          align-items: center;
          gap: 0px;
          margin-top: -40px;
      }
      
      .buttons img {
          width: 62%;
          max-width: 103px;
      }
      
      .test-button-container img {
          width: 20%;
          top: 85%;
          left: 75%;
      }
  }

@media (max-width: 600px) {
  .pergamino-img {
    padding-bottom: 75px;
  }
}

.footer-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 18px auto 0 auto;
  max-width: 260px;
  width: 100%;
}
.footer-logo-item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo-item img {
  max-width: 60px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .footer-logos {
    flex-direction: column;
    gap: 12px;
    max-width: 120px;
  }
  .footer-logo-item img {
    max-width: 60px;
  }
}

.footer-logos-grid {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 340px;
  margin: 18px auto 0 auto;
  gap: 32px;
}
.footer-logo-grid-item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo-grid-item img {
  max-width: 60px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .footer-logos-grid {
    max-width: 220px;
    flex-direction: row !important;
    gap: 18px;
  }
  .footer-logo-grid-item img {
    max-width: 40px;
    max-height: 28px;
  }
}

.footer-legal-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 125px;
  margin: 18px auto 0 auto;
  gap: 0;
}
.footer-legal-logo-item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 600px) {
  .footer-legal-logos {
    max-width: 220px;
  }
  .footer-legal-logo-item {
    min-height: 28px;
  }
}

.redes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 24px auto 0 auto;
  width: 100%;
  max-width: 340px;
}
.redes img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.2s;
  display: block;
}
.redes img:hover {
  transform: scale(1.15);
}
@media (max-width: 600px) {
  .redes {
    gap: 12px;
    max-width: 220px;
  }
  .redes img {
    width: 26px;
    height: 26px;
  }
}