*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Orbitron', sans-serif;
  color:white;
  background:
    radial-gradient(circle at top left, rgba(0,255,255,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,0,200,0.25), transparent 50%),
    linear-gradient(135deg, #0b0b1a, #1a0033);
}

.overlay-box {
  width: 100%;
  display: flex;
  justify-content: center;

  margin: 0;
  padding: 0;
}

.overlay-box iframe {
  width: 350px;
  height: 90px;

  border: none;

  margin: 0;
  padding: 0;

  display: block;
}

/* GRID */
body::before{
  content:"";
  position:fixed;
  width:100%;
  height:100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:45px 45px;
  animation:moveGrid 12s linear infinite;
  pointer-events:none;
  z-index:0;
}

@keyframes moveGrid{
  from{transform:translate(0,0);}
  to{transform:translate(-45px,-45px);}
}

/* LOGO SUPERIOR IZQUIERDA */
.logo-float{
  position:fixed;
  top:5px;
  left:5px;
  z-index:999;
}

.logo-float img{
  width:140px;
  height:auto;

  filter:
    drop-shadow(0 0 12px rgba(255,0,200,0.7))
    drop-shadow(0 0 25px rgba(255,0,80,0.5));

  transition:0.3s ease;
}

.logo-float img:hover{
  transform:scale(1.08) rotate(-2deg);
}

/* EPIC DESKTOP */
.epic-float{
  position:fixed;
  top:17px;
  right:9px;
  z-index:999;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;

  padding:16px 18px;
  border-radius:18px;

  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.12);

  /* 🔵 NEÓN BASE */
  box-shadow:
    0 0 10px rgba(0,140,255,0.5),
    0 0 25px rgba(0,140,255,0.25);

  backdrop-filter: blur(8px);

  text-align:center;
  min-width:160px;

  /* ✨ ANIMACIÓN NUEVA */
  animation: epicGlow 2.5s ease-in-out infinite;
}

@keyframes epicGlow{
  0%,100%{
    box-shadow:
      0 0 10px rgba(0,140,255,0.4),
      0 0 25px rgba(0,140,255,0.2);
  }

  50%{
    box-shadow:
      0 0 18px rgba(0,200,255,0.8),
      0 0 40px rgba(0,140,255,0.5),
      0 0 70px rgba(0,80,255,0.3);
  }
}

.epic-float img{
  width:42px;
  height:42px;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,240,255,0.6));
}

.epic-title{
  font-size:0.9rem;
  font-weight:800;
  letter-spacing:1px;
  opacity:0.95;
}

.epic-code{
  font-size:0.85rem;
  opacity:0.85;
}

.epic-code span{
  color:#00f0ff;
  font-weight:800;
}

/* 🔥 FIX GLOBAL MÓVIL + LANDSCAPE */
@media (max-width:900px), (max-height:500px){

  .epic-float{
    position:fixed;
    top:0;
    left:0;
    right:0;

    transform:none;

    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:10px;

    padding:8px 10px;

    border-radius:0 0 14px 14px;

    min-width:unset;
  }

  .epic-float img{
    width:22px;
    height:22px;
  }

  .epic-title,
  .epic-code{
    font-size:0.6rem;
    white-space:nowrap;
  }

  .hero{
    padding-top:90px;
  }

  /* LOGO MÓVIL */
  .logo-float{
    top:38px;
    left:1px;
  }

  .logo-float img{
    width:62px;
  }
}

main{
  position:relative;
  z-index:1;
  max-width:1000px;
  margin:auto;
  padding:30px 15px;
}

/* HERO */
.hero{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1{
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  background:linear-gradient(90deg,#00f0ff,#ff00cc,#ffcc00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
/* LOGO HERO */
.hero-logo{
  width:min(90%, 700px);
  height:auto;

  filter:
    drop-shadow(0 0 12px rgba(255,0,200,0.7))
    drop-shadow(0 0 35px rgba(140,0,255,0.5));

  animation:logoFloat 4s ease-in-out infinite;
}

/* EFECTO FLOTANTE */
@keyframes logoFloat{
  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }
}
.hero p{
  margin-top:10px;
  opacity:0.8;
}

/* LIVE STATUS */
.live-status{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  width: fit-content;
  margin: 35px auto 0;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(255,0,80,0.15);
  border: 1px solid rgba(255,0,80,0.4);
  font-size: 0.8rem;
}

.dot{
  width:8px;
  height:8px;
  background:red;
  border-radius:50%;
  animation:pulse 1s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:1;}
  50%{transform:scale(1.5);opacity:0.5;}
  100%{transform:scale(1);opacity:1;}
}

/* LIVE STREAM */
.live-box{
  margin-top:1px;
  padding:20px;
  border-radius:20px;
  background:rgba(0,0,0,0.4);
  border:1px solid rgba(0,255,255,0.3);
  box-shadow:0 0 25px rgba(0,255,255,0.2);
  text-align:center;
}

iframe{
  width:100%;
  height:420px;
  border-radius:15px;
  margin-top:15px;
}

/* SECTIONS */
.section{
  margin-top:50px;
  text-align:center;
}

/* RETOS */
.retos-wrapper{
  margin-top:50px;
  text-align:center;
}

.retos-wrapper img{
  width:100%;
  max-width:600px;
  border-radius:22px;
  box-shadow:0 0 35px rgba(255,0,200,0.25);
}

/* CLIPS */
.clips{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:12px;
}

.clips iframe{
  width:100%;
  height:180px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
  box-shadow:0 0 15px rgba(0,0,0,0.4);
}

.clips iframe:hover{
  transform:scale(1.03);
  box-shadow:0 0 25px rgba(255,0,200,0.3);
}

/* SOCIALS */
.socials{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.socials a{
  width:80px;
  height:80px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  transition:0.25s ease;
  border:1px solid rgba(255,255,255,0.08);
}

.socials a img{
  width:55px;
  filter:invert(1);
  transition:0.25s ease;
}

/* ANIMACIÓN GENERAL */
.socials a:hover{
  transform:translateY(-6px) scale(1.1);
}

/* TWITCH */
.socials a:nth-child(1):hover{
  background:#9146FF;
  box-shadow:
    0 0 15px rgba(145,70,255,0.7),
    0 0 35px rgba(145,70,255,0.5);
  border-color:#9146FF;
}

/* KICK */
.socials a:nth-child(2):hover{
  background:#53FF1A;
  box-shadow:
    0 0 15px rgba(83,255,26,0.7),
    0 0 35px rgba(83,255,26,0.5);
  border-color:#53FF1A;
}

/* DISCORD */
.socials a:nth-child(3):hover{
  background:#5865F2;
  box-shadow:
    0 0 15px rgba(88,101,242,0.7),
    0 0 35px rgba(88,101,242,0.5);
  border-color:#5865F2;
}

/* YOUTUBE */
.socials a:nth-child(4):hover{
  background:#FF0000;
  box-shadow:
    0 0 15px rgba(255,0,0,0.7),
    0 0 35px rgba(255,0,0,0.5);
  border-color:#FF0000;
}

/* INSTAGRAM */
.socials a:nth-child(5):hover{
  background:linear-gradient(135deg,#ff00cc,#ff6600);
  box-shadow:
    0 0 15px rgba(255,0,128,0.7),
    0 0 35px rgba(255,140,0,0.5);
  border-color:#ff4fd8;
}

/* TIKTOK */
/* base */
.socials a:nth-child(6) img{
  filter: brightness(0) saturate(100%) invert(1);
  transition: 0.25s ease;
}

/* hover container */
.socials a:nth-child(6):hover{
  background:#000;
  box-shadow:0 0 25px rgba(0,0,0,0.8);
}

/* hover icon (ESTADO FIJO MIENTRAS HOVER) */
.socials a:nth-child(6):hover img{
  filter:
    brightness(1.2)
    invert(1)
    drop-shadow(-3px 0 0 #ff0050)
    drop-shadow(3px 0 0 #00f2ea);
  transform: scale(1.1);
}

/* WHATSAPP */
.socials a:nth-child(7):hover{
  background:#25D366;
  box-shadow:0 0 25px rgba(37,211,102,0.7);
}

/* X */
.socials a:nth-child(8):hover{
  background:#000;
  border-color:#fff;

  box-shadow:
    0 0 15px rgba(255,255,255,0.5),
    0 0 35px rgba(255,255,255,0.25);
}

/* YOUTUBE VIDEOS */

.youtube-videos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:15px;
  margin-top:20px;
}

.youtube-videos iframe{
  width:100%;
  aspect-ratio:16/9;
  height:auto;

  border:none;
  border-radius:18px;

  box-shadow:
    0 0 15px rgba(255,0,0,0.15);

  transition:0.3s ease;
}

.youtube-videos iframe:hover{
  transform:scale(1.02);

  box-shadow:
    0 0 25px rgba(255,0,0,0.35);
}

/* WRAPPER */
.donate-wrapper{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:45px;
}

/* ===================== */
/* PAYPAL (igual que el tuyo pero consistente) */
/* ===================== */

.paypal-btn{
  display:flex;
  align-items:center;
  gap:14px;

  padding:16px 22px;

  border-radius:18px;
  text-decoration:none;
  color:white;

  background:
    linear-gradient(
      135deg,
      rgba(120,0,200,0.25),
      rgba(255,0,200,0.12)
    );

  border:1px solid rgba(255,0,200,0.35);

  backdrop-filter:blur(10px);

  box-shadow:
    0 0 15px rgba(255,0,200,0.25),
    0 0 35px rgba(120,0,200,0.2);

  transition:0.25s ease;
}

.paypal-btn:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255,0,200,0.7),
    0 0 50px rgba(255,0,200,0.4);
}

.paypal-logo{
  width:34px;
  height:34px;
}

/* TEXTO PAYPAL */
.paypal-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.paypal-text strong{
  font-size:0.95rem;
}

.paypal-text span{
  font-size:0.75rem;
  opacity:0.8;
}

/* ===================== */
/* BIZUM (PROXIMAMENTE) */
/* ===================== */

.bizum-btn{
  display:flex;
  align-items:center;
  gap:14px;

  padding:16px 22px;

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      rgba(120,0,200,0.12),
      rgba(255,0,200,0.05)
    );

  border:1px dashed rgba(255,0,200,0.25);

  color:white;

  opacity:0.65;

  backdrop-filter:blur(10px);

  position:relative;
}

.bizum-logo{
  width:54px;
  height:54px;

  filter:grayscale(1) brightness(1.2);
}

/* TEXTO BIZUM */
.bizum-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.bizum-text strong{
  font-size:0.95rem;
}

.bizum-text span{
  font-size:0.75rem;
  color:#ff00cc;
  font-weight:700;
}

/* ETIQUETA PROXIMAMENTE */
.bizum-btn::after{
  content:"PRÓXIMAMENTE";
  position:absolute;
  top:-10px;
  right:10px;

  font-size:0.6rem;
  letter-spacing:1px;

  background:rgba(255,0,200,0.15);
  border:1px solid rgba(255,0,200,0.4);

  padding:3px 6px;
  border-radius:8px;

  color:#ff00cc;
}

/* FOOTER */
footer{
  text-align:center;
  margin-top:50px;
  opacity:0.6;
  font-size:0.8rem;
}

/* ========================= */
/* EVENTOS */
/* ========================= */

.coming-card{

    max-width:700px;
    margin:40px auto;

    padding:45px 35px;

    text-align:center;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,0,200,.12),
            rgba(0,255,255,.08)
        );

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    box-shadow:
        0 0 25px rgba(255,0,200,.20),
        0 0 45px rgba(0,255,255,.12);

    animation:cardFloat 4s ease-in-out infinite;
}

.coming-icon{

    font-size:4rem;
    margin-bottom:20px;

}

.coming-card h2{

    font-size:2rem;

    background:linear-gradient(90deg,#00f0ff,#ff00cc,#ffd000);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:15px;

}

.coming-card p{

    font-size:1rem;
    opacity:.85;
    line-height:1.7;

}

@keyframes cardFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}

/* BOTÓN VOLVER */

.back-home{

    display:inline-block;

    margin-top:30px;

    padding:14px 30px;

    border-radius:40px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    letter-spacing:.5px;

    background:linear-gradient(90deg,#00f0ff,#ff00cc);

    box-shadow:
        0 0 15px rgba(0,240,255,.35),
        0 0 30px rgba(255,0,200,.35);

    transition:.3s ease;

}

.back-home:hover{

    transform:translateY(-4px) scale(1.05);

    box-shadow:
        0 0 20px #00f0ff,
        0 0 45px #ff00cc;

}

.back-home:active{

    transform:scale(.97);

}

.botones{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.retos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.reto-card{
    background:#171717;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    border:2px solid #2d2d2d;
}

.reto-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow:0 10px 30px rgba(139,92,246,.35);
}

.reto-img{
    width:100%;
    height:120px;
    object-fit:cover;
    display:block;
}

.reto-info{
    padding:20px;
    text-align:center;
}

.reto-info h3{
    margin-bottom:20px;
    min-height:55px;
}

.reto-prices{
    display:flex;
    justify-content:center;
    gap:12px;
}

.twitch-price,
.kick-price{
    padding:10px 16px;
    border-radius:10px;
    font-weight:bold;
}

@media (max-width:900px){

    .retos-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:600px){

    .retos-grid{
        grid-template-columns:1fr;
    }

    .reto-img{
        height:100px;
    }

}