/* ==========================================================================
   style.css — arquivo unificado e definitivo (opção 1)
   - header, layout, carrossel, hero cards, boss list, sponsors, roulette,
     modal, whatsapp float, top-timebosses (com destaque colorido)
   - sem duplicações e sem sobrescrever variáveis globais do tema
   ========================================================================== */

/* -------------------------
   Root variables (palette)
   ------------------------- */
:root{
  --bg: #050505;
  --panel: #0b0b0b;
  --glass: rgba(255,255,255,0.025);
  --accent: #00eaff;        /* NÃO ALTERAR: cor global principal (mantida) */
  --accent-2: #ffd564;      /* dourado */
  --text: #e6e6e6;
  --muted: #9a9a9a;
  --danger: #ff6b6b;
  --radius: 12px;
  --max-width: 1200px;
  --shadow-weak: 0 6px 20px rgba(0,0,0,0.45);
  --glass-strong: rgba(0,0,0,0.18);
}

/* -------------------------
   Global base
   ------------------------- */
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--text);background:linear-gradient(180deg,var(--bg),#070707);-webkit-font-smoothing:antialiased}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* -------------------------
   Header
   ------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.45));
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.brand{display:flex;gap:14px;align-items:center}
.logo{font-family:Orbitron, sans-serif;font-weight:700;color:var(--accent);font-size:1.3rem}
.logo .gold{color:var(--accent-2)}
.meta{display:flex;flex-direction:column;text-align:right}
.current-date{font-size:0.75rem;color:var(--muted)}
.clock{font-family:Orbitron;font-size:0.95rem;color:var(--text)}
.main-nav{display:flex;gap:10px}
.main-nav a{padding:6px 8px;border-radius:8px;color:var(--muted);font-weight:600}
.main-nav a.active{color:var(--accent);background:rgba(0,0,0,0.18)}

/* -------------------------
   Layout: centered main content
   ------------------------- */
.main.centered{
  display:flex;
  justify-content:center;
  padding:18px;
  margin:18px auto;
}
.content{
  width:100%;
  max-width:var(--max-width);
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:0 12px;
}

/* -------------------------
   Section titles
   ------------------------- */
.section-title{font-family:Orbitron;color:var(--accent);font-size:1.2rem;margin:0}

/* =========================
   Top-TimeBosses (painel acima do site)
   ========================= */
.top-timebosses {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03));
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.top-timebosses-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ttb-title h3 { font-family:Orbitron; color:var(--accent); margin:0; font-size:1.05rem; text-align:center; }
.ttb-title .muted { color:var(--muted); font-size:0.80rem; margin-top:2px; text-align:center; }

/* grid */
.ttb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
  justify-items: center;
}

/* card */
.ttb-card {
  width: 100%;
  max-width: 180px;
  background: rgba(255,255,255,0.03);
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-weak);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ttb-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.65); }
.ttb-card .srv-name { font-family:Orbitron; color:var(--accent-2); font-size:0.95rem; text-align:center; margin-bottom:8px; letter-spacing:0.5px; }
.ttb-list { display:flex; flex-direction:column; gap:6px; }

/* each subserver line */
.ttb-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:6px 8px; border-radius:8px; background: rgba(255,255,255,0.01);
}
.ttb-item .sub-name { color:var(--accent); font-size:1.2rem; }
.ttb-item .sub-time { color:#d8d8d8; font-family:Arial, Helvetica, sans-serif; font-size:1.2rem; font-weight:700; }

/* colors for imminence (only here) */
/* GREEN: 5-4 min */
.ttb-item.imminent-green {
  background: rgba(0,255,140,0.15);
  border-left: 3px solid #00ff8c;
}
.ttb-item.imminent-green .sub-time { color: #ffffff; font-weight:900; }

/* YELLOW: 3 min */
.ttb-item.imminent-yellow {
  background: rgba(255,213,100,0.12);
  border-left: 3px solid #ffd564;
}
.ttb-item.imminent-yellow .sub-time { color: #ffffff; font-weight:900; }

/* RED: 2-1 min */
.ttb-item.imminent-red {
  background: rgba(255,80,80,0.15);
  border-left: 3px solid #ff5050;
}
.ttb-item.imminent-red .sub-time { color: #ffffff; font-weight:900; }

/* Pulse only when <=1min (applied in JS as .pulse) */
.ttb-item.pulse {
  animation: ttb-pulse 1s infinite ease-in-out;
}
@keyframes ttb-pulse {
  0% { transform: translateY(-2px); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(-2px); }
}

/* responsiveness for top-timebosses */
@media (max-width: 980px) { .ttb-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 650px) { .ttb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .ttb-grid { grid-template-columns: 1fr; } }

/* =========================
   Carousel (hero cards)
   ========================= */
.carousel-wrapper{ overflow:hidden; padding:6px 0; }
.carousel{ position:relative; overflow:hidden; border-radius:12px; }
.carousel-track{ display:flex; gap:12px; transition:transform .6s cubic-bezier(.2,.9,.3,1); will-change:transform; padding:6px; }
.hero-card{ background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.01)); min-width:320px; border-radius:12px; padding:10px; display:flex; gap:12px; align-items:center; box-shadow: var(--shadow-weak); transform: translateZ(0); }
.hero-thumb{ width:120px; height:84px; border-radius:8px; overflow:hidden; flex:0 0 120px; }
.hero-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-body{ flex:1; display:flex; flex-direction:column; gap:6px; }
.hero-title{ font-family:Orbitron; font-size:1rem; color:var(--accent); }
.hero-sub{ color:var(--muted); font-size:0.85rem; }
.hero-countdown{ font-family:Orbitron; font-size:1rem; background: linear-gradient(90deg, rgba(0,234,255,0.04), rgba(255,213,100,0.02)); padding:6px 8px; border-radius:8px; display:inline-block; }
.hero-actions{ display:flex; gap:8px; }

/* carousel controls */
.carousel-controls{ display:flex; align-items:center; gap:8px; justify-content:flex-end; }
.carousel-btn{ background:transparent; border:1px solid rgba(255,255,255,0.04); padding:6px 10px; border-radius:8px; color:var(--muted); cursor:pointer; }
.carousel-dots{ display:flex; gap:6px; align-items:center; }
.dot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.06); cursor:pointer; }
.dot.active{ background:var(--accent); box-shadow:0 0 10px rgba(0,234,255,0.12); }

/* =========================
   Boss List
   ========================= */
.boss-list-section { background: var(--glass); padding:12px; border-radius:10px; }
.boss-list { display:grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap:12px; }
.boss-card { background: linear-gradient(180deg,#080808,#0e0e0e); border-radius:10px; padding:10px; display:flex; flex-direction:column; gap:8px; align-items:center; transition:transform .18s ease, box-shadow .18s ease; }
.boss-card:hover { transform:translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.6); }
.boss-card img{ width:100%; height:110px; object-fit:cover; border-radius:8px }
.boss-card .name { font-family:Orbitron; color:var(--accent-2); font-size:1rem; }
.boss-card .hours { color:var(--muted); font-size:0.9rem; }
.card-actions{ display:flex; gap:8px; width:100%; }

/* =========================
   Sponsors Grid
   ========================= */
.sponsors-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap:12px; }
.sponsor{ background: var(--panel); padding:8px; border-radius:8px; display:flex; align-items:center; justify-content:center; }
.sponsor img{ max-width:100%; height:100px; object-fit:contain; }
/* Seção de apoiadores extra usa o mesmo estilo que a original */
#sponsors-extra {
  margin-top: 40px;
}

#sponsors-extra .section-title {
  margin-bottom: 25px;
}

/* Os cards seguem o mesmo padrão */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.sponsor-card {
  background: #0a0a0a;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 0 12px #000;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sponsor-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px var(--blueNeon);
}

.sponsor-card img {
  width: 100%;
  border-radius: 8px;
}


/* =========================
   Roulette
   ========================= */
.roleta-section { background: var(--glass); padding:12px; border-radius:10px; }
.roulette-panel { display:flex; gap:16px; align-items:flex-start; flex-wrap:wrap; }
.roulette-left { position:relative; display:flex; flex-direction:column; align-items:center; gap:10px; }
.wheel { width:320px; height:320px; border-radius:50%; position:relative; border:6px solid rgba(255,255,255,0.03); overflow:hidden; background: conic-gradient(from 0deg, var(--accent) 0deg, #ffd564 45deg, var(--accent) 90deg, #ffd564 135deg, var(--accent) 180deg, #ffd564 225deg, var(--accent) 270deg, #ffd564 315deg); }
.wheel .slice { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:0.9rem; color:#000; }
.roulette-right { flex:1; min-width:260px; }
.tier { padding:8px; background: rgba(0,0,0,0.18); border-radius:8px; margin-bottom:8px; }
.roulette-actions { display:flex; gap:8px; margin-top:8px; }
.roulette-history { list-style:none; padding:0; margin:8px 0; max-height:180px; overflow:auto; }
.roulette-history li { padding:6px; border-bottom:1px dashed rgba(255,255,255,0.03); font-size:0.9rem; }

/* =========================
   Modal
   ========================= */
.modal { display:none; position:fixed; inset:0; align-items:center; justify-content:center; background:rgba(0,0,0,0.6); z-index:120; }
.modal-card { background:#0b0b0b; padding:16px; border-radius:10px; max-width:900px; width:92%; position:relative; }
.modal-close { position:absolute; top:10px; right:10px; background:none; border:none; color:var(--muted); font-size:1.2rem; cursor:pointer; }
.modal-card img{ width:100%; height:auto; border-radius:8px }
.modal-desc { color:var(--muted); margin-top:8px; }

/* =========================
   WhatsApp floating
   ========================= */
.whatsapp-float { position:fixed; bottom:20px; right:20px; background:linear-gradient(180deg,#25d366,#00bfa5); color:white; border-radius:50%; width:60px; height:60px; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 20px rgba(0,0,0,0.5); z-index:200; }
.whatsapp-float img{ width:28px; height:28px; }

/* =========================
   Helpers & Buttons
   ========================= */
.btn{ background:transparent; border:1px solid rgba(255,255,255,0.06); padding:7px 10px; border-radius:8px; color:var(--text); font-weight:700; cursor:pointer; }
.btn.primary{ background: linear-gradient(90deg, var(--accent), #4ae0ff); color:#000; border:none; }

/* -------------------------
   Small screens responsive
   ------------------------- */
@media (max-width:1024px){
  .content{ padding:0 12px; }
  .carousel-track{ gap:8px; }
  .wheel{ width:240px; height:240px; }
  .roulette-right{ min-width: unset; width:100%; }
  .roulette-panel{ flex-direction:column; }
  .ttb-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:420px){
  .hero-card{ min-width:100px; }
  .ttb-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:360px){
  .boss-list{ grid-template-columns: repeat(2, 1fr); }
  .ttb-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* === CARROSSEL CENTRAL DE PATROCINADORES === */

.central-sponsor {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0 22px;
}

.central-sponsor-inner {
  width: 100%;
  max-width: 800px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.central-sponsor-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.central-sponsor-track {
  display: flex;
  transition: transform .6s cubic-bezier(.2,.9,.3,1);
}

.central-sponsor-item {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.central-sponsor-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* dots */
.central-sponsor-dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.central-sponsor-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease;
}

.central-sponsor-dots .dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,234,255,0.4);
}

/* mobile */
@media (max-width: 520px) {
  .central-sponsor-inner { padding: 0 10px; }
  .central-sponsor-item img { border-radius: 10px; }
}

/* === Remover roda e botões da roleta === */

#wheel,
#spin-btn,
#spin-fast-btn {
    display: none !important;
}

.roulette-controls {
    display: none !important;
}

/* =========================
   Next Bosses - TioLeo BPT
   ========================= */

.next-bosses {
  padding: 22px 12px;
  margin-top: 18px;
  background: transparent;
}

.next-bosses .section-title{
  font-family:Orbitron, sans-serif;
  color: var(--accent);
  text-align:center;
  margin-bottom: 16px;
  font-size:1.35rem;
}

/* wrapper com colunas por servidor */
.nb-wrapper{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 0 12px;
}

/* bloco servidor */
.server-block{
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(0,0,0,0.02));
  border-radius: 10px;
  padding: 10px;
  min-height: 160px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.03);
}

/* titulo do servidor */
.server-block > h3{
  font-family: Orbitron, sans-serif;
  color: var(--accent-2);
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  text-align: center;
}

/* area de cards por servidor */
.server-bosses{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* card do boss */
.nb-card{
  flex: 0 0 160px !important;
  min-width: 120px !important;
  max-width: 160px !important; 
  gap:10px;
  align-items:center;
  background: linear-gradient(180deg,#0b0b0b, #0f0f0f);
  padding:8px;
  border-radius:10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  border-left: 3px solid rgba(255,255,255,0.02);
}

/* thumbnail */
.nb-thumb{
  width:72px;
  height:64px;
  min-width:72px;
  border-radius:8px;
  overflow:hidden;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.nb-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

/* corpo do card */
.nb-body{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* nome e info */
.nb-title{ font-family:Orbitron; color:var(--accent); font-size:0.95rem; }
.nb-sub{ color:var(--muted); font-size:0.78rem; }

/* tempo e ações */
.nb-row{ display:flex; align-items:center; gap:8px; justify-content:space-between; margin-top:4px; }
.nb-count{ font-family: 'Orbitron', monospace; background: rgba(255,255,255,0.02); padding:6px 8px; border-radius:8px; font-size:0.95rem; color:var(--text); min-width:94px; text-align:center; }
.nb-actions{ display:flex; gap:8px; align-items:center; }

.nb-actions .btn{ padding:6px 8px; font-size:0.78rem; border-radius:8px; }
.btn.roleta{ background: linear-gradient(90deg,var(--accent), #4ae0ff); color:#000; border:none; padding:6px 10px; }

/* destaque quando multsubs */
.nb-multi { border-left-color: #ffd564; }

/* mobilidade */
@media (max-width:1200px){
  .nb-wrapper{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:720px){
  .nb-wrapper{ grid-template-columns: repeat(1, 1fr); }
  .nb-card{ align-items:flex-start; }
  .nb-thumb{ width:84px; height:72px; min-width:84px; }
}

/* ===== Ajustes Next-Bosses: largura do banner, título sem servidor, botões abaixo do contador ===== */

.next-bosses {
  padding: 18px 12px 36px;
  margin-top: 18px;
}

/* força a largura máxima igual ao banner (ajuste 1100px se necessário) */
.next-bosses .nb-wrapper{
  max-width: 1100px; /* <- ajuste aqui conforme o banner */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}

/* bloco servidor */
.server-block{
  background: linear-gradient(180deg, rgba(255,255,255,0.016), rgba(0,0,0,0.02));
  border-radius: 10px;
  padding: 10px;
  min-height: 150px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.03);
}

/* titulo do servidor (fica acima da coluna) */
.server-block > h3{
  font-family: Orbitron, sans-serif;
  color: #f7c548; /* amarelo */
  margin: 0 0 10px 0;
  font-size: 1.02rem;
  text-align: center;
}

/* cards verticais dentro da coluna */
.server-bosses{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items: stretch;
}

/* CARD - tamanho reduzido e consistente */
.nb-card{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background: linear-gradient(180deg,#0b0b0b, #0f0f0f);
  padding:10px;
  border-radius:10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  border-left: 3px solid rgba(255,255,255,0.02);
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 240px; /* controla largura do card */
  width: 100%;
}

/* thumbnail menor */
.nb-thumb{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:8px;
  overflow:hidden;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}
.nb-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

/* corpo do card */
.nb-body{
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
}

/* título: agora só o nome do boss (sem servidor) */
.nb-title{
  font-family:Orbitron, sans-serif;
  color: var(--accent, #00e2ff);
  font-size:0.92rem;
  line-height:1.0;
}

/* sub info (hora — subservers) */
.nb-sub{
  color:var(--muted, #9aa6ad);
  font-size:0.75rem;
}

/* contador e botões empilhados verticalmente */
.nb-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:6px;
  align-items:flex-start;
}

/* contador (maior e centrado no espaço) */
.nb-count{
  font-family: 'Orbitron', monospace;
  background: rgba(255,255,255,0.02);
  padding:6px 8px;
  border-radius:8px;
  font-size:0.88rem;
  color:var(--text, #fff);
  min-width:86px;
  text-align:center;
}

/* ações abaixo do contador */
.nb-actions{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:flex-start;
  margin-top:0;
}

.nb-actions .btn{
  display: none;
  padding:6px 8px;
  font-size:0.78rem;
  border-radius:8px;
}

/* estilo especial para botao roleta */
.btn.roleta{
  background: linear-gradient(90deg,#00e7ff,#2be3a7);
  color:#001218;
  border: none;
}

/* destaque se tem vários subs */
.nb-multi { border-left-color: #ffd564; }

/* responsividade */
@media (max-width:1200px){
  .nb-wrapper{ grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
  .nb-card{ max-width: 100%; min-width: auto; }
}
@media (max-width:720px){
  .nb-wrapper{ grid-template-columns: 1fr; padding: 0 8px; }
  .nb-card{ flex-direction:row; gap:10px; }
  .nb-thumb{ width:72px; height:64px; min-width:72px; }
  .nb-count{ min-width: 88px; }
}

/* Alinhar botões à esquerda dentro do card */
.nb-meta {
    align-items: flex-start !important;
}

/* Garantir que o bloco de botões fique realmente colado à esquerda */
.nb-actions {
    justify-content: flex-start !important;
    align-self: flex-start !important;
}

/* ===== NEXT BOSSES - compact vertical card layout ===== */

.server-block { padding: 14px 12px; }
.server-block > h3 { margin-bottom: 12px; }

/* Card vertical e compacto */
.nb-card {
  display: flex;
  flex-direction: column;
  align-items: center;     /* centraliza conteúdo */
  justify-content: flex-start;
  gap: 10px;
  background: linear-gradient(180deg,#090909, #0f0f0f);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.03);
  width: 100%;
  max-width: 220px;        /* controla largura do card (ajuste se quiser menor) */
  margin: 0 auto;
}

/* destaque lateral quando multi subs (mantido) */
.nb-card.nb-multi {
  box-shadow: 0 8px 30px rgba(255,213,100,0.06);
  border-left: 4px solid #ffd564;
}

/* título (somente boss) */
.nb-title {
  font-family: Orbitron, sans-serif;
  font-size: 1rem;
  color: var(--accent, #00e2ff);
  text-align: center;
  line-height: 1;
}

/* subtítulo (hora e subs) */
.nb-sub {
  font-size: 0.78rem;
  color: var(--muted, #9aa6ad);
  text-align: center;
}

/* thumbnail central maior */
.nb-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6) inset;
}
.nb-thumb img { width:100%; height:100%; object-fit:cover; display:block; }

/* contador grande e destacado */
.nb-count {
  font-family: 'Orbitron', monospace;
  font-size: 0.96rem;
  color: #ffffff;
  background: rgba(255,255,255,0.03);
  padding: 8px 10px;
  border-radius: 8px;
  text-align: center;
  min-width: 86px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* area de ações: dois botões lado a lado, centralizados */
.nb-actions {
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;  /* centraliza os botões */
  width:50%;
}

/* botões (estilo compacto) */
.nb-actions .btn{
  padding:8px 10px;
  font-size:0.82rem;
  border-radius:8px;
  border: none;
  cursor: pointer;
  min-width:60px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.35);
}

/* Estilo específico para 'Ver Local' */
.nb-actions .btn.map-btn{
  background: rgba(0,0,0,0.38);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Estilo para Roleta (destaque) */
.nb-actions .btn.roleta{
  background: linear-gradient(90deg,#00e7ff,#2be3a7);
  color:#001218;
}

/* espaçamento final */
.server-bosses { gap: 14px; }

/* Responsividade: em telas pequenas, as colunas ficam 1 por linha e os cards encolhem */
@media (max-width: 1200px){
  .nb-wrapper { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
  .nb-card { max-width: 210px; }
  .nb-thumb { width:72px; height:72px; }
}
@media (max-width: 720px){
  .nb-wrapper { grid-template-columns: 1fr; }
  .nb-card { max-width: 320px; }
  .nb-thumb { width:84px; height:84px; }
}

.nb-title {
    text-shadow:
        0 0 10px rgba(0, 255, 255, 1),
        0 0 25px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.7),
        0 0 55px rgba(0, 255, 255, 0.5);
}





/* =========================
   End of file
   ========================= */

   /* ==== AJUSTE RESPONSIVO FINAL - NEXT BOSSES ==== */

#next-bosses {
  width: 100%;
}

#next-bosses .nb-wrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1100px;   /* mesmo limite do banner/topo */
  margin: 0 auto;
  padding: 0 8px;
}

/* card ocupa sempre 100% da coluna, evitando quebra estranha */
#next-bosses .nb-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* ========= BREAKPOINTS ========= */

/* Notebooks menores / telas médias */
@media (max-width: 1100px) {
  #next-bosses .nb-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablets em pé / telas intermediárias */
@media (max-width: 900px) {
  #next-bosses .nb-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablets pequenos / celulares grandes */
@media (max-width: 720px) {
  #next-bosses .nb-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #next-bosses .nb-card {
    max-width: 100%;
  }
}

/* Celulares pequenos */
@media (max-width: 360px) {
  #next-bosses .nb-wrapper {
    grid-template-columns: 1fr;
  }

  #next-bosses .nb-card {
    max-width: 320px;
    margin: 0 auto; /* centraliza o card na coluna única */
  }
}


/* ============================
   MENU HAMBURGUER (RESPONSIVO)
   ============================ */

/* botão hamburguer – escondido no desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 10px;
}

/* barrinhas do hamburguer */
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle-bar::before {
  top: -6px;
}
.nav-toggle-bar::after {
  top: 6px;
}

/* estado "X" quando menu aberto */
.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}
.site-header.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .site-header{
    position: sticky;
    top: 0;
  }

  /* mostra o botão */
  .nav-toggle {
    display: block;
  }

  /* some com o menu padrão */
  .main-nav {
    position: absolute;
    top: 100%;
    right: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(0,0,0,0.92);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    min-width: 170px;
  }

  .main-nav a {
    display: block;
    padding: 8px 10px;
    text-align: right;
  }

  /* quando abrir o menu */
  .site-header.nav-open .main-nav {
    display: flex;
  }
}
