/* #1 rank badge sitting inside the home category grid between the active
   (6) and coming-soon (6) blocks. Spans the full grid row width on every
   breakpoint via grid-column:1/-1. */

.uaepc-rank-stage{
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
  border-radius: 16px;
  padding: 36px 22px;
  margin: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Soft gold halo behind the badge so it feels luminous against the dark stage */
.uaepc-rank-stage::before{
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,31,0.16), transparent 60%);
  pointer-events: none;
}

.uaepc-rank-badge{
  position: relative;
  display: inline-block;
  background: #FFCC1F;
  border: 4px solid #0a0e1a;
  border-radius: 14px;
  padding: 20px 34px 24px;
  text-align: center;
  font-family: 'Inter', 'Arial Black', 'Vazirmatn', sans-serif;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #0a0e1a;
  font-weight: 900;
  text-transform: uppercase;
  direction: ltr;   /* keep the "#1" at the start no matter the page dir */
  box-shadow: 0 12px 30px rgba(255, 204, 31, 0.35), 0 0 0 4px rgba(255, 204, 31, 0.18);
}
.uaepc-rank-badge .b-line1{
  font-size: 64px;
  letter-spacing: -0.025em;
  display: block;
  white-space: nowrap;
}
.uaepc-rank-badge .b-line2{
  font-size: 18px;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 8px;
  white-space: nowrap;
}

/* Tablet & mobile — scale down so it never overflows the grid */
@media (max-width: 720px){
  .uaepc-rank-stage{ padding: 24px 14px; border-radius: 13px; margin: 10px 0 }
  .uaepc-rank-badge{ padding: 14px 20px 18px; border-width: 3px; border-radius: 11px }
  .uaepc-rank-badge .b-line1{ font-size: 38px }
  .uaepc-rank-badge .b-line2{ font-size: 12px; margin-top: 6px }
}
@media (max-width: 380px){
  .uaepc-rank-badge .b-line1{ font-size: 30px }
  .uaepc-rank-badge .b-line2{ font-size: 10.5px; white-space: normal }
}
