/* =========================
   GRID (mantém o teu)
========================= */
.grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 980px){ .grid{grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .grid{grid-template-columns: 1fr;} }

/* =========================
   CARD (glass + glow + hover)
========================= */
.casino-card{
  position:relative;
  overflow:hidden;

  border-radius:20px;
  padding:16px;

  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
 display:flex;
  flex-direction:column;

  min-height: 400;
  max-height: 400px;  
  transform: translateZ(0);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    filter .25s ease;
}

/* “highlight” suave */
.casino-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(800px 260px at 50% -80px, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(420px 220px at 12% 18%, rgba(168,85,247,.18), transparent 60%),
    radial-gradient(420px 220px at 88% 18%, rgba(99,102,241,.14), transparent 60%);
  opacity:.85;
  pointer-events:none;
  transition: opacity .25s ease;
}

.casino-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events:none;
  transition: box-shadow .25s ease, opacity .25s ease;
}

.casino-card:hover{
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 26px 90px rgba(0,0,0,.60),
    0 0 0 1px rgba(168,85,247,.10),
    0 0 42px rgba(168,85,247,.10);
}

.casino-card:hover::before{ opacity: 1; }
.casino-card:hover::after{
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 999px rgba(255,255,255,.00);
  opacity: 1;
}

/* =========================
   HEADER / LOGO
========================= */
.cc-head{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
}



.cc-brand{ width:100%; }

.cc-logo{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0% 0 12px;
}

.cc-logo img{
  height: 54px;
  width:auto;
  max-width: 92%;
  object-fit:contain;
  transition: transform .25s ease, filter .25s ease;
}
.cc-logo:hover img{
  transform: scale(1.08);
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.18))
    drop-shadow(0 0 32px rgba(0,0,0,.45));
}

/* só bloqueia o efeito do logo quando o card está hover
   MAS o logo em si NÃO está hover */
.casino-card:hover .cc-logo:not(:hover) img{
  transform: none;
  filter: none;
}


/* Info button */


.cc-info:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
}

/* =========================
   TAGS (com hover)
========================= */


/* TAG pill (clean + dot like screenshot) */
.cc-tag{
  position: relative;
  display:inline-flex;
  align-items:center;
  gap:8px;

  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;

  padding:6px 10px;
  border-radius:999px;

  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 22px rgba(0,0,0,.22);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cc-tag::before{
  content:"";
  position: relative;
  z-index: 1;

  width:7px;
  height:7px;
  border-radius:999px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 2px rgba(255,255,255,.10);
}

.cc-tag:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.20);
}

/* Variantes */
.cc-tag.new::before{
  background: rgba(34,197,94,1);
  box-shadow:
    0 0 0 2px rgba(34,197,94,.18),
    0 0 10px rgba(34,197,94,.55);
}

.cc-tag.hot::before{
  background: rgba(250,204,21,1);
  box-shadow:
    0 0 0 2px rgba(250,204,21,.20),
    0 0 10px rgba(250,204,21,.45);
}

.cc-tag.hot{
  border-color: rgba(250,204,21,.22);
}

/* =========================
   FEATURES (squares) + hover individual
========================= */
.cc-features{
  position:relative;
  z-index:1;
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  min-height: 0;
}



.cc-feature-row{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.cc-feature{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  padding: 12px 10px;
  text-align:center;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.08);

  transform: translateZ(0);
  transition:
    transform .20s ease,
    background .20s ease,
    border-color .20s ease,
    box-shadow .20s ease,
    filter .20s ease;
}

/* hover do quadrado (como no vascolara) */
.cc-feature:hover{
  transform: translateY(-2px) scale(1.015);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 16px 34px rgba(0,0,0,.35),
    0 0 0 1px rgba(168,85,247,.12),
    0 0 26px rgba(168,85,247,.10),
    inset 0 0 0 1px rgba(0,0,0,.06);
}

.cc-feature-title{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(232,238,252,.72);
  font-weight:800;
  margin-bottom:6px;
}

.cc-feature-value{
  font-size:16px;
  font-weight:900;
  color: rgba(255,255,255,.95);
  line-height:1.15;
}

/* =========================
   PAYMENTS + hover individual
========================= */
.cc-payments{
  position:relative;
  z-index:1;
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}

.cc-pay{
  width:26px;
  height:26px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  overflow:hidden;

  transform: translateZ(0);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.cc-pay:hover{
  transform: translateY(-1px) scale(1.12);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 12px 26px rgba(0,0,0,.32),
    0 0 18px rgba(168,85,247,.12);
}

.cc-pay img{
  width:18px;
  height:18px;
  object-fit:contain;
  display:block;
}

.cc-pay-fallback{
  font-size:11px;
  font-weight:900;
  color: rgba(255,255,255,.92);
}

/* =========================
   FOOT + CTA (botão com hover)
========================= */
.cc-foot{
  position:relative;
  z-index:1;
  margin-top:12px;
  text-align:center;
  font-size:11px;
  color: rgba(232,238,252,.62);
}

.cc-cta{
  position:relative;
  z-index:1;

  margin-top:auto;    /* 👈 isto é o truque */
  padding-top:14px;   /* mantém o spacing que tinhas */
}


.cc-btn{
  width:100%;
  border-radius:14px;
  padding:13px 14px;

  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;

  display:block;
  text-align:center;

  transition: transform .20s ease, filter .20s ease, box-shadow .20s ease;
}

.cc-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* =========================
   Mobile tweaks
========================= */
@media (max-width: 640px){
  .casino-card{ padding:14px; }
  .cc-logo img{ height:50px; }
  .cc-feature-value{ font-size:15px; }
}
/* =========================
   TOP BAR (tags left | info right)
========================= */
.cc-topbar{
  position:relative;
  z-index:3;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:2px;
}
.cc-tags.empty{
  min-height: 28px; /* altura aproximada da tag para manter alinhamento */
}

/* TAGS */
.cc-tags{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

/* INFO button */
.cc-info{
  flex:0 0 auto;

  width:34px;
  height:34px;
  border-radius:12px;

  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);

  display:grid;
  place-items:center;

  color: rgba(232,238,252,.92);
  cursor:pointer;

  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cc-info:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.30);
}

/* TAG pill (mantém o teu look) */
.cc-tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;

  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);

  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cc-tag:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}




.cc-feature-title,
.cc-feature-value{
  line-height:1.15;
  max-width:100%;
  overflow:hidden;
}
/* =========================
   INFO MODAL (premium)
========================= */
.info-modal-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  padding:18px;
}

.info-modal{
  width:min(520px, 100%);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(12,14,28,.78);
  box-shadow: 0 30px 120px rgba(0,0,0,.65);
  overflow:hidden;
}

.info-modal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.info-modal-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.info-modal-brand img{
  width:44px;
  height:44px;
  object-fit:contain;
}
.info-modal-name{
  font-weight:900;
  letter-spacing:.02em;
  color: rgba(255,255,255,.95);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.info-modal-close{
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}

.info-modal-body{ padding:14px; }

.info-modal-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.info-quick{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:12px;
}

.info-quick-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}

.info-quick-label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(232,238,252,.70);
  font-weight:900;
}

.info-modal-payments{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.info-link{
  color: rgba(200,220,255,.92);
  text-decoration:none;
  font-weight:800;
}
.info-link:hover{ text-decoration:underline; }

.info-showmore{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.08em;
  cursor:pointer;
  margin-bottom:10px;
}

.info-more{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform: translateY(-4px);
  transition: max-height .28s ease, opacity .28s ease, transform .28s ease;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding:0 12px;
}

.info-more.open{
  max-height: 520px;
  opacity:1;
  transform: translateY(0);
  padding:12px;
}

.info-more-title{
  font-weight:900;
  color: rgba(255,255,255,.92);
  margin-bottom:10px;
}

.info-more-grid{
  display:grid;
  gap:10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width:420px){
  .info-more-grid{ grid-template-columns: 1fr; }
}

.info-more-item{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding:10px 10px;
}
.info-more-item .k{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(232,238,252,.70);
  font-weight:900;
  margin-bottom:6px;
}
.info-more-item .v{
  font-size:14px;
  font-weight:900;
  color: rgba(255,255,255,.95);
  overflow-wrap:anywhere;
}

.info-modal-foot{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.info-foot-note{
  text-align:center;
  font-size:11px;
  color: rgba(232,238,252,.62);
}

.info-claim-btn{
  width:100%;
  display:block;
  text-align:center;
  border-radius:14px;
  padding:13px 14px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  background: rgba(139,92,246,1);
  color: white;
  text-decoration:none;
}

.modal-ultra-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(5px);
  display:grid;
  place-items:center;
  padding:18px;
}

.modal-ultra{
  width:min(1180px, 100%);
  height:min(720px, 92vh);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,12,22,.92);
  box-shadow: 0 40px 160px rgba(0,0,0,.80);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* Top */
.modal-ultra-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0));
}

.modal-ultra-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.modal-ultra-logo{
  width:56px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.modal-ultra-logo img{
  width:100%;
  height:100%;
  object-fit: contain;
  padding: 2px;
}

.modal-ultra-name{
  font-weight:900;
  color: rgba(255,255,255,.94);
  letter-spacing:.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.modal-ultra-close{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}

/* Body grid */
.modal-ultra-body{
  flex:1;
  display:grid;
  grid-template-columns: 330px 1fr;
  gap:14px;
  padding:14px;
  overflow:hidden;
}

/* LEFT */
.modal-ultra-left{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:14px;
  overflow:auto;
}

.modal-ultra-left-title{
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(232,238,252,.72);
  margin-bottom:12px;
}

.modal-ultra-left-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.modal-ultra-left-item{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  padding:10px 12px;
}

.modal-ultra-left-item .k{
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(232,238,252,.66);
  font-weight:900;
  margin-bottom:6px;
}
.modal-ultra-left-item .k{
  display:flex;
  align-items:center;
  gap:10px;
}
.modal-ultra-left-item .k svg{
  width:16px;
  height:16px;
  opacity:.8;
}
.modal-ultra-left-item .v{
  font-weight:900;
  color: rgba(255,255,255,.94);
  overflow-wrap:anywhere;
}

/* Promo box */
.modal-ultra-promo{
  margin-top:12px;
  border-radius:14px;
  border:1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.10);
  text-align: center;
  padding:12px;
}
.modal-ultra-promo .t{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-align: center;
  text-transform:uppercase;
  color: rgba(180,255,210,.95);
  margin-bottom:6px;
}
.modal-ultra-promo .d{
  color: rgba(232,238,252,.78);
  font-weight:700;
}

/* RIGHT */
.modal-ultra-right{
  overflow:auto;
  padding-right:6px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* Cards */
.modal-ultra-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:14px;
}

.modal-ultra-card-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color: rgba(255,255,255,.92);
  margin-bottom:12px;
  letter-spacing:.02em;
}
.modal-ultra-card-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.modal-ultra-icon{
  width:18px;
  height:18px;
  opacity:.9;
  flex:0 0 auto;
}
/* Steps */
/* =========================
   WELCOME BONUS (modal-ultra-like)
========================= */
.modal-ultra-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

@media (max-width: 1100px){
  .modal-ultra-steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px){
  .modal-ultra-steps{ grid-template-columns: 1fr; }
}

.modal-ultra-bonus-card{
  display:flex;
  align-items:center;
  gap:12px;

  border-radius:7px;
  padding:14px 14px;

  background: rgba(124,58,237,.12); /* roxo leve */
  border: 1px solid rgba(168,85,247,.22);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.10);

  min-height:72px;
}

.modal-ultra-badge{
  width:30px;
  height:30px;
  border-radius:10px;

  display:grid;
  place-items:center;

  font-weight:900;
  color: rgb(255, 255, 255);
  background: rgba(16,185,129,.92); /* verde */
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  flex:0 0 auto;
}

.modal-ultra-bonus-text{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.modal-ultra-bonus-main{
  font-size:15px;
  font-weight:900;
  color: rgba(255,255,255,.92);

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.modal-ultra-bonus-sub{
  font-size:12px;
  font-weight:900;
  color: rgba(250,204,21,.95); /* amarelo FS */
  letter-spacing:.02em;
}


/* Grid 2 */
.modal-ultra-grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

/* VIP list */
.modal-ultra-vip{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.modal-ultra-vip-item{
  border-radius:12px;
  border:1px solid rgba(250,204,21,.22);
  background: rgba(250,204,21,.06);
  padding:10px 12px;
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.92);
  font-weight:800;
}
.modal-ultra-vip-item .cup{
  opacity:.9;
}

/* Payments list */
.modal-ultra-payments-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.modal-ultra-pay-row{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.modal-ultra-pay-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.modal-ultra-pay-ico{
  width:26px;
  height:26px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.modal-ultra-pay-ico img{
  width:16px;
  height:16px;
  object-fit:contain;
}

.modal-ultra-pay-name{
  font-weight:900;
  color: rgba(255,255,255,.92);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.modal-ultra-pay-meta{
  font-size:12px;
  color: rgba(232,238,252,.60);
  font-weight:900;
  white-space:nowrap;
}
.modal-ultra-pay-meta b{
  color: rgba(255,255,255,.88);
}

/* CTA */
.modal-ultra-foot{
  padding:16px;
  border-top:1px solid rgba(255,255,255,.08);
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0));
}

.modal-ultra-cta{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px 16px;
  border-radius:16px;
  background: rgba(250,204,21,1);
  color:#0b0f16;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow: 0 18px 60px rgba(250,204,21,.18), 0 18px 90px rgba(0,0,0,.55);
}

.modal-ultra-cta-ico{
  filter: saturate(1.1);
}
.modal-ultra-cta-ico{
  width:18px;
  height:18px;
}

/* Responsive */
@media (max-width: 980px){
  .modal-ultra-body{ grid-template-columns: 1fr; }
  .modal-ultra-steps{ grid-template-columns: 1fr; }
  .modal-ultra-grid2{ grid-template-columns: 1fr; }
}
/* =========================
   PAYMENT METHODS (modal-ultra-like)
========================= */
.modal-ultra-payments-list{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}

@media (max-width: 860px){
  .modal-ultra-payments-list{ grid-template-columns: 1fr; }
}

.modal-ultra-pay-card{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.10);
  padding:12px 12px;
}

.modal-ultra-pay-row-top{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:28px;
}

.modal-ultra-pay-ico{
  width:26px;
  height:26px;
  border-radius:9px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex:0 0 auto;
}

.modal-ultra-pay-ico img{
  width:16px;
  height:16px;
  object-fit:contain;
  display:block;
}

.modal-ultra-pay-fallback{
  font-weight:900;
  color: rgba(255,255,255,.90);
  font-size:12px;
}

.modal-ultra-pay-name{
  font-weight:800;
  color: rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.1;

  /* para ficar igual ao print quando o nome é grande */
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.modal-ultra-pay-divider{
  height:1px;
  margin-top:10px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.00),
    rgba(255,255,255,.10),
    rgba(255,255,255,.00)
  );
}

.modal-ultra-pay-row-bottom{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.modal-ultra-pay-min{
  font-size:12px;
  color: rgba(232,238,252,.60);
}

.modal-ultra-pay-val{
  font-size:12px;
  font-weight:900;
  color: rgb(255, 255, 255);
}
/* =========================
   PROMO CODE (modal-ultra-like)
========================= */
.modal-ultra-promo{
  margin-top:14px;
  padding:14px;
  border-radius:16px;

  background: rgba(16,185,129,.10);
  border: 1px solid rgba(16,185,129,.22);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}

.promo-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.promo-title{
  display:flex;
  align-items:center;
  gap:10px;

  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: rgba(167,243,208,.92);
  font-size:12px;
}

.promo-ico{
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.25));
}

.promo-badge{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  color: rgba(16,185,129,.95);
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
}

.promo-box{
  position:relative;
  border-radius:14px;
  padding:14px 44px 14px 14px;

  border: 2px dashed rgba(34,197,94,.38);
  background: rgba(0,0,0,.18);
}

.promo-code{
  font-size:18px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(134,239,172,.95);

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.promo-copy{
  position:absolute;
  right:10px;
  top:50%;
  transform: translateY(-50%);

  width:34px;
  height:34px;
  border-radius:12px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.90);

  display:grid;
  place-items:center;
  cursor:pointer;

  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.promo-copy:hover{
  transform: translateY(-50%) scale(1.04);
  background: rgba(255,255,255,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.32);
}

.promo-sub{
  margin-top:10px;
  font-size:12px;
  color: rgba(232,238,252,.70);
}

/* NO PROMO variant */
.promo-empty{
  border-radius:14px;
  padding:12px 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.promo-empty-title{
  font-weight:900;
  color: rgba(255,255,255,.85);
  margin-bottom:6px;
}

.promo-empty-sub{
  font-size:12px;
  color: rgba(232,238,252,.65);
}
/* =========================
   modal-ultra - LEFT (CASINO INFO) more compact
========================= */

/* Coluna esquerda mais compacta */
.modal-ultra-left{ padding: 12px; gap: 10px; }

/* Título "CASINO INFO" */
.modal-ultra-left-title{
  font-size: 11px;
  letter-spacing: .14em;
  opacity: .9;
  margin-bottom: 8px;
}

/* Lista de cards */
.modal-ultra-left-list{ gap: 8px; }

.modal-ultra-left-item{
  padding: 8px 10px;
  min-height: 50px;          /* baixa bem */
  border-radius: 12px;
}

.modal-ultra-left-item .k{
  font-size: 9px;
  gap: 7px;
  letter-spacing: .12em;
}

.modal-ultra-left-item .k svg,
.modal-ultra-left-item .k i{
  width: 14px;
  height: 14px;
}

.modal-ultra-left-item .v{
  font-size: 15px;           /* isto é o que faz parecer pequeno */
  font-weight: 800;          /* menos “gritante” */
}

/* Promo box também mais compacto (se quiseres) */
.modal-ultra-promo{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
}

.modal-ultra-promo .promo-title,
.modal-ultra-promo .t{
  font-size: 11px;
}

.modal-ultra-promo .promo-code{
  font-size: 18px;
}

/* Responsive: no mobile não rebenta */
@media (max-width: 900px){
  .modal-ultra-left{ padding: 12px; }
  .modal-ultra-left-item{ min-height: 54px; padding: 9px 11px; }
  .modal-ultra-left-item .v{ font-size: 17px; }
}
/* =========================
   WELCOME BONUS — mais pequeno (tipo Ignibet)
   (override no fim do public.css)
========================= */

/* Card container do Welcome (opcional: um pouco menos padding) */
.modal-ultra-card{
  padding: 12px;
}
.modal-ultra-card-title{
  margin-bottom: 10px;
  font-size: 14px;
}

/* Grid dos steps: mais “tight” */
.modal-ultra-steps{
  gap: 10px; /* antes 12 */
}

/* Cada step card mais pequeno */
.modal-ultra-bonus-card{
  padding: 10px 12px;       /* antes 14 */
  border-radius: 12px;      /* antes 14 */
  min-height: 56px;         /* antes 72 */
  gap: 10px;                /* antes 12 */
}

/* Badge número menor */
.modal-ultra-badge{
  width: 26px;              /* antes 30 */
  height: 26px;             /* antes 30 */
  border-radius: 9px;       /* antes 10 */
  font-size: 12px;
}

/* Texto principal mais pequeno */
.modal-ultra-bonus-main{
  font-size: 13px;          /* antes 15 */
  line-height: 1.15;
}

/* FS mais pequeno */
.modal-ultra-bonus-sub{
  font-size: 11px;          /* antes 12 */
  letter-spacing: .01em;
}

/* Responsive: mantém clean no tablet */
@media (max-width: 1100px){
  .modal-ultra-steps{ gap: 10px; }
}
/* =========================
   VIP BENEFITS — mais tight
========================= */

.modal-ultra-vip{
  gap: 8px;                 /* antes 10 */
}

.modal-ultra-vip-item{
  padding: 9px 10px;        /* antes 10px 12px */
  border-radius: 10px;      /* antes 12 */
  gap: 9px;
  font-weight: 800;
  font-size: 13px;
}

.modal-ultra-vip-item svg,
.modal-ultra-vip-item i{
  width: 16px;
  height: 16px;
  opacity: .9;
  flex: 0 0 auto;
}


/* =========================
   PAYMENT METHODS — mais tight (cards 2 colunas)
========================= */

.modal-ultra-payments-list{
  gap: 10px;                /* antes 12 */
}

/* cada card do método */
.modal-ultra-pay-card{
  padding: 10px;            /* antes 12 */
  border-radius: 12px;      /* antes 14 */
}

/* topo do card */
.modal-ultra-pay-row-top{
  gap: 9px;
  min-height: 24px;         /* antes 28 */
}

/* icon box menor */
.modal-ultra-pay-ico{
  width: 24px;              /* antes 26 */
  height: 24px;             /* antes 26 */
  border-radius: 8px;       /* antes 9 */
}

.modal-ultra-pay-ico img{
  width: 14px;              /* antes 16 */
  height: 14px;             /* antes 16 */
}

/* nome do método menor */
.modal-ultra-pay-name{
  font-size: 13px;          /* antes 14 */
  font-weight: 800;
}

/* divider mais curto e mais “clean” */
.modal-ultra-pay-divider{
  margin-top: 8px;          /* antes 10 */
}

/* bottom row */
.modal-ultra-pay-row-bottom{
  margin-top: 8px;          /* antes 10 */
}

.modal-ultra-pay-min{
  font-size: 11px;          /* antes 12 */
}

.modal-ultra-pay-val{
  font-size: 11px;          /* antes 12 */
  font-weight: 900;
}

/* Responsive */
@media (max-width: 860px){
  .modal-ultra-payments-list{ gap: 10px; }
}
/* ===== FLIP: auto-height + overlap sem absolute ===== */
.modal-ultra-flip{
  perspective: 1200px;
}

/* mantém o teu easing premium */
.flip-inner{
  position: relative;
  width: 100%;

  /* 👇 em vez de height:100% (que depende do pai), deixa o conteúdo definir altura */
  transition: transform .8s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;

  /* 👇 isto é o truque: as faces ocupam o mesmo "slot" sem absolute */
  display: grid;
}

.modal-ultra-flip.flipped .flip-inner{
  transform: rotateY(180deg);
}

/* faces em overlay sem tirar altura ao card */
.flip-front,
.flip-back{
  grid-area: 1 / 1;          /* 👈 substitui inset:0 absolute */
  backface-visibility: hidden;
}

/* a de trás continua rodado */
.flip-back{
  transform: rotateY(180deg);
}

/* botão como tinhas (mantém simples) */
.flip-btn{
  margin-left:auto;
  background:none;
  border:0;
  color: rgba(255,255,255,.8);
  cursor:pointer;
}
.flip-btn:hover{
  color:#fff;
}
/* =========================
   HOW TO CLAIM — styling ONLY (front face)
   (colar no fim do public.css)
========================= */

/* garante que o conteúdo fica dentro do card e não “salta” fora */
.modal-ultra-how{
  display: flex;
  flex-direction: column;
  gap: 8px;
  
  padding-right: 4px;
}

/* scrollbar discreta */
.modal-ultra-how::-webkit-scrollbar{ width: 8px; }
.modal-ultra-how::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}
.modal-ultra-how::-webkit-scrollbar-track{
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

/* cada bullet/step */
.modal-ultra-how-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
   border:1px solid rgba(250,204,21,.22);
  background: rgba(250,204,21,.06);

  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.10);
}

/* icone */
.modal-ultra-how-ico{
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  margin-top: 1px;
  
}

.modal-ultra-how-ico svg,
.modal-ultra-how-ico i{
  width: 16px;
  height: 16px;
  opacity: .9;
}

/* texto */
.modal-ultra-how-text{
  min-width: 0;
  display:flex;
  flex-direction: column;
  gap: 3px;
}

.modal-ultra-how-title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232,238,252,.78);
  line-height: 1.1;
}

.modal-ultra-how-desc{
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* variação “step badge” opcional (se quiseres usar nº) */
.modal-ultra-how-step{
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,.25);
  background: rgba(124,58,237,.10);
  color: rgba(232,238,252,.90);
}

/* estado vazio */
.modal-ultra-how-empty{
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(232,238,252,.70);
  font-weight: 800;
  font-size: 13px;
}

/* mobile: um pouco mais baixo */
@media (max-width: 860px){
  .modal-ultra-how{ max-height: 260px; }
  .modal-ultra-how-item{ padding: 9px 10px; border-radius: 11px; }
  .modal-ultra-how-desc{ font-size: 12.5px; }
}
/* =========================
   CARD CTA — white pill like screenshot
========================= */

/* só o botão do card (não mexe no botão grande do modal) */
.cc-cta .cc-btn.jralha-button-primary{
  border-radius: 999px;           /* pill */
  padding: 12px 18px;
  background: rgba(255,255,255,.96);
  color: #111827;                 /* texto escuro */
  border: 1px solid rgba(255,255,255,.22);

  letter-spacing: .06em;
  font-weight: 700;
  text-transform: uppercase;

  box-shadow:
    0 16px 38px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.75);

  transition: transform .20s ease, filter .20s ease, box-shadow .20s ease;
}

.cc-cta .cc-btn.jralha-button-primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 22px 55px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.14),
    inset 0 1px 0 rgba(255,255,255,.80);
}

.cc-cta .cc-btn.jralha-button-primary:active{
  transform: translateY(0px) scale(.99);
}
/* Lucide crown -> amarelo (igual ao print) */
.modal-ultra-vip-item svg.lucide-crown{
  stroke: #facc15;                 /* amarelo ouro */
  filter: drop-shadow(0 0 10px rgba(250,204,21,.35));
  opacity: .95;
}
/* HOW TO CLAIM chevron-right azul */
.modal-ultra-how-item svg.lucide-chevron-right{
  stroke: #60a5fa;
  filter: drop-shadow(0 0 10px rgba(96,165,250,.35));
  opacity: .95;
}
/* =========================
   ZIP STYLE — clean glass hover (NO shadow)
========================= */

/* Base */
.modal-ultra-left-item,
.modal-ultra-bonus-card,
.modal-ultra-vip-item:hover,
.modal-ultra-how-item:hover,
.modal-ultra-pay-card{
  transition:
    transform .35s cubic-bezier(.4, 0, .2, 1),
    background .25s cubic-bezier(.4, 0, .2, 1),
    border-color .25s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Lift comum */
.modal-ultra-bonus-card:hover,
.modal-ultra-pay-card:hover{
  transform: translateY(-2px);
}

/* Base hover — vidro */
.modal-ultra-left-item:hover,
.modal-ultra-bonus-card:hover,
.modal-ultra-vip-item:hover,
.modal-ultra-how-item:hover,
.modal-ultra-pay-card:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

/* BONUS — roxo */
.modal-ultra-bonus-card:hover{
  background: rgba(168,85,247,.12);
  border-color: rgba(168,85,247,.35);
}

/* VIP — dourado */
.modal-ultra-vip-item:hover{
  background: rgba(250,204,21,.12);
  border-color: rgba(250,204,21,.35);
}

/* HOW TO CLAIM — azul */
.modal-ultra-how-item:hover{
  background: rgba(96,165,250,.12);
  border-color: rgba(96,165,250,.40);
}

/* Payments neutro */
.modal-ultra-pay-card:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.20);
}
/* =========================
   PLAYER INFO (horizontal)
========================= */

.modal-ultra-player{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

@media (max-width: 860px){
  .modal-ultra-player{ grid-template-columns: 1fr; }
}

.modal-ultra-player-item{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:10px 12px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;

  transition:
    transform .35s cubic-bezier(.4, 0, .2, 1),
    background .25s cubic-bezier(.4, 0, .2, 1),
    border-color .25s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.modal-ultra-player-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.modal-ultra-player-item .k{
  display:flex;
  align-items:center;
  gap:8px;

  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(232,238,252,.66);
  font-weight:900;
}

.modal-ultra-player-item .k svg,
.modal-ultra-player-item .k i{
  width:14px;
  height:14px;
  opacity:.9;
  flex:0 0 auto;
}

.modal-ultra-player-item .v{
  font-size:14px;
  font-weight:900;
  color: rgba(255,255,255,.92);
  line-height:1;
}
/* =========================
   RIGHT column: mantém Player Info fixa
   e cria scroll só nas caixas do meio
========================= */

/* No desktop: NÃO queremos scroll na coluna direita inteira */
.modal-ultra-right{
  overflow: hidden;     /* antes tinhas overflow:auto */
  min-height: 0;        /* importante para scroll interno funcionar */
}

/* Cada card tem layout em coluna e pode "conter" o scroll interno */
.modal-ultra-card{
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Os conteúdos que vão ter scroll (só dentro deles) */


/* Scrollbar clean (Chrome/Edge) */
#infoModalVip::-webkit-scrollbar,
#infoModalHowToClaim::-webkit-scrollbar,
#infoModalPayments::-webkit-scrollbar{
  width: 8px;
}

#infoModalVip::-webkit-scrollbar-thumb,
#infoModalHowToClaim::-webkit-scrollbar-thumb,
#infoModalPayments::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}

#infoModalVip::-webkit-scrollbar-thumb:hover,
#infoModalHowToClaim::-webkit-scrollbar-thumb:hover,
#infoModalPayments::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.16);
}

/* Firefox */
#infoModalVip,
#infoModalHowToClaim,
#infoModalPayments{
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.14) transparent;
}

/* Mobile: deixa a coluna direita voltar a ser scrollável (senão fica apertado) */
@media (max-width: 980px){
  .modal-ultra-right{
    overflow: auto;
  }

  #infoModalVip,
  #infoModalHowToClaim,
  #infoModalPayments{
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}
/* RIGHT coluna: estica e permite "empurrar" o último card */
.modal-ultra-right{
  display:flex;
  flex-direction:column;
  min-height:0;
}

/* os cards precisam poder encolher para o scroll funcionar bem */
.modal-ultra-card{
  min-height:0;
}
/* RIGHT: layout premium sem buracos */
.modal-ultra-right{
  display:flex;
  flex-direction:column;
  gap:12px;          /* mantém ritmo */
  min-height:0;
  overflow:hidden;   /* sem scroll na coluna toda */
}
/* scroll interno premium */
.modal-ultra-scroll{
  overflow-y:auto;
  min-height:0;
  max-height: 240px;         /* ajusta */
  padding-right:6px;
}

/* scrollbar clean */
.modal-ultra-scroll::-webkit-scrollbar{ width: 8px; }
.modal-ultra-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}
.modal-ultra-scroll::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.16);
}
.modal-ultra-scroll{
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.14) transparent;
}
/* How + Payments: mais consistentes */
.modal-ultra-grid2 .modal-ultra-card{
  min-height: 260px; /* mexe aqui até ficar perfeito */
}
/* =========================================================
   RIGHT COLUMN LAYOUT (fix player info bottom + fill middle)
   ========================================================= */

/* garante que esquerda e direita têm a mesma altura no grid */
.modal-ultra-body{
  align-items: stretch;
  min-height: 0;
}

/* a direita vira uma coluna: topo (welcome) / meio (grid2) / fundo (player) */
.modal-ultra-right{
  display: flex;
  flex-direction: column;
  gap: 12px;

  height: 100%;
  min-height: 0;
  overflow: hidden; /* nunca scroll na coluna toda */
}

/* o bloco do meio (how/pay) cresce para ocupar o espaço restante */
.modal-ultra-grid2{
  flex: 1;
  min-height: 0;
}

/* cada card dentro do meio precisa poder encolher */
.modal-ultra-grid2 > .modal-ultra-card,
.modal-ultra-grid2 > .modal-ultra-flip{
  min-height: 0;
}

/* cards do meio em coluna (titulo + conteúdo) */
.modal-ultra-grid2 .modal-ultra-card,
.modal-ultra-grid2 .modal-ultra-flip .flip-face{
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* conteúdos que devem scrollar APENAS quando faltar espaço */
#infoModalHowToClaim,
#infoModalPayments,
#infoModalVip{
  flex: 1;
  min-height: 0;
  overflow: auto;     /* scroll aparece só quando precisa */
  padding-right: 6px; /* não cortar scrollbar/hover */
}

/* player info fica sempre no fundo */
.modal-ultra-playerinfo-card{
  margin-top: auto;
}

/* scrollbars clean */
#infoModalHowToClaim::-webkit-scrollbar,
#infoModalPayments::-webkit-scrollbar,
#infoModalVip::-webkit-scrollbar{
  width: 8px;
}
#infoModalHowToClaim::-webkit-scrollbar-thumb,
#infoModalPayments::-webkit-scrollbar-thumb,
#infoModalVip::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}
#infoModalHowToClaim::-webkit-scrollbar-thumb:hover,
#infoModalPayments::-webkit-scrollbar-thumb:hover,
#infoModalVip::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,.16);
}

/* mobile: deixa scroll normal no modal */
@media (max-width: 980px){
  .modal-ultra-right{
    height: auto;
    overflow: auto;
  }
  .modal-ultra-playerinfo-card{
    margin-top: 0;
  }
  #infoModalHowToClaim,
  #infoModalPayments,
  #infoModalVip{
    overflow: visible;
    padding-right: 0;
  }
}
/* =========================
   PAYMENT METHODS (igual ao print)
   Cola no FIM do CSS
========================= */

/* container do card "PAYMENT METHODS" (opcional: deixa o header/spacing igual ao print) */
.modal-ultra-card--payments .modal-ultra-cardTitle{
  margin-bottom: 10px;
}

/* grid 2 colunas fixo no desktop */
.modal-ultra-payments-list{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;

  align-items: start !important;
  align-content: start !important;
}

/* 1 coluna no mobile */
@media (max-width: 860px){
  .modal-ultra-payments-list{
    grid-template-columns: 1fr !important;
  }
}

/* card pequeno e consistente */
.modal-ultra-pay-card{
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.04) !important;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.10) !important;

  padding: 10px 12px !important;
  min-height: 78px !important;     /* baixo como no print */
  height: auto !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* topo do card (icon + name) */
.modal-ultra-pay-row-top{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  min-height: 26px !important;
}

/* icon pequeno */
.modal-ultra-pay-ico{
  width: 22px !important;
  height: 22px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(0,0,0,.18) !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 auto !important;
}
.modal-ultra-pay-ico img{
  width: 14px !important;
  height: 14px !important;
  object-fit: contain !important;
  display:block !important;
}

/* nome */
.modal-ultra-pay-name{
  font-weight: 900 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.92) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* remove o divider (no print não existe uma linha a meio) */
.modal-ultra-pay-divider{
  display:none !important;
}

/* bottom row: Min: à esquerda | valor à direita */
.modal-ultra-pay-row-bottom{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

.modal-ultra-pay-min{
  font-size: 12px !important;
  font-weight: 800 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.modal-ultra-pay-val{
  font-size: 12px !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.95) !important; /* azul como no print */
}

/* impede o "gigantismo" quando há poucos métodos:
   o container fica alinhado ao topo e não estica o conteúdo */
#infoModalPayments{
  align-content: start !important;
}
/* ===== Payment divider correto (como no print) ===== */
.modal-ultra-pay-divider{
  display:block !important;
  height: 1px;
  margin: 8px 0 6px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.00),
    rgba(255,255,255,.12),
    rgba(255,255,255,.00)
  );
}
/* =========================
   CASINO INFO (LEFT) — FINAL
   ========================= */

/* padding geral da coluna */
.modal-ultra-left{
  overflow: hidden !important;   /* nunca scroll */
  max-height: none !important;
}

/* garante que o conteúdo não força scroll interno */
.modal-ultra-left-list{
  overflow: visible !important;
}
.modal-ultra-left{
  padding: 10px !important;
}

/* título "CASINO INFO" mais tight e consistente */
.modal-ultra-left-title{
  margin-bottom: 8px !important;
  font-size: 10px !important;
  letter-spacing: .14em !important;
  opacity: .92 !important;
}

/* espaço entre cards (mais premium) */
.modal-ultra-left-list{
  gap: 8px !important;
}

/* cards compactos, mas legíveis */
.modal-ultra-left-item{
  padding: 8px 10px !important;
  min-height: 48px !important;
  border-radius: 14px !important;
}

/* label (GAMES, CASHBACK...) */
.modal-ultra-left-item .k{
  font-size: 9px !important;
  margin-bottom: 4px !important;
  letter-spacing: .12em !important;
  font-weight: 900 !important;
  opacity: .80 !important;
}

/* value (5000+, 20$...) */
.modal-ultra-left-item .v{
  font-size: 15px !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
}

/* ícones ligeiramente menores */
.modal-ultra-left-item .k svg,
.modal-ultra-left-item .k i{
  width: 13px !important;
  height: 13px !important;
  opacity: .9 !important;
}

/* PROMO mantém destaque (maior que os outros) */
.modal-ultra-promo{
  margin-top: 8px !important;
  padding: 10px !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;

}

/* promo code mantém impacto */
.modal-ultra-promo .promo-code{
  font-size: 18px !important;
}
/* =========================
   PROMO CODE — preserve case
========================= */

.modal-ultra-promo .promo-code{
  text-transform: none !important;   /* remove uppercase */
  letter-spacing: .08em;             /* mantém look premium */
}
.modal-ultra-title{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

/* a tag no header fica um bocadinho menor */
.modal-ultra-title .cc-tag{
  font-size:10px;
  padding:5px 9px;
  letter-spacing:.08em;
}
.cc-feature.is-code .cc-feature-value{
  color:#ff9f1a;
  font-weight:800;
}

.cc-feature.is-code{
  border-color: rgba(255,159,26,.45);
  box-shadow: 0 10px 30px rgba(255,159,26,.10);
}.cc-feature-link{
  color:#60a5fa;
  font-weight:800;
  text-decoration:none;
  position:relative;
}

.cc-feature-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:100%;
  height:1px;
  background:linear-gradient(90deg,#ff9f1a);
  opacity:.7;
}

.cc-feature-link:hover{
  color:#ff9f1a;
}

.cc-inline-code{
  color: rgba(245,158,11,.98);
  font-weight: 900;
  padding: 2px 4px;
  border-radius: 3px;
  background: rgba(245,158,11,.12);
  box-shadow: 0 0 5px rgba(245,158,11,.12);
  white-space: nowrap;
}

/* =========================
   CARD ENTRANCE (stagger)
========================= */

@keyframes ccCardEnter {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Só os cards marcados para entrar começam escondidos */
.casino-card.cc-enter{
  opacity: 0;
  transform: translateY(26px) scale(.96);
  filter: blur(10px);
}

/* Só quando leva is-in é que anima */
.casino-card.cc-enter.is-in{
  animation: ccCardEnter .7s cubic-bezier(.2,.9,.2,1) both;
}
/* =========================
   MODAL ULTRA — TRANSITIONS (premium)
========================= */

/* lock scroll quando modal aberto */
html.modal-open,
body.modal-open{
  overflow:hidden;
}

/* base: overlay pronto para animar */
.modal-ultra-overlay{
  opacity: 0;
  pointer-events: none;
}

/* base: modal pronto para animar */
.modal-ultra{
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

/* animações */
@keyframes muOverlayIn{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes muOverlayOut{
  from{ opacity:1; }
  to{ opacity:0; }
}

@keyframes muModalIn{
  from{
    opacity:0;
    transform: translateY(18px) scale(.985);
    filter: blur(10px);
  }
  to{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes muModalOut{
  from{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to{
    opacity:0;
    transform: translateY(10px) scale(.99);
    filter: blur(10px);
  }
}

@keyframes muItemIn{
  from{
    opacity:0;
    transform: translateY(12px) scale(.99);
    filter: blur(8px);
  }
  to{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* estados */
.modal-ultra-overlay.is-open{
  pointer-events:auto;
  animation: muOverlayIn .26s ease-out both;
}

.modal-ultra-overlay.is-open .modal-ultra{
  animation: muModalIn .48s cubic-bezier(.2,.9,.2,1) .05s both;
}

/* cascata do conteúdo */
.modal-ultra-overlay.is-open .modal-ultra-left{
  animation: muItemIn .55s cubic-bezier(.2,.9,.2,1) .14s both;
}

.modal-ultra-overlay.is-open .modal-ultra-right{
  animation: muItemIn .55s cubic-bezier(.2,.9,.2,1) .18s both;
}

/* cards da direita em cascata */
.modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card{
  opacity:0;
  transform: translateY(12px) scale(.99);
  filter: blur(8px);
  animation: muItemIn .55s cubic-bezier(.2,.9,.2,1) both;
}

.modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card:nth-child(1){ animation-delay: .22s; }
.modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card:nth-child(2){ animation-delay: .30s; }
.modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card:nth-child(3){ animation-delay: .38s; }
.modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card:nth-child(4){ animation-delay: .46s; }
.modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card:nth-child(5){ animation-delay: .54s; }

/* close */
.modal-ultra-overlay.is-closing{
  pointer-events:none;
  animation: muOverlayOut .22s ease-in both;
}

.modal-ultra-overlay.is-closing .modal-ultra{
  animation: muModalOut .22s ease-in both;
}

/* acessibilidade: reduz motion */
@media (prefers-reduced-motion: reduce){
  .modal-ultra-overlay.is-open,
  .modal-ultra-overlay.is-closing,
  .modal-ultra-overlay.is-open .modal-ultra,
  .modal-ultra-overlay.is-closing .modal-ultra,
  .modal-ultra-overlay.is-open .modal-ultra-left,
  .modal-ultra-overlay.is-open .modal-ultra-right,
  .modal-ultra-overlay.is-open .modal-ultra-right .modal-ultra-card{
    animation: none !important;
  }
  .modal-ultra-overlay{ opacity:1; pointer-events:auto; }
  .modal-ultra{ opacity:1; transform:none; filter:none; }
}

/* =========================================================
   RESPONSIVE PACK (SAFE OVERRIDES)
   Cola no FIM do public.css
   ========================================================= */

/* 0) Fix pequeno: min-height sem unidade no teu CSS (min-height: 400)
      não altera o look, só evita bugs em browsers */
.casino-card{ min-height: 400px; }

/* 1) Layout geral: container não rebenta e padding ok */
@media (max-width: 1100px){
  .grid{ gap:14px; }
  .casino-card{ max-height: 400px; }
}

/* 2) Tablet */
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:14px; }

  .casino-card{
    padding:14px;
    max-height: none;      /* deixa crescer se precisar */
    min-height: 380px;     /* mantém ritmo */
  }

  .cc-feature-row{
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .cc-logo img{ height: 50px; }
}

/* 3) Mobile */
@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr; gap:12px; }

  .casino-card{
    padding:14px;
    min-height: 360px;
    border-radius:18px;
  }

  .cc-topbar{ gap:10px; }
  .cc-info{ width:36px; height:36px; }

  /* features: evita quadrados demasiado pequenos */
  .cc-feature-row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .cc-feature{ padding: 10px 10px; border-radius: 13px; }
  .cc-feature-title{ font-size:10px; }
  .cc-feature-value{ font-size:15px; }

  .cc-pay{ width:28px; height:28px; }
  .cc-pay img{ width:18px; height:18px; }

  .cc-foot{ font-size:11px; }

  /* evita hover “saltitão” no mobile */
  .casino-card:hover{ transform: none; }
  .cc-pay:hover{ transform:none; }
  .cc-feature:hover{ transform:none; }
}

/* 4) Mobile pequeno (iPhone SE / 360px) */
@media (max-width: 420px){
  .cc-feature-row{ grid-template-columns: 1fr; }
  .cc-btn{ padding: 12px 14px; }
}

/* =========================================================
   MODAL ULTRA — Responsive (sem mexer no layout desktop)
   ========================================================= */

/* telemóvel: modal vira "sheet" alto e scrollável */
@media (max-width: 980px){

  .modal-ultra-overlay{
    padding: 12px;
    place-items: end center; /* encosta ao fundo tipo sheet */
  }

  .modal-ultra{
    width: 100%;
    height: min(92vh, 860px);
    border-radius: 20px;
  }

  .modal-ultra-top{
    padding: 12px 12px;
  }

  /* 1 coluna */
  .modal-ultra-body{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
  }

  /* LEFT sem rebentar */
  .modal-ultra-left{
    max-height: 220px;     /* fica compacto */
    overflow: auto;        /* scroll só aqui se necessário */
  }

  /* RIGHT pode scrollar normal no mobile */
  .modal-ultra-right{
    height: auto;
    overflow: auto;
    padding-right: 0;
  }

  /* grid2 (how/pay) em 1 coluna */
  .modal-ultra-grid2{
    grid-template-columns: 1fr;
    flex: unset;
  }

  /* desliga “fix bottom player” no mobile para não cortar */
  .modal-ultra-playerinfo-card{
    margin-top: 0 !important;
  }

  /* conteúdos internos deixam de forçar scroll fixo */
  #infoModalHowToClaim,
  #infoModalPayments,
  #infoModalVip{
    overflow: visible;
    padding-right: 0;
  }

  /* payments grid 1 coluna no mobile */
  .modal-ultra-payments-list{
    grid-template-columns: 1fr !important;
  }
}

/* Mobile bem pequeno: aumenta altura da left um bocadinho */
@media (max-width: 420px){
  .modal-ultra-left{ max-height: 250px; }
  .modal-ultra-name{ font-size: 14px; }
}

/* =========================================================
   FIXES UX MOBILE (safe)
   ========================================================= */

/* botões mais “touch friendly” */
@media (max-width: 640px){
  .modal-ultra-close{ width:44px; height:44px; }
  .promo-copy{ width:40px; height:40px; }
}

/* evita zoom iOS em inputs (se tiveres) */
@media (max-width: 640px){
  input, select, textarea { font-size:16px; }
}
/* =========================================
   MOBILE LAYOUT: sidebar em cima, conteúdo em baixo
   (como no RalhaV9)
========================================= */

/* =========================================
   MODAL ULTRA - MOBILE FIX (1 coluna + scroll limpo)
========================================= */
@media (max-width: 900px){

  /* overlay já é fixed - ok */
  .modal-ultra-overlay{
    padding: 10px;
    align-items: flex-end;  /* mais “sheet-like” */
  }

  /* modal ocupa melhor o ecrã */
  .modal-ultra{
    width: 100% !important;
    height: min(92vh, 860px) !important;
    border-radius: 18px !important;
  }

  /* corpo do modal vira 1 coluna */
  .modal-ultra-body{
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 10px !important;

    /* IMPORTANTÍSSIMO:
       não deixes o grid prender o scroll em colunas */
    overflow: auto !important;
  }

  /* esquerda e direita deixam de ter scroll próprio no mobile */
  .modal-ultra-left,
  .modal-ultra-right{
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
  }

  /* os 3 blocos internos que tinhas com overflow também ficam naturais */
  #infoModalHowToClaim,
  #infoModalPayments,
  #infoModalVip{
    overflow: visible !important;
    max-height: none !important;
    padding-right: 0 !important;
  }

  /* grid2 (how/pay) fica 1 coluna no mobile */
  .modal-ultra-grid2{
    grid-template-columns: 1fr !important;
  }

  /* player info em 1 coluna no mobile (já tens mas reforço) */
  .modal-ultra-player{
    grid-template-columns: 1fr !important;
  }

  /* CTA no fundo sempre visível e confortável */
  .modal-ultra-foot{
    padding: 12px !important;
  }
  .modal-ultra-cta{
    padding: 16px 14px !important;
    border-radius: 14px !important;
  }
}
