/* ==========================================================================
   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:250px; 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 */
  }
}




/* ===== Banner de Cookies - TioLeoBPT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(7, 10, 20, 0.98);
  color: #f1f1f1;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.6);
}

.cookie-texto {
  flex: 1 1 260px;
  line-height: 1.4;
}

.cookie-link {
  color: #ffb74d;
  text-decoration: underline;
}

.cookie-link:hover {
  text-decoration: none;
}

.cookie-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-btn {
  border: none;
  outline: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.cookie-btn.aceitar {
  background: #ff9800;
  color: #111;
  font-weight: 600;
}

.cookie-btn.aceitar:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.cookie-btn.recusar {
  background: transparent;
  border: 1px solid #888;
  color: #f1f1f1;
}

.cookie-btn.recusar:hover {
  background: rgba(255,255,255,0.08);
}

/* Responsivo */
@media (max-width: 600px) {
  .cookie-banner {
    font-size: 12px;
  }
  .cookie-botoes {
    width: 100%;
    justify-content: flex-start;
  }
}


.meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}
.site-header {
  justify-content: center;
}

.brand {
  position: static;
  left: 72px; /* mesma largura da sidebar fechada */
}



/* HEADER CENTRAL REAL */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: 56px;
  background: #2b2b2b;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;
}

/* bloco do logo */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ================= LAYOUT BASE ================= */
.app-layout{display:flex;min-height:100vh}

.app-content{
  flex:1;
  display:flex;
  flex-direction:column;
  margin-left:220px;
  margin-right: 300px;
  padding-top:56px;
  transition:margin-left .25s ease;
}

/* ================= HEADER (FIXO • YOUTUBE) ================= */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:56px;
  background:#2b2b2b;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  z-index:1000;
}

.brand{display:flex;gap:14px;align-items:center}
.logo{font-family:Orbitron;font-weight:700;color:var(--accent)}
.logo .gold{color:var(--accent-2)}
.meta{text-align:right}
.current-date{font-size:.75rem;color:var(--muted)}
.clock{font-family:Orbitron}

/* ================= SIDEBAR (DESKTOP) ================= */
.sidebar{
  position:fixed;
  top:56px;left:0;bottom:0;
  width:220px;
  background:#0b0b0b;
  display:flex;
  flex-direction:column;
  padding:10px 6px;
  border-right:1px solid rgba(255,255,255,.04);
  overflow-y:auto;
  z-index:900;
}

.side-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px;
  border-radius:10px;
  font-weight:600;
}
.side-item:hover{background:rgba(255,255,255,.06)}
.side-item.active{
  background:rgba(0,234,255,.12);
  color:var(--accent);
}
.side-item .icon{
  width:22px;
  height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ================= MENU DIREITO (MOBILE) ================= */
.main-nav{display:none}

/* ================= HAMBURGER (DIREITA) ================= */
.nav-toggle{
  display:none;
  background:none;
  border:none;
}

.nav-toggle-bar{
  width:22px;
  height:2px;
  background:var(--text);
  position:relative;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:var(--text);
  transition:.2s;
}
.nav-toggle-bar::before{top:-6px}
.nav-toggle-bar::after{top:6px}

/* X quando 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)
}

/* ================= RESPONSIVO ================= */
@media (max-width:1024px){
  .sidebar{display:none}
  .app-content{margin-left:0}

  .nav-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    right:16px;
  }

  .main-nav{
    position:absolute;
    top:56px;
    right:12px;
    display:none;
    flex-direction:column;
    gap:6px;
    padding:12px;
    background:rgba(0,0,0,.95);
    border-radius:12px;
    min-width:180px;
    z-index:3000;
  }

  .site-header.nav-open .main-nav{
    display:flex;
  }

  .nb-wrapper{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:360px){
  .nb-wrapper{grid-template-columns:1fr}
}
/* ======================================================
   SIDEBAR — ESTILO YOUTUBE (DESKTOP)
   ====================================================== */

/* estado normal (aberta) */
.sidebar {
  transition: width .25s ease;
}

/* botão hamburguer da sidebar (esquerda) */
.sidebar-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  margin-bottom: 8px;
  padding-left: 12px;
}

/* quando sidebar estiver FECHADA */
body.sidebar-collapsed .sidebar {
  width: 72px;
}

/* conteúdo acompanha a sidebar */
body.sidebar-collapsed .app-content {
  margin-left: 72px;
}

/* esconde textos dos itens */
body.sidebar-collapsed .side-item .label {
  display: none;
}

/* centraliza ícones */
body.sidebar-collapsed .side-item {
  justify-content: center;
}

/* ajusta posição do logo no header */
/*body.sidebar-collapsed .brand {*/
/*  margin-left: -148px; /* compensa sidebar fechada */
/*}/*

/* desktop apenas */
@media (max-width: 1024px) {
  .sidebar-toggle {
    display: none;
  }
}




/* ajustar os cards */

.main-row {
  display: flex;
  align-items: flex-start;
}

/* Coluna esquerda (avatar + preview) */
.fixed-side {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

@media (max-width: 860px) {

  /* Coluna fixa mais compacta */
  .fixed-side {
    gap: 8px;
  }

  /* Avatar menor */
  #avatarLarge {
    width: 25px;
    height: 25px;
    margin: 0 auto 3px;
  }

  #avatarLarge img {
    width: 25px;
    height: 25px;
  }

  /* Preview mais compacto */
  #previewBox {
    padding: 8px;
    font-size: 13px;
  }

  /* Linhas do preview mais enxutas */
  #previewBox .small {
    font-size: 12px;
    line-height: 1.3;
  }
}

.itens-alert{
  background: linear-gradient(180deg, #0e1a22, #0b1114);
  border: 1px solid rgba(255, 201, 76, 0.35);
  border-left: 4px solid #f2c94c;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  color: #dfe7ee;
  font-size: 14px;
}

.itens-alert strong{
  color: #f2c94c;
  display: block;
  margin-bottom: 6px;
}

.itens-alert p{
  margin: 6px 0 0;
  line-height: 1.5;
}


/* ===============================
   SIDEBAR DIREITA — GLOBAL
   =============================== */

#right-sidebar-fixed {
  position: fixed;
  top: 25px;
  right: 0;

  width: 330px;
  height: calc(100vh - 56px);

  background: #050505;
  border-left: 1px solid rgba(255,255,255,0.06);

  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;

  z-index: 80;
}

/* blocos */
#right-sidebar-fixed .rs-widget {
  background: #0b0b0b;
  border-radius: 12px;
  padding: 12px;
  box-shadow: inset 0 0 0 1px #111;
}

/* título */
#right-sidebar-fixed .rs-title {
    margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* lista de stats */
.rs-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}

.rs-stats li:last-child {
  border-bottom: none;
}

.rs-stats .label {
  font-size: 12px;
  color: var(--muted);
}

.rs-stats .value {
  font-family: Orbitron, monospace;
  font-size: 14px;
  color: var(--accent-2);
}

/* banners */
.rs-banners {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rs-banners img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform .2s ease;
}

.rs-banners img:hover {
  transform: scale(1.04);
}

/* some no mobile */
@media (max-width: 1300px) {
  #right-sidebar-fixed {
    display: none;
  }
}

.login-card {
      width: 100%;
      max-width: 420px;
      background: #0b0b0b;
      border-radius: 14px;
      padding: 32px 26px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.75);
      border: 1px solid rgba(255,255,255,0.05);
      text-align: center;
    }

    .login-logo {
      font-family: Orbitron, sans-serif;
      font-size: 1.8rem;
      color: #00eaff;
      margin-bottom: 6px;
    }

    .login-logo span {
      color: #ffd564;
    }

    .login-subtitle {
      font-size: 0.9rem;
      color: #9a9a9a;
      margin-bottom: 28px;
    }

    .login-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      background: linear-gradient(90deg, #00eaff, #4ae0ff);
      color: #000;
      transition: transform .15s ease, box-shadow .15s ease;
    }

    .login-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0,234,255,0.35);
    }

    .login-footer {
      margin-top: 22px;
      font-size: 0.75rem;
      color: #7d7d7d;
    }


/* Centraliza o footer apenas nesta página */
footer {
  text-align: center;
  padding: 12px 0 18px;
  font-size: 0.8rem;
  color: var(--muted);
}


