/* Bot flotante Red Picantes - Sumate */
.rp-game-assistant{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:10000;
  font-family:'Outfit',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

.rp-game-bubble{
  border:1px solid rgba(255,122,24,.65);
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,.28), transparent 23%),
    linear-gradient(135deg,#ff2b10 0%,#ff7618 48%,#ffb000 100%);
  color:#160500;
  min-width:184px;
  min-height:64px;
  padding:10px 18px 10px 12px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  box-shadow:0 18px 45px rgba(255,91,20,.35), 0 0 0 7px rgba(255,106,26,.08);
  position:relative;
  overflow:hidden;
  animation:rpGameFloat 2.8s ease-in-out infinite;
}

.rp-game-bubble:before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.45),transparent);
  transform:translateX(-120%);
  animation:rpGameShine 3.6s ease-in-out infinite;
  pointer-events:none;
}

.rp-game-bubble:after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  border:1px solid rgba(255,122,24,.40);
  animation:rpGamePulse 2s ease-out infinite;
  pointer-events:none;
}

/* ICONO */
.rp-game-bubble-icon{
    width:52px;
    height:52px;
    flex:0 0 52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    overflow:hidden;

    background:linear-gradient(135deg,#ff4d16,#ffb300);
    box-shadow:0 0 18px rgba(255,110,0,.45);
}

/* IMAGEN */
.rp-game-bubble-icon img{
    width:34px;
    height:34px;

    object-fit:contain;
    display:block;

    margin:0;
    padding:0;
    transform:translateY(-1px);
}

/* BOTON */
.rp-game-bubble{
    display:flex;
    align-items:center;
    gap:14px;

    height:72px;
    padding:10px 20px 10px 10px;
}

.rp-game-bubble-text{
  font-weight:1000;
  letter-spacing:.2px;
  font-size:17px;
  white-space:nowrap;
  text-shadow:0 1px 0 rgba(255,255,255,.18);
}

.rp-game-chat{
  position:absolute;
  right:0;
  bottom:82px;
  width:min(368px, calc(100vw - 34px));
  color:#fff;
  border:1px solid rgba(255,122,24,.45);
  border-radius:28px;
  padding:22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,122,24,.22), transparent 25%),
    radial-gradient(circle at 8% 110%, rgba(255,42,16,.20), transparent 35%),
    linear-gradient(145deg, rgba(22,5,0,.97), rgba(6,1,0,.98));
  box-shadow:0 25px 70px rgba(0,0,0,.65), 0 0 45px rgba(255,91,20,.20);
  opacity:0;
  transform:translateY(14px) scale(.96);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  overflow:hidden;
}

.rp-game-chat:before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,184,77,.75),transparent);
}

.rp-game-chat.active{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.rp-game-close{
  position:absolute;
  top:13px;
  right:14px;
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  background:rgba(0,0,0,.30);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.rp-game-top{
  display:flex;
  align-items:center;
  gap:12px;
  padding-right:38px;
  margin-bottom:14px;
}

.rp-game-avatar{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#ff2b10,#ff8a1d);
  box-shadow:0 12px 30px rgba(255,91,20,.30);
  font-size:26px;
}

.rp-game-top small{
  display:block;
  color:#ffb073;
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:2px;
}

.rp-game-top strong{
  display:block;
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.4px;
}

.rp-game-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(38,255,128,.10);
  border:1px solid rgba(38,255,128,.24);
  color:#9dffc7;
  font-size:12px;
  font-weight:900;
}

.rp-game-status span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#28ff83;
  box-shadow:0 0 14px rgba(40,255,131,.75);
}

.rp-game-chat h3{
  margin:0 0 9px;
  font-size:25px;
  line-height:1.06;
  letter-spacing:-.7px;
}

.rp-game-chat p{
  margin:0 0 16px;
  color:#ffd9c5;
  line-height:1.55;
  font-size:15.5px;
}

.rp-game-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin:16px 0 18px;
}

.rp-game-benefits div{
  border:1px solid rgba(255,122,24,.22);
  background:rgba(255,255,255,.045);
  border-radius:16px;
  padding:11px 8px;
  text-align:center;
}

.rp-game-benefits b{
  display:block;
  font-size:20px;
  margin-bottom:5px;
}

.rp-game-benefits span{
  display:block;
  color:#fff;
  font-size:12px;
  font-weight:900;
  line-height:1.15;
}

.rp-game-chat-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  min-height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#ff3b14,#ff861c 55%,#ffc400);
  color:#160500;
  font-weight:1000;
  text-decoration:none;
  box-shadow:0 16px 34px rgba(255,106,26,.30);
  transition:transform .18s ease, filter .18s ease;
}

.rp-game-chat-btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.08);
}

.rp-game-note{
  display:block;
  color:#b9a29a;
  margin-top:12px;
  text-align:center;
  font-size:12px;
}

@keyframes rpGameFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes rpGamePulse{
  0%{transform:scale(.98);opacity:.75}
  100%{transform:scale(1.20);opacity:0}
}

@keyframes rpGameShine{
  0%,55%{transform:translateX(-120%)}
  75%,100%{transform:translateX(120%)}
}

@media (max-width: 640px){
  .rp-game-assistant{right:14px;bottom:14px}
  .rp-game-bubble{min-width:64px;width:64px;height:64px;padding:0;justify-content:center}
  .rp-game-bubble-text{display:none}
  .rp-game-bubble-icon{width:48px;height:48px}
  .rp-game-chat{right:0;bottom:78px;width:calc(100vw - 28px);padding:19px;border-radius:24px}
  .rp-game-chat h3{font-size:22px}
  .rp-game-benefits{grid-template-columns:1fr}
}

