:root {
  --painel-top: 380px; /* ajuste aqui o quanto desce o painel central */
}

body {
  background: #241810 url('./images/bg-top.jpg') no-repeat center top;
  background-size: contain;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ececec;
  margin: 0;
  min-height: 100vh;
}


.painel-bg {
  position: relative;             /* Não use fixed! */
  margin: var(--painel-top) auto 40px auto; /* Controla a distância do topo */
  max-width: 1120px;
  min-width: 320px;
  width: 100%;
  background: #e347471c; /* pode ajustar opacidade! */
  border-radius: 18px;
  box-shadow: 0 10px 40px #000a;
  padding: 0 0 32px 0;
  border: 1px solid #ff762f;
  overflow: visible;
  transition: margin-top 0.2s;
}
@media (max-width: 900px) {
  :root {
    --painel-top: 8px !important; /* Ajuste conforme seu gosto */
  }
  .painel-bg {
    min-width: unset;
    margin-top: var(--painel-top) !important;
  }
}


/* Deixe o resto do CSS igual, apenas remova/evite cor de fundo sólida na .painel-bg */


/* MENU DENTRO DO PAINEL */
.main-nav {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 24px 0 16px 0;
  list-style: none;
  background: none;
}
.main-nav li {
  display: inline-block;
}
.main-nav a {
    font-family: 'Times New Roman';
	font-style: italic;
  color: #ffd96c;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 10px 15px;
  border-radius: 7px;
  background: none;
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover,
.main-nav .active {
  background: #ff762f;
  color: #ffd96c;
}

/* COLUNAS PAINEL */
.painel-cols {
  display: flex;
  gap: 28px;
  min-width: 120px;
  padding: 0 26px;
  margin-top: 0;
}

/* COLUNAS LATERAIS E CENTRAL */
.side-left, .side-right {
  flex: 1 1 180px;
  min-width: 160px;
}
.center-main {
  flex: 2 1 520px;
  min-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BLOCO DE CONTEÚDO */
.block {
  background: #00000052;
  border-radius: 10px;
  box-shadow: 0 2px 18px #0007;
  padding: 16px 18px 24px 18px;
  margin-bottom: 22px;
  border: 1px solid #ff762f;
}
.block h2 {
  color: #ffd96c;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 0 14px 0;
  border-bottom: 1px solid #ffd96c33;
  padding-bottom: 8px;
}

/* BOTÕES DO PAINEL */
.painel-btn,
a.painel-btn {
  width: 100%;
  display: block;
  padding: 10px 0;
  background: #ffd96c;
  border: none;
  border-radius: 8px;
  color: #391d16 !important;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 1px 8px #0002;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.painel-btn:last-child,
a.painel-btn:last-child {
  margin-bottom: 0;
}
.painel-btn:hover,
a.painel-btn:hover {
  background: #ff050082;
  color: #ffd96c !important;
  transform: translateY(-2px) scale(1.03);
}
a.painel-btn.active {
  background: #ffd70022;
  color: #ffd96c !important;
}

.vip-banner {
  margin: 18px auto 30px auto;
  padding: 17px 26px;
  background: linear-gradient(90deg, #ff3838 60%, #d80000 100%);
  color: #fff;
  border-radius: 15px;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 0 35px 10px #ff1818aa;
  letter-spacing: 0.7px;
  text-shadow: 0 2px 8px #aa1212bb;
  transition: box-shadow 0.3s;
  animation: vip-glow 1.4s infinite alternate;
  border: 2px solid #fff2;
  text-align: center;
}
@keyframes vip-glow {
  0% { box-shadow: 0 0 15px #ff181866; }
  100% { box-shadow: 0 0 40px 14px #ff1818cc; }
}
.center-content {
  background: #190808;
  border-radius: 10px;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 4px 18px #ff070799;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}
.fb-box {
  background: #14151a;
  border-radius: 7px;
  box-shadow: 0 2px 12px #0005;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  margin-top: 12px;
}
.fb-img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
}
.fb-desc {
  text-align: left;
  color: #ffe082;
  font-size: 15px;
  font-weight: bold;
}
.fb-btn {
  margin: 3px 6px 0 0;
  background: #384fff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 14px;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.18s;
}
.fb-btn:hover { background: #0026aa; }
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0 7px 0;
  font-size: 15px;
}
.status-online::before, .status-offline::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 6px;
}
.status-online::before { background: #27ff6a; animation: pulse 1.2s infinite alternate;}
.status-offline::before { background: #fa3636;}
.status-online { color: #27ff6a; font-weight: bold;}
.status-offline { color: #fa3636; font-weight: bold;}
@keyframes pulse { to { box-shadow: 0 0 8px #28fc66b9; } }
.suporte-banner {
  display: block;
  background: #20242c;
  border-radius: 7px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px #0005;
  margin-top: 6px;
}
.suporte-img-wrap {
  position: relative;
  width: 100%;
  height: 80px; /* ajuste a altura desejada */
  overflow: hidden;
}
.suporte-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 7px;
  filter: brightness(0.45) blur(0.1px);
}
.suporte-texto {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffe082;
  text-shadow: 0 2px 8px #000d;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.5px;
  z-index: 2;
  pointer-events: none;
}
.suporte-texto small {
  display: block;
  font-size: 13px;
  font-weight: normal;
  margin-top: 2px;
  color: #fffbe7;
}

.suporte-online {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 12px;
  color: #20e34a;
  z-index: 3;
  background: #131a1bdd;
  border-radius: 8px;
  padding: 1px 8px 1px 5px;
  display: flex;
  align-items: center;
}
.suporte-dot {
  width: 11px;
  height: 11px;
  background: #20e34a;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  animation: pulse 1.2s infinite alternate;
}
@keyframes pulse { to { box-shadow: 0 0 8px #28fc66b9; } }

.suporte-online { font-size: 12px; color: #20e34a; position: absolute; bottom: 7px; right: 10px;}

footer {
  text-align: center;
  color: #c6bb85;
  font-size: 15px;
  margin-top: 16px;
  padding-bottom: 15px;
}

/* Countdown */
.countdown-box {
  background: linear-gradient(90deg, #ffffff00 70%, #ffffff00 100%);
  border-radius: 13px;
  padding: 16px 18px 13px 18px;
  margin: 16px auto 22px auto;
  max-width: 400px;
  box-shadow: 0 3px 20px #0005;
  text-align: center;
}
.countdown-title {
  color: #ffd96c;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px #000b;
}
#countdown {
  font-size: 2.1em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 12px 0 8px 0;
  text-shadow: 0 2px 8px #0008;
  font-variant-numeric: tabular-nums;  /* ← fixa largura dos números */
}
#countdown span {
  color: #ffd700;
  min-width: 36px;      /* ← aumente se precisar, 36px resolve em qualquer fonte */
  display: inline-block;
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.countdown-event {
  font-size: 15px;
  color: #ffe9ae;
  margin-top: 5px;
  text-shadow: 0 1px 6px #0004;
}
#fuligem-canvas {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;    /* não atrapalha clique */
  z-index: 3;              /* acima do fundo, abaixo de menus */
}
.table-boss-status, .modern-ranking, .top-ranking {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.table-boss-status th, .modern-ranking th, .top-ranking th {
  background: none;
  color: #ffd96c;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 8px 6px;
  border-bottom: 2px solid #232323;
  text-align: left;
  font-weight: bold;
}

.table-boss-status td, .modern-ranking td, .top-ranking td {
  background: #191a22;
  border-bottom: 1px solid #232323bb;
  color: #fff;
  padding: 8px 8px;
  text-align: left;
  font-size: 15px;
  vertical-align: middle;
}

.table-boss-status tr, .modern-ranking tr, .top-ranking tr {
  transition: background 0.15s;
}
.table-boss-status tr:hover, .modern-ranking tr:hover, .top-ranking tr:hover {
  background: #232335;
}

.table-boss-status .boss-alive, .modern-ranking .boss-alive, .top-ranking .boss-alive {
  color: #19ff52 !important; font-weight: bold;
}
.table-boss-status .boss-dead, .modern-ranking .boss-dead, .top-ranking .boss-dead {
  color: #ff5050 !important; font-weight: bold;
}

/* Dê destaque para PVP e PK se desejar (para suas outras tabelas!) */
.top-ranking .pvp, .modern-ranking .pvp { color: #19ff52; font-weight: bold;}
.top-ranking .pk, .modern-ranking .pk { color: #ff5050; font-weight: bold;}
/* --- Ajuste de topo do painel no mobile --- */
@media (max-width: 900px) {
  .painel-bg {
    margin-top: 0 !important;
  }
}
/* VISUAL EXCLUSIVO DO FORMULÁRIO DE CADASTRO */
.register-box {
  background: #19080808;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #515151;
  width: 95%;
  max-width: 370px;
  color: #cacaca;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 24px auto;
  box-shadow: 0 7px 32px #0006;
  transition: box-shadow 0.2s;
}


.register-box img.logo { max-width: 220px; width: 100%; height: auto; margin-bottom: 10px; }
.register-box h2 { margin-bottom: 20px; color: #fff; }
.register-box label { display: block; margin-top: 15px; font-weight: bold; font-size: 14px; text-align: left; }
.register-box input[type="text"], .register-box input[type="password"], .register-box input[type="tel"] {
  width: 100%; padding: 10px; border-radius: 6px; border: 1px solid #555;
  background: #3a3a3a26; color: white; margin-top: 5px; font-size: 14px;
}
.register-box input:focus { outline: none; border-color: #888; }
.captcha-container { display: flex; align-items: center; margin-top: 15px; }
.captcha-container img { height: 40px; margin-right: 10px; border-radius: 5px; }
.captcha-container input { flex: 1; padding: 10px; background: #3a3a3a; color: white; border: 1px solid #555; border-radius: 6px; }
.refresh-captcha { margin-left: 10px; cursor: pointer; color: #88ff88; }
.checkbox-container { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 14px; text-align: left; color: #ccc; }
.checkbox-container input[type="checkbox"] { width: 16px; height: 16px; accent-color: #88ff88; cursor: pointer; }
.checkbox-container label { cursor: pointer; }
.checkbox-container label strong { color: white; }
.checkbox-container a { color: #88ff88; text-decoration: underline; }
.checkbox-container a:hover { color: #aaffaa; }
button#submit-btn, .register-box button[type="submit"] {
  background-color: #f91111; color: white; font-weight: bold; font-size: 16px; padding: 12px; border-radius: 6px; border: 1px solid #ff762f; margin-top: 20px; cursor: pointer; transition: background-color 0.3s ease; width: 100%;
}
button#submit-btn:hover, .register-box button[type="submit"]:hover { background-color: #ff762f; }
.btn-link {
  background: #eb9a00; color: #000000; border: none; font-size:15px;
  border-radius:7px; padding: 10px 18px; margin-top:18px; font-weight:600;
  text-decoration: none; cursor:pointer; display:inline-block;
  width: 90%;
  transition: background 0.2s, color 0.2s;
}
.btn-link:hover { background:#25ff00; color:#000000; }

@media (max-width: 600px) {
  .register-box { padding: 12px 6px; border-radius: 8px; }
}


/* VISUAL EXCLUSIVO INFORMAÇÕES */
.info-section {
  background: linear-gradient(120deg, #391d16 70%, #391d16 100%);
  color: #ffd96c;
  border: 1.5px solid #ff762f;
  border-radius: 14px;
  padding: 25px 26px 17px 26px;
  margin: 26px auto 28px auto;
  max-width: 560px;
  box-shadow: 0 4px 22px #391d16;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.22s;
}

.info-section h1 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #ffd96c;
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px #0007, 0 0 4px #ffd96c44;
  border-bottom: 2px solid #ffd96c33;
  padding-bottom: 7px;
  position: relative;
}

.info-list {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff8de;
}
.info-list b, .info-section b {
  color: #ffd96c;
  font-weight: 700;
  letter-spacing: 1px;
}

.info-section .info-line {
  padding: 5px 0 3px 0;
  font-size: 16px;
  color: #fffde0;
  border-radius: 4px;
  margin-bottom: 2px;
  transition: background 0.2s;
}
.info-section .info-line b {
  color: #ffd96c;
}

.info-section .info-line:hover {
  background: #ff762f;
}

@media (max-width: 640px) {
  .info-section {
    padding: 12px 4px 10px 4px;
    max-width: 99vw;
    font-size: 14px;
  }
  .info-section h1 { font-size: 17px; }
  .info-list, .info-section .info-line { font-size: 14px; }
}
.donate-panel {
  background: #391d16c2;
  border-radius: 16px;
  box-shadow: 0 8px 30px #000a;
  border: 1.5px solid #ff762f;
  padding: 42px 28px 36px 28px;
  text-align: center;
  max-width: 350px;
  margin: 48px auto 0 auto;
}
.donate-title {
  font-family: 'Cinzel', serif;
  color: #ffd96c;
  font-size: 2em;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  font-weight: 700;
  text-shadow: 0 2px 8px #181008cc;
}
.donate-btn {
  background: linear-gradient(90deg, #ffd96c 60%, #ffba1b 100%);
  color: #111;
  font-weight: bold;
  font-size: 1.22em;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  cursor: pointer;
  box-shadow: 0 2px 16px #ffd96c35;
  margin-top: 14px;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.16s;
}
.donate-btn:hover {
  background: linear-gradient(90deg, #ffe69c 60%, #ffd700 100%);
  color: #853f00;
  transform: translateY(-2px) scale(1.045);
}
@media (max-width: 540px) {
  .donate-panel { padding: 18px 5vw; max-width: 97vw;}
  .donate-btn { width: 90%; padding: 14px 0;}
}
.download-btn {
  background: linear-gradient(90deg, #ffd96c 60%, #ffd96c 100%);
  color: #111;
  font-weight: bold;
  font-size: 1.22em;
  border: none;
  border-radius: 10px;
  padding: 10px 1px;
  cursor: pointer;
  box-shadow: 0 2px 16px #ffd96c35;
  margin-bottom: 10px;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.16s;
  width: 100%;
  display: block;
  text-align: center;   /* Centraliza o texto */
  text-decoration: none; /* Remove o sublinhado */
}

.download-btn:hover {
  background: linear-gradient(90deg, #e40505 60%, #e40505 100%);
  color: #ffffff;
  transform: translateY(-2px) scale(1.045);
}
