@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10; }
  header .logo {
    width: 150px;
    height: auto;
    transition: all 0.3s ease; }
  header.scrolled {
    background-color: rgba(17, 1, 30, 0.76);
    backdrop-filter: blur(10px); }
    header.scrolled .logo {
      width: auto;
      height: 60px; }
  header .btnXtra {
    display: none; }

@media (min-width: 1200px) {
  header .logo {
    width: 300px; }
  header.scrolled a {
    display: flex;
    margin: 1rem;
    opacity: 1; } }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  position: relative;
  color: #D1D1D1;
  font-family: "Trebuchet MS", Verdana, Helvetica, Arial;
  background: #000; }

.cont {
  display: grid;
  position: relative; }

.contIN {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: grid;
  margin: 0 auto;
  padding: 1rem; }

.contVH {
  min-height: 100vh; }

.contBgVideo {
  position: relative;
  overflow: hidden; }
  .contBgVideo > video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.1;
    z-index: -1; }

.break {
  height: 2rem;
  border: none; }

.btnXtra {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  background: linear-gradient(180deg, #AF54DA 0%, #A24ACC 100%);
  box-shadow: 0px 5px 32.4px #4C0A6C; }
  .btnXtra .btnImg {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.31);
    box-shadow: 0px 1px 2px rgba(255, 255, 255, 0.25), inset 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%; }
    .btnXtra .btnImg img {
      width: 22px; }
  .btnXtra .btnTxt {
    display: grid;
    grid-gap: 0.3rem; }
    .btnXtra .btnTxt small {
      color: #E9BAFF; }
    .btnXtra .btnTxt strong {
      text-transform: uppercase; }
  .btnXtra :hover {
    color: #fff; }
    .btnXtra :hover small {
      color: #E9BAFF; }

.btnAnim {
  position: relative;
  overflow: hidden; }

.btnAnim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  transform: translateX(-120%);
  /* 1s animación + 1s pausa = 2s total */
  animation: shine 2s linear infinite;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5; }

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-family: "Racing Sans One", sans-serif;
  font-weight: 300;
  font-style: normal; }
  h1 strong, h2 strong, h3 strong, h4 strong {
    color: #AF54DA; }

p {
  margin-bottom: 1rem;
  line-height: 1.5rem; }

.cXtra {
  color: #AF54DA; }

.txtC {
  text-align: center; }

a.btnXtra:link, a.btnXtra:active {
  color: #fff;
  text-decoration: none; }

a.btnXtra:active, a.btnXtra:hover {
  outline: solid 1px #420062;
  background: linear-gradient(180deg, #903DB7 0%, #660D91 100%);
  box-shadow: 0px 0px 1.5rem rgba(42, 205, 242, 0.5); }

.hFX {
  text-shadow: 0px 0px 43.2px rgba(255, 11, 202, 0.9); }

.cPro {
  color: #FFC525; }

.contScroll {
  width: 100%;
  display: block;
  padding-bottom: 0.5rem;
  overflow-y: auto; }

.contScroll::-webkit-scrollbar {
  width: 3px;
  height: 3px; }

.contScroll::-webkit-scrollbar-thumb {
  background: #AF54DA;
  border-radius: 8px; }

.contScroll::-webkit-scrollbar-track {
  background: #ooo;
  border-radius: 4px; }

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 6rem auto; }
  footer::before {
    content: "";
    width: 40px;
    height: 40px;
    background: url("../img/entorno/footer-end-left.png") no-repeat left center; }
  footer::after {
    content: "";
    width: 40px;
    height: 40px;
    background: url("../img/entorno/footer-end-right.png") no-repeat left center; }

.legal {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem auto; }
  .legal a {
    display: inline-flex;
    justify-content: center; }
    .legal a img {
      max-width: 100%;
      height: 22px; }

.asistente {
  position: fixed;
  left: 0;
  bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem; }

@media (min-width: 800px) {
  .asistente {
    opacity: 0;
    transition: opacity 0.7s; }

  .fuera-vista .asistente {
    opacity: 1;
    transition: opacity 0.7s; } }
/* 1s de movimiento + 1s “quieto” */
@keyframes shine {
  0% {
    transform: translateX(-120%); }
  50% {
    transform: translateX(120%); }
  100% {
    transform: translateX(120%);
    /* mismo valor que en 50% = pausa */ } }
@media (min-width: 800px) {
  .fuera-vista .asistente {
    opacity: 1; } }
.hello {
  display: grid;
  grid-gap: 2rem;
  margin-top: 3rem;
  padding: 1rem; }
  .hello .txt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start; }
    .hello .txt h1 {
      font-size: 2rem; }
      .hello .txt h1 strong {
        color: #AF54DA; }
    .hello .txt a {
      display: none; }
  .hello .media {
    display: flex;
    justify-content: center; }
    .hello .media video {
      max-width: 100%;
      height: auto; }

.animTxt {
  display: inline-block;
  animation-name: animTxt;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  /* Mantiene el estado final después de la animación */
  animation-iteration-count: 1;
  /* Se anima solo una vez */
  animation-timing-function: ease;
  opacity: 0; }

.animTxt2 {
  display: inline-block;
  animation-name: animTxt2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  /* Mantiene el estado final después de la animación */
  animation-iteration-count: 1;
  /* Se anima solo una vez */
  animation-timing-function: ease;
  opacity: 0; }

.delay1 {
  animation-delay: .2s; }

.delay2 {
  animation-delay: 0.5s; }

.delay3 {
  animation-delay: 0.7s; }

.delay4 {
  animation-delay: 0.10s; }

@keyframes animTxt {
  0% {
    opacity: 0;
    transform: translateY(15px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes animTxt2 {
  0% {
    opacity: 0;
    transform: translateX(15px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@media (min-width: 1200px) {
  .hello {
    width: 100%;
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto 0 auto; }
    .hello .txt h1 {
      font-size: 2.5rem; }
    .hello .txt a {
      display: flex; }
    .hello .media {
      justify-content: end; } }
.ad {
  color: #5c407a;
  text-align: end;
  font-size: 0.9rem; }

.casasApostasList {
  display: grid;
  grid-gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none; }
  .casasApostasList li {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    align-items: center;
    border-radius: 0.5rem;
    background: rgba(141, 67, 175, 0.22);
    backdrop-filter: blur(8.6px); }
    .casasApostasList li img {
      max-width: 100px;
      max-height: 40px; }
    .casasApostasList li small {
      position: absolute;
      left: 0.5rem;
      bottom: 0.3rem;
      font-size: 0.7rem;
      opacity: 0.5; }

.btnAposta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  background: linear-gradient(180deg, #AF54DA 0%, #A24ACC 100%);
  box-shadow: 0px 5px 32.4px #4C0A6C; }
  .btnAposta .btnImg {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.31);
    box-shadow: 0px 1px 2px rgba(255, 255, 255, 0.25), inset 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%; }

a.btnAposta:link, a.btnAposta:visited {
  color: #fff;
  text-decoration: none; }

a.btnAposta:active, a.btnAposta:hover {
  outline: solid 1px #420062;
  background: linear-gradient(180deg, #903DB7 0%, #660D91 100%);
  box-shadow: 0px 0px 1.5rem rgba(42, 205, 242, 0.5); }

.animado {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform; }

.animado.visible {
  animation: subir-fade 0.6s forwards; }

@keyframes subir-fade {
  to {
    opacity: 1;
    transform: translateY(0); } }
@media (min-width: 1200px) {
  .casasApostasList li {
    padding: 1rem; }
    .casasApostasList li img {
      max-width: 150px; }
    .casasApostasList li small {
      left: 1rem; } }
.promoList {
  display: grid;
  gap: 1rem;
  justify-content: center; }

.promoItem {
  position: relative;
  min-width: 250px;
  max-width: 350px;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-rows: auto 1fr auto;
  padding: 0.5rem;
  border: solid 1px #AF54DA;
  border-radius: 1rem; }
  .promoItem .img {
    position: relative;
    display: flex;
    justify-content: center;
    aspect-ratio: 3/2;
    border-radius: 0.5rem;
    overflow: hidden; }
    .promoItem .img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    .promoItem .img small {
      position: absolute;
      bottom: -0.3rem;
      background: #000;
      padding: 0.3rem 0.5rem;
      color: #FFC525;
      border-radius: 0.3rem; }
  .promoItem .txt {
    display: grid;
    align-content: start;
    flex: 1; }
  .promoItem .btnAction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    background: #AF54DA; }
    .promoItem .btnAction strong {
      padding: 0.5rem;
      border-radius: 0.3rem;
      background: rgba(0, 0, 0, 0.31);
      box-shadow: 0px 1px 2px rgba(255, 255, 255, 0.25), inset 0px 2px 4px rgba(0, 0, 0, 0.25); }
      .promoItem .btnAction strong small {
        margin-left: 5px;
        font-size: 0.7em; }
    .promoItem .btnAction:visited, .promoItem .btnAction:link {
      color: #fff;
      text-decoration: none; }
    .promoItem .btnAction:hover, .promoItem .btnAction:active {
      background: #543066; }

@media (min-width: 800px) {
  .promoList {
    display: flex;
    gap: 1rem;
    justify-content: center; } }
.quien {
  display: grid;
  grid-gap: 1rem;
  padding: 3rem auto; }
  .quien .media {
    display: flex;
    justify-content: center;
    order: 2; }
    .quien .media video {
      width: 100%; }
    .quien .media img {
      max-width: 100%;
      display: block;
      margin: auto; }
  .quien .datos {
    order: 1; }

.zonaRSS {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }
  .zonaRSS a {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: solid 1px #AF54DA; }
    .zonaRSS a img {
      height: 16px; }
    .zonaRSS a:visited, .zonaRSS a:link {
      color: #fff;
      text-decoration: none; }
    .zonaRSS a:active, .zonaRSS a:hover {
      background: #AF54DA; }

.bgQuien {
  background: url("../img/entorno/bg-patron.webp"); }

.zonaRSSicon {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }
  .zonaRSSicon a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem; }
    .zonaRSSicon a img {
      height: 22px; }
    .zonaRSSicon a:visited, .zonaRSSicon a:link {
      background: #AF54DA; }
    .zonaRSSicon a:active, .zonaRSSicon a:hover {
      background: #72348f; }

@media (min-width: 800px) {
  .quien {
    grid-template-columns: auto 1fr; }
    .quien .media {
      order: 1;
      align-items: flex-start; }
      .quien .media video {
        width: 220px;
        height: auto; }
    .quien .datos {
      order: 2; } }
.animBG {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(70px);
  filter: blur(70px);
  background: radial-gradient(circle at 25% 25%, #ff7cf5 0, transparent 60%), radial-gradient(circle at 75% 25%, #7cf0ff 0, transparent 60%), radial-gradient(circle at 50% 70%, #a29bff 0, transparent 60%);
  animation: move-bg 15s linear infinite alternate;
  overflow: hidden;
  opacity: 0.2; }

.bg-animado::before {
  content: "";
  position: absolute;
  left: 10vw;
  top: 55vh;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle at 80% 30%, #ffb37c55 0, transparent 80%);
  filter: blur(60px);
  z-index: -1;
  animation: move-before 8s ease-in-out infinite alternate;
  border-radius: 50%; }

/* Blob extra con ::after */
.bg-animado::after {
  content: "";
  position: absolute;
  right: 10vw;
  top: 25vh;
  width: 28vw;
  height: 32vw;
  background: radial-gradient(circle at 40% 70%, #73ffb355 0, transparent 85%);
  filter: blur(60px);
  z-index: -1;
  animation: move-after 12s ease-in-out infinite alternate;
  border-radius: 50%; }

/* Animación fondo */
@keyframes move-bg {
  0% {
    transform: scale(1) translateY(0); }
  100% {
    transform: scale(8) translateY(-115px); } }
/* Animación ::before */
@keyframes move-before {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg); }
  18% {
    transform: translate(10px, 25px) scale(1.08) rotate(-12deg); }
  67% {
    transform: translate(-26px, 5px) scale(0.95) rotate(18deg); }
  100% {
    transform: translate(0, -18px) scale(1.1) rotate(-16deg); } }
/* Animación ::after */
@keyframes move-after {
  0% {
    transform: scale(1.1) translate(0, 0) rotate(0); }
  26% {
    transform: scale(0.98) translate(-20px, 10px) rotate(-10deg); }
  73% {
    transform: scale(1.08) translate(12px, -28px) rotate(21deg); }
  100% {
    transform: scale(1.04) translate(-10px, 10px) rotate(-18deg); } }
