body {
  background: linear-gradient(135deg, #0f172a 0%, #0b1220 60%, #0f172a 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* deixa o gradiente fixo ao rolar a página */
  background-size: cover;
  /* cobre toda a tela */
  color: #fff;
}

.box-card {
  position: relative;
  display: inline-block;
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center center;
  cursor: pointer;
}

.box-card img {
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform-origin: center center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

/* ====== HOVER ====== */
.box-card:hover {
  transform: translateY(-12px) rotate3d(1, 1, 0, 6deg) scale(1.04);
}

.box-card:hover img {
  filter: drop-shadow(0 18px 30px rgba(0, 200, 255, 0.4)) drop-shadow(0 0 20px rgba(0, 200, 255, 0.25));
}

/* ====== SUAVIZAÇÃO AO VOLTAR ====== */
.box-card:not(:hover) {
  transform: rotate3d(0, 0, 0, 0deg) scale(1);
}

.logo-small {
  height: 40px;
  width: auto;
}

/* --- liberar scroll vertical --- */
html,
body {
  min-height: 100%;
  height: auto;
  overflow-y: auto;
  /* garante rolagem vertical */
  overscroll-behavior-y: auto;
  position: static !important;
}

/* se em algum lugar colocaram overflow:hidden global, neutraliza no eixo Y */
* {
  overflow-y: visible;
}

/* carrossel só com overflow horizontal, sem bloquear o vertical */
.card-strip {
  overflow-x: auto;
  overflow-y: visible;
  /* evita travar rolagem da página */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

/* dá espaço pro navbar fixo não cobrir conteúdo */
body {
  padding-bottom: 72px;
  /* ajuste à altura real do .navbar.fixed-bottom */
}

/* evite full-viewport que corta conteúdo */
main,
.page,
.wrapper {
  min-height: 100%;
  height: auto;
}

/* ===== Scroll estilizado global ===== */

/* Navegadores baseados em WebKit (Chrome, Edge, Opera, Safari) */
::-webkit-scrollbar {
  width: 6px;
  /* largura da barra vertical */
  height: 6px;
  /* altura da barra horizontal */
}

::-webkit-scrollbar-track {
  background: #0b1220;
  /* cor de fundo do trilho */
}

::-webkit-scrollbar-thumb {
  background: var(--bg, radial-gradient(120% 160% at 20% 20%, #2a1752 0%, #1a1032 40%, #130b26 100%));
  border-radius: 8px;
  /* cantos arredondados */
}

::-webkit-scrollbar-thumb:hover {
  background: radial-gradient(120% 160% at 20% 20%, #3b2d77 0%, #2a1f54 50%, #1a1032 100%);
}

/* ===== Firefox ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: #2a1752 #0b1220;
  /* thumb | track */
}

/* ===== Scroll horizontal (como card-strip) ===== */
.card-strip::-webkit-scrollbar {
  height: 5px;
}

.card-strip::-webkit-scrollbar-thumb {
  background: var(--bg, radial-gradient(120% 160% at 20% 20%, #2a1752 0%, #1a1032 40%, #130b26 100%));
  border-radius: 10px;
}

.banner-s2 {
  margin-top: 20px;
}


.title-banner-s2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  text-align: center;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.45);
  z-index: 1;
}




.shine-div {
  position: relative;
  height: 40px;
  /* altura fixa */
  padding: 0 2rem;
  /* remove padding vertical, mantém lateral */
  display: flex;
  /* ativa flexbox */
  align-items: center;
  /* centraliza verticalmente */
  justify-content: center;
  /* centraliza horizontalmente */
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: -1px;
  font-style: italic;

  width: 350px;
}


.shine-div::before {
  content: '';
  position: absolute;
  height: 250%;
  width: 30px;
  top: 0;
  left: -60px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg) translateY(-35%);
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% {
    left: -80px;
  }

  40% {
    left: calc(100% + 20px);
  }

  100% {
    left: calc(100% + 20px);
  }
}

.div-primary {
  background: transparent;
  border-bottom: 1px solid white;
  color: #fff;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  height: 40px;
  width: 350px;
}

.div-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ====== EFEITO DE HOVER SUAVE ESTILO CSGO.NET ====== */

.box-img {
  width: auto;
  height: 200px;
}
.bolder-text{
  font-weight: 700;
  color:#2a1f54!important;
  cursor: pointer;
}
.inventory-bar{
  background: linear-gradient(135deg, #0f172a 0%, #0b1220 60%, #0f172a 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* deixa o gradiente fixo ao rolar a página */
  background-size: cover;
}

@media (max-width: 576px) {
  .item-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
img, video, canvas {
  overflow: hidden;
}
/* ——— Brand strip (logos) ——— */
.brand-strip{
  display:flex; 
  align-items:center; 
  justify-content:center; 
  gap:28px;              /* mais respiro */
  flex-wrap:wrap;
  padding:12px 0 6px;
}

.brand-strip small{
  letter-spacing:.02em; 
  opacity:.85;
  font-size:.95rem;
}

/* separador */
.brand-strip .brand-sep{
  width:1px; 
  height:32px; 
  background:rgba(255,255,255,.18);
}

/* LOGOS GRANDES, FULLCOLOR */
.brand-strip img{
  height:46px;                 /* AQUI aumenta de verdade */
  max-width:210px;
  object-fit:contain;
  opacity:0.92;               /* leve suavização */
  transition: opacity .25s ease, transform .25s ease;
}

.brand-strip img:hover{
  opacity:1;
  transform: translateY(-2px);
}

/* Em telas maiores ainda aumentamos um pouco */
@media (min-width:768px){
  .brand-strip img{
    height:54px;              /* ainda maior no desktop */
    max-width:260px;
  }
  .brand-strip .brand-sep{
    height:40px;
  }
}
/* SECTION DO BANNER */
.banner-s1{
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* FAIXA QUE DESLIZA */
.banner-track{
  display: flex;
  /* não precisa setar width, o flex já deixa com 3x a largura (3 slides de 100%) */
  transform: translateX(0);
  transition: transform .7s ease-in-out;
}

/* CADA BANNER (IMG) */
.banner-slide{
  flex: 0 0 100%;   /* cada slide ocupa 100% da largura visível */
  width: 100%;
  height: auto;     /* mantém proporção natural do SVG/IMG */
  display: block;
  /* SEM object-fit, SEM max-height => nunca corta, nunca distorce */
}

/* Desktop: usar layout natural (sem corte/limite) */
/* ====== FLIP CARD ESTILO CSGO.NET (FIXADO + EFEITO BOX-CARD) ====== */

/* container do card dentro da coluna */
.box-card-flip{
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;          /* largura máxima do card */
  margin: 0 auto;
  perspective: 1200px;
  cursor: pointer;

  /* animação estilo box-card */
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.3s ease;
}

/* bloco que gira */
.box-card-flip-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;       /* garante altura (não some nunca) */
  border-radius: 18px;
  background: none;
  box-shadow: none;
  overflow: visible;          /* deixa a box “solta” sem moldura */
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform .6s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow .3s ease;
}

/* frente + verso ocupando todo o card */
.box-card-face{
  position: absolute;
  inset: 0;
  padding: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* frente: imagem da box */
.box-card-front{
  z-index: 2;
  background: transparent;
}

/* override só aqui pra não brigar com tua .box-img global */
.box-card-front .box-img{
  max-width: 120%;
  max-height: 120%;
  height: auto !important;   /* ignora height:200px global */
  width: auto;
  object-fit: contain;
  transform: scale(1.1);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .48));
  transition:
    transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.35s ease;
}

/* verso: texto */
.box-card-back{
  transform: rotateY(180deg);
  z-index: 1;
  flex-direction: column;
  text-align: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.box-card-back .box-img-back{
  max-width: 120%;
  max-height: 120%;
  height: auto !important;
  width: auto;
  object-fit: contain;
  transform: scale(1.08);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .42));
}

/* ==== EFEITOS AO HOVER (combo flip + tilt + glow) ==== */

/* mesmo “tilt” do box-card antigo */
.box-card-flip:hover{
  transform: translateY(-8px) rotate3d(1, 1, 0, 4deg) scale(1.03);
}

/* flip 3D */
.box-card-flip:hover .box-card-flip-inner{
  transform: rotateY(180deg);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(248, 250, 252, 0.1);
}

/* glow na box da frente (quando visível) */
.box-card-flip:hover .box-card-front .box-img{
  filter:
    drop-shadow(0 18px 30px rgba(0, 200, 255, 0.40))
    drop-shadow(0 0 20px rgba(0, 200, 255, 0.25));
}

/* mobile: só ajusta proporção se quiser */
@media (max-width: 576px){
  .box-card-flip-inner{
    aspect-ratio: 3 / 4; /* mais alto no celular, se preferir */
  }
}

.box-card-tile{
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  transition: transform .2s ease;
}

.box-card-plain{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
}

.box-img-plain{
  max-width: 100%;
  height: auto !important;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .38));
  transition: transform .45s ease, filter .45s ease;
}

.free-ribbon{
  position: absolute;
  top: -12px;
  left: -6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #eaf7ff;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.25);
  transform: rotate(6deg); /* giro invertido */
  pointer-events: none;
  font-size: .78rem;
  z-index: 6; /* garante ficar acima da arte da box */
  white-space: normal;
  line-height: 1.05;
  max-width: 130px;
}

.physical-ribbon{
  position: absolute;
  top: 4px;
  right: -6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6); /* igual à digital */
  color: #f8fafc;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.25);
  transform: rotate(5deg);
  pointer-events: none;
  font-size: .72rem;
  line-height: 1.05;
  white-space: normal;
  max-width: 130px;
  z-index: 6;
}

.digital-ribbon{
  position: absolute;
  top: 4px;
  right: -6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #f8fafc;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.25);
  transform: rotate(5deg);
  pointer-events: none;
  font-size: .72rem;
  line-height: 1.05;
  white-space: normal;
  max-width: 130px;
  z-index: 6;
}

.mobile-scroll-hint {
  position: fixed;
  left: 50%;
  bottom: 99px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  color: #e5e7eb;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 6px;
  z-index: 1050;
}
.mobile-scroll-hint.show {
  display: inline-flex;
}
.mobile-scroll-hint i {
  animation: hint-bounce 1.2s ease-in-out infinite;
}
@keyframes hint-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

.unlock-ribbon{
  position: absolute;
  top: 8px;
  right: -6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #0f172a;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
  transform: rotate(5deg);
  pointer-events: none;
  font-size: .78rem;
  z-index: 7; /* acima da imagem e da tarja free */
  white-space: nowrap;
}

.box-card-tile:hover{
  transform: translateY(-4px);
  box-shadow: none;
}

.box-card-tile:hover .box-img-plain{
  transform: rotate(-3deg);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .42));
}

/* raridades */
.box-card-tile.tile-legendary{
  box-shadow: none;
}
.box-card-tile.tile-legendary .box-card-flip-inner{
  box-shadow: none;
}

.box-card-tile.tile-limited{
  box-shadow: none;
  border-color: transparent;
}
.box-card-tile.tile-limited .box-card-flip-inner{
  box-shadow: none;
}

.box-card-tile.tile-epic{
  box-shadow: none;
}
.box-card-tile.tile-epic .box-card-flip-inner{
  box-shadow: none;
}

.box-card-tile.tile-rare{
  box-shadow: none;
}
.box-card-tile.tile-rare .box-card-flip-inner{
  box-shadow: none;
}

.box-card-tile.tile-uncommon{
  box-shadow: none;
}
.box-card-tile.tile-uncommon .box-card-flip-inner{
  box-shadow: none;
}

.box-card-tile.tile-common{
  box-shadow: none;
}
.box-card-tile.tile-common .box-card-flip-inner{
  box-shadow: none;
}

.box-card-tagline{
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e2e8f0;
  text-transform: none;
  font-size: 0.95rem;
  text-align: center;
}

.limited-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 255, 0.35);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: .8rem;
  margin-top: 4px;
}

.limited-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 6px rgba(168, 85, 247, 0.7);
}

.theme-full-hr {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-color: rgba(148, 163, 184, 0.25);
}

.box-card-tile.premium-boost{
  border-color: transparent !important;
  box-shadow: none !important;
}

.box-card-tile.premium-boost::after{
  content: none !important;
}

.premium-boost{
  position: relative;
  border-color: transparent;
  box-shadow: none;
}
.premium-boost::after{
  content:none;
}
.premium-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, rgba(250, 204, 21, 0.16), rgba(14, 165, 233, 0.18));
  color: #fef9c3;
  border: 1px solid rgba(251, 191, 36, 0.6);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(251, 191, 36, 0.22);
}
.premium-chip.chip-physical,
.premium-chip.chip-boost,
.premium-chip.chip-align{
  font-size: .72rem;
  padding: 5px 10px;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
  max-width: 95%;
  background: rgba(255,255,255,0.05);
  border-width: 1px;
}
.premium-chip.chip-physical{
  border-color: rgba(251,146,60,.8);
  color: #ffd7ae;
}
.premium-chip.chip-physical .pulse-dot{
  background: #f59e0b;
  box-shadow: 0 0 14px rgba(245,158,11,0.85);
}
.premium-chip.chip-boost{
  border-color: rgba(168,85,247,.75);
  color: #e9d5ff;
}
.premium-chip.chip-boost .pulse-dot{
  background: #a855f7;
  box-shadow: 0 0 14px rgba(168,85,247,0.85);
}
.premium-chip.chip-align{
  border-color: rgba(59,130,246,.78);
  color: #dbeafe;
}
.premium-chip.chip-align .pulse-dot{
  background: #60a5fa;
  box-shadow: 0 0 14px rgba(96,165,250,0.85);
}
.premium-chip.chip-over-box{
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 12px);
  max-width: 100%;
  justify-content: center;
  z-index: 3;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.premium-chip .pulse-dot{
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.85);
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes premiumGlow{
  0%, 100% { opacity: 0.9; transform: scale(1);}
  50% { opacity: 1; transform: scale(1.02);}
}
@keyframes pulse{
  0% { transform: scale(0.9); opacity: .8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: .8; }
}

.choose-section{
  margin-top: 36px;
}
.how-it-works-section{
  margin-top: 28px;
}
.how-it-works-shell{
  position: relative;
  background: radial-gradient(130% 180% at 18% 15%, rgba(99,210,255,.14) 0%, rgba(14,23,40,.95) 38%, rgba(8,12,24,.97) 100%);
  border: 1px solid rgba(143,209,255,.18);
  border-radius: 18px;
  padding: 28px 20px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.36), 0 0 0 1px rgba(143,209,255,.06);
  overflow: hidden;
}
.how-it-works-shell::after{
  content:"";
  position:absolute;
  inset:12% 4% auto 58%;
  height:180px;
  background: radial-gradient(90% 90% at 20% 20%, rgba(143,209,255,.18), transparent 65%);
  filter: blur(20px);
  pointer-events:none;
}
.how-it-works-title{
  font-size: clamp(1.8rem, 2.3vw + 1rem, 2.7rem);
}
.how-it-works-sub{
  max-width: 620px;
  margin: 0 auto;
}
.how-it-works-grid{
  position: relative;
  margin-top: 20px;
}
.how-step-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16,24,52,0.96), rgba(9,14,33,0.96));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.how-step-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(143,209,255,.08), transparent 42%);
  opacity:.9;
  pointer-events:none;
}
.how-step-card > *{
  position: relative;
  z-index: 1;
}
.how-step-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
  border-color: rgba(143,209,255,.32);
}
.how-step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.how-step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(99,210,255,.12);
  border: 1px solid rgba(143,209,255,.24);
  color: #8fd1ff;
  font-weight: 900;
  font-size: .95rem;
  box-shadow: 0 0 0 4px rgba(14,165,233,.08);
}
.how-step-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(20,26,47,.94), rgba(14,165,233,.24));
  color: #e8eefc;
  font-size: 1.25rem;
  box-shadow: 0 12px 24px rgba(14,165,233,.18);
}
.how-step-title{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #f8fbff;
}
.how-step-text{
  color: #cbd5f5;
  line-height: 1.6;
  font-size: .98rem;
}
.how-step-text strong{
  color: #8fd1ff;
  font-weight: 800;
}
.choose-hero-row{
  position: relative;
  background: radial-gradient(130% 180% at 18% 15%, rgba(99,210,255,.14) 0%, rgba(14,23,40,.95) 38%, rgba(8,12,24,.97) 100%);
  border: 1px solid rgba(143,209,255,.18);
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.36), 0 0 0 1px rgba(143,209,255,.06);
  overflow: visible;
}
.choose-hero-row::after{
  content:"";
  position:absolute;
  inset:10% 6% 0 55%;
  background: radial-gradient(90% 90% at 20% 20%, rgba(143,209,255,.18), transparent 60%);
  filter: blur(18px);
  pointer-events:none;
}
.eyebrow{
  display: inline-block;
  letter-spacing: .26em;
  font-size: 1.2rem;
  font-weight: 900;
  color: #e8eefc;
  background: linear-gradient(145deg, #141a2f 0%, #1f2945 45%, #0ea5e9 100%);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow:
    0 14px 36px rgba(14, 165, 233, 0.35),
    0 0 0 1px rgba(255,255,255,.18),
    0 0 0 6px rgba(14, 165, 233, 0.15);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
.choose-title{
  font-size: clamp(2.2rem, 3vw + 1rem, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #e2e8f0;
  text-shadow:
    0 12px 30px rgba(0,0,0,.45),
    0 0 18px rgba(143,209,255,.25);
}
.choose-title span{
  color: #8fd1ff;
}
.choose-sub{
  color: #cbd5f5;
  font-size: 1rem;
}
#themes-wrapper{
  margin-top: 18px;
  width: 100%;
}
#themes-wrapper .theme-block{
  width: 100%;
  padding-top: 6px;
  overflow: hidden;
}
#themes-wrapper .theme-block .box-title2{
  margin-bottom: 6px;
}
#themes-wrapper .theme-grid{
  margin-left: 0;
  margin-right: 0;
}
#themes-wrapper .theme-grid > [class*="col-"]{
  padding-left: .5rem;
  padding-right: .5rem;
}
#spotlight-grid .box-card-tile{
  background: transparent;
}
#spotlight-grid{
  overflow: visible;
}
.theme-list-section{
  padding-top: 12px;
}
.album-home-section{
  padding-top: 12px;
}
.album-home-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.album-card{
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(16,24,52,0.95), rgba(9,14,33,0.95));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  text-align: left;
}
.home-album-card .btn{
  white-space: nowrap;
}
.album-reward-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(99,210,255,0.16);
  border: 1px solid rgba(99,210,255,0.3);
  font-weight: 700;
  font-size: .85rem;
  color: #e2e8f0;
}
.album-progress-shell{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 12px;
  padding: 12px;
}
.album-progress{
  background: rgba(148, 163, 184, 0.2);
}
.album-progress .progress-bar{
  background: linear-gradient(90deg, #00e5ff, #7c3aed);
  transition: width .5s ease;
}
.album-card-cover{
  width: 100%;
  max-width: 50%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  margin-inline: auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-card-cover img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.album-card-cover--placeholder{
  color: #94a3b8;
  font-weight: 600;
}
.album-home-empty{
  border-radius: 12px;
  border: 1px dashed rgba(148,163,184,0.4);
  background: rgba(255,255,255,0.02);
  padding: 18px;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
@media (min-width: 1400px){
  /* 6 colunas no desktop grande para mostrar mais caixas */
  #spotlight-grid > .col-lg-3,
  [id^="grid-"] > .col-lg-3{
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media (max-width: 576px){
  .how-it-works-shell{
    padding: 24px 14px 16px;
  }
  .how-step-card{
    padding: 16px;
  }
  .how-step-title{
    font-size: 1.05rem;
  }
  .box-card-tile{
    max-width: none;
    width: 100%;
  }
  .album-home-grid{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce){
  .box-card-flip,
  .box-card-flip-inner,
  .box-card-flip:hover,
  .shine-div,
  .shine-button,
  .shine-button::before{
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .box-card-flip-inner{
    transform: none !important;
  }
}

/* Toast BoxDaJor */
#nb-toast-wrap {
  pointer-events: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  top: auto;
}
.nb-toast {
  min-width: 240px;
  max-width: 320px;
  background: rgba(8, 12, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02);
  color: #e2e8f0;
  padding: 10px 12px;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
.nb-toast-body {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}
.nb-toast:hover {
  transform: translateY(0);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}
.nb-toast-info {
  border-left: 3px solid #63d2ff;
}
.nb-toast-danger {
  border-left: 3px solid #ef4444;
}
.nb-toast-success {
  border-left: 3px solid #22c55e;
}
.nb-toast-warning {
  border-left: 3px solid #f59e0b;
}

/* Loader global BoxDaJor */

.box-placeholder{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(99,210,255,.12), rgba(10,16,32,.9));
  color: #e5edff;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.box-placeholder .bp-icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99,210,255,.16);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #8fd1ff;
  margin: 0 auto 8px;
}
.box-placeholder .bp-text{
  font-weight: 800;
  font-size: 1.2rem;
}
.box-placeholder .bp-sub{
  color: #cbd5f5;
  font-size: .95rem;
}
