/* Velvet — "21" blackjack mini-game styles */

/* Clear the fixed header. Mobile is handled globally in custom.css
   (.elementor first-child). Desktop only needs it on the "content-first" pages
   (prices / girls / team) whose first block starts at the very top. */
@media (min-width: 992px){
  .vel-price-top{ padding-top: 130px; }
  body.page-id-1531 .team.section-padding{ padding-top: 130px !important; }
  .team-single.section-padding{ padding-top: 130px !important; }
}

/* header chip trigger — "Game / 21" badge */
.vel21-trigger{
  display: inline-flex; align-items: center; gap: 8px;
  flex: 0 0 auto; margin-left: 12px; margin-right: 10px;
  padding: 7px 14px; border-radius: 14px;
  background: rgba(255,43,214,.08); border: 2px solid rgba(255,43,214,.85);
  color: var(--vel-neon, #ff2bd6); line-height: 1;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 0 10px rgba(255,43,214,.3);
  transition: background .2s ease, color .2s ease;
}
.vel21-trigger i{ font-size: 17px; }
.vel21-trigger .vel21-lbl{ display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.vel21-trigger .vel21-lbl small{ font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: .85; }
.vel21-trigger .vel21-lbl b{ font-size: 16px; font-weight: 900; line-height: 1; }
.vel21-trigger:hover{ background: rgba(255,43,214,.16); }

/* mobile header row1: logo | … | GIRLS · Game21 · CALL  (MENU bar + dropdown wrap below) */
@media (max-width: 991px){
  .navbar .logo-wrapper{ order: 0; }
  .navbar .logo-img{ max-width: 132px; height: auto; }   /* free up room so the cluster fits */
  .nav-girls{ order: 1; margin-left: auto; }
  .vel21-trigger{ order: 2; margin: 0 0 0 10px; padding: 7px 14px; }
  .navbar .nav-mobile-phone{ order: 3; }
  .navbar .navbar-toggler{ order: 4; }
  .navbar .navbar-collapse{ order: 99; }
}
@media (max-width: 400px){
  .navbar .logo-img{ max-width: 116px; }
  .vel21-trigger{ margin-left: 8px; padding: 6px 11px; gap: 6px; }
  .vel21-trigger i{ font-size: 15px; }
  .vel21-trigger .vel21-lbl b{ font-size: 14px; }
}

/* overlay + modal */
.vel21-overlay{
  position: fixed; inset: 0; z-index: 100000;
  display: none; align-items: center; justify-content: center;
  background: rgba(6,3,8,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 16px;
}
.vel21-overlay.open{ display: flex; }
.vel21-modal{
  position: relative; width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  background: radial-gradient(120% 80% at 50% 0%, rgba(196,55,190,.18), rgba(0,0,0,0) 55%), linear-gradient(160deg, #1b1320 0%, #100b15 100%);
  border: 1px solid rgba(196,55,190,.4); border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  padding: 22px 20px 24px;
}
.vel21-close{
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.08); color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
}
.vel21-close:hover{ background: rgba(255,255,255,.18); }

.vel21-head{ display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.vel21-badge{
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--vel-neon, #ff2bd6), var(--vel-neon2, #b026ff));
  box-shadow: 0 0 16px rgba(255,43,214,.55);
}
.vel21-head h3{ color: #fff; margin: 0; font-size: 22px; line-height: 1.1; }
.vel21-head p{ color: rgba(255,255,255,.6); margin: 4px 0 0; font-size: 12.5px; }

.vel21-row{ margin-bottom: 14px; }
.vel21-label{ color: var(--vel-neon, #ff2bd6); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.vel21-cards{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; min-height: 150px; }

.vel21-card{
  position: relative; width: 98px; height: 150px; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,43,214,.55); background: #0a050c;
  box-shadow: 0 8px 18px rgba(0,0,0,.5);
}
.vel21-card img{ width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.vel21-card .vel21-val{
  position: absolute; top: 6px; left: 6px;
  background: linear-gradient(135deg, var(--vel-neon, #ff2bd6), var(--vel-neon2, #b026ff));
  color: #fff; font-weight: 800; font-size: 14px; line-height: 1;
  padding: 5px 8px; border-radius: 7px; box-shadow: 0 0 8px rgba(255,43,214,.5);
}
.vel21-card .vel21-cap{
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 12px; font-weight: 600; color: #fff; text-align: center; padding: 6px 2px;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,0));
}
.vel21-card.vel21-back{
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #2a1430 0 8px, #1c0d22 8px 16px);
}
.vel21-card.vel21-back .vel21-logo{
  font-weight: 900; font-size: 20px; color: var(--vel-neon, #ff2bd6); text-shadow: 0 0 10px rgba(255,43,214,.7);
}

.vel21-msg{ color: #fff; font-size: 15px; line-height: 1.4; margin: 6px 0 4px; min-height: 22px; }
.vel21-msg.win{ color: #fff; }
.vel21-cta{
  margin: 8px 0 4px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255,43,214,.12); border: 1px solid rgba(255,43,214,.4);
  color: #fff; font-size: 14px;
}
.vel21-cta a{
  display: inline-flex; align-items: center; gap: 6px; margin-left: 6px;
  color: #fff; text-decoration: none; font-weight: 800;
  background: linear-gradient(135deg, var(--vel-neon, #ff2bd6), var(--vel-neon2, #b026ff));
  padding: 6px 14px; border-radius: 50px; box-shadow: 0 0 12px rgba(255,43,214,.5);
}

.vel21-controls{ display: flex; gap: 10px; margin-top: 16px; }
.vel21-btn{
  flex: 1; padding: 13px; border-radius: 12px; border: none; cursor: pointer;
  font-weight: 800; font-size: 15px; letter-spacing: .3px; color: #fff;
  background: linear-gradient(135deg, var(--vel-neon, #ff2bd6), var(--vel-neon2, #b026ff));
  box-shadow: 0 0 16px rgba(255,43,214,.45);
  transition: filter .2s ease, transform .1s ease;
}
.vel21-btn.vel21-stand{ background: linear-gradient(135deg, #555, #2c2c2c); box-shadow: none; }
.vel21-btn:hover{ filter: brightness(1.08); }
.vel21-btn:active{ transform: scale(.97); }

@media (max-width: 480px){
  .vel21-card{ width: 86px; height: 132px; }
  .vel21-cards{ min-height: 132px; gap: 8px; }
  .vel21-head h3{ font-size: 19px; }
}
