@import url(root.css);
@import url(no-strap.css);

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 0;
  outline: none;
}
a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0 !important;
}

ul {
  margin: 0;
  padding: 0;
}

body {
    background-color: #000; /* Fundo preto sólido */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Removemos todas as outras configs de background-image daqui */
}
i {
  color: var(--color-text-dark);
  font-size: 20px;
  cursor: pointer;
}
i:hover {
  color: var(--color-padrao);
  transition: all 0.9s ease;
}
.wrap {
  width: 100%;
  position: relative;
  margin-top: 600px;
}

.page-body,
.page-title {
  padding: 10px;
}

.navbar {
  background: #2a2a2a;
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding: 0;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 2px solid transparent;
}

.nav-container {
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#rankings-tab .nav-item button.active {
  background-color: #fff;
  color: initial;
  position: relative;
}

#rankings-tab .nav-item button {
  color: var(--color-padrao);
}

#rankings-tab .nav-item button:hover {
  color: initial;
}

#rankings-tab .nav-item button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.nav-menu {
  display: flex;
  list-style: none;
  padding: 30px 0;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  background-color: var(--color-text-span);
  box-shadow: var(--box-shadow);

  transition: all 0.3s ease;
}

.nav-link-event {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link-event::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #626262;
}
.nav-link-event:hover {
  background-color: var(--color-text-span);
  box-shadow: var(--box-shadow);

  transition: all 0.3s ease;
}
.dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.flag-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.active-flag {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.language-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.language-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
}

.language-selector .dropdown-icon {
  width: 12px;
  height: 12px;
  color: #ffffff;
}
.language-current {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-btn {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 20px 30px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-btn:hover {
  color: var(--color-padrao);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 4px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 50px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.dropdown-item-new {
  min-width: 230px;
  padding: 10px !important;
}

.dropdown-item {
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 10px;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-option {
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  display: flex;

  align-items: left;
  gap: 10px;
  transition: background 0.2s ease;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.container {
  background-color: #fff;
}

.container-base {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  background-color: #000;
}
.container-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/bg-containe.png");
  background-repeat: repeat-y; /* repete apenas para baixo */
  background-position: top center; /* centraliza a imagem */
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
}

.main-content {
  min-height: 100vh;
  margin: 0 auto;
}

.sidebar {
  flex: 1;
}
.news-section h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.news-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card h3 {
  margin-bottom: 10px;
  color: #3498db;
}

.news-card p {
  color: #7f8c8d;
  margin-bottom: 15px;
}

.news-card .date {
  font-size: 0.8rem;
  color: #bdc3c7;
}

.sidebar-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 8px 0px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}

.sidebar-section h3 {
  color: var(--color-text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.sidebar-header a {
  text-decoration: none;
}
.contact-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.8rem;
}
.text-bold {
  font-weight: 600;
  color: var(--color-text-span);
  font-size: 0.8rem;
}
.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.event-item {
  margin-bottom: 15px;
}

.event-date {
  font-weight: bold;
  color: #3498db;
}

.quick-links a {
  display: block;
  padding: 8px 0;
  color: #3498db;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: #2980b9;
}

.smoke-container {
  position: absolute;
  left: 0;
  bottom: 0; /* Novo: alinha na base */
  width: 85vw;
  height: 100vh; /* Reduz a área de atuação */
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.smoke-effect {
  position: absolute;
  bottom: 0; /* Novo: começa na base */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 100vh; /* Mantém altura total para o movimento */
  background: url("../images/smoke-flow.png") no-repeat center;
  background-size: contain;
  animation: smoke-flow 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}

.smoke-effect-duplicate {
  animation-delay: 5s;
}

@keyframes smoke-flow {
  0% {
    transform: translate(-50%, 0) scale(0.95); /* Começa na base */
    opacity: 0;
  }
  15% {
    transform: translate(-50%, -20vh) scale(1); /* Subida inicial rápida */
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -30vh) scale(1.05); /* Meio da animação */
    opacity: 0.8;
  }
  70% {
    transform: translate(-50%, -40vh) scale(1.03); /* Continua subindo */
    opacity: 0.6;
  }
  90% {
    transform: translate(-50%, -45vh) scale(1); /* Desacelera */
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50vh) scale(0.98); /* Limite superior */
    opacity: 0;
  }
}

.Logo-id {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-0%, -14%); /* Centraliza em si mesma */
  cursor: pointer;
  animation: brightnessEffect 2s ease-in-out 1s infinite;
}

.Logo-id img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes shakeAndPause {
  0%,
  100% {
    transform: translateX(0);
  } /* Início e fim parados */
  5%,
  15%,
  25%,
  35%,
  45%,
  55% {
    transform: translateX(-2px);
  } /* Tremor para a esquerda */
  10%,
  20%,
  30%,
  40%,
  50% {
    transform: translateX(2px);
  } /* Tremor para a direita */
  60%,
  100% {
    transform: translateX(0);
  } /* Pausa nos últimos 5 segundos */
}

/* Animação de brilho */
@keyframes brightnessEffect {
  0% {
    filter: brightness(70%);
  } /* Começa com brilho baixo */
  50% {
    filter: brightness(150%);
  } /* Aumenta para brilho máximo */
  100% {
    filter: brightness(70%);
  } /* Retorna ao brilho baixo */
}

.light-animation {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 100%;
  z-index: -1;
}
.blue-light {
  background: url(../images/blue-light.png);
  width: 500px;
  height: 500px;
  top: 5px;
  left: 0;
  position: absolute;
  animation: 12s p-next linear infinite;
  opacity: 0.7;
}
.yellow-light {
  background: url(../images/blue-light2.png);
  width: 500px;
  height: 500px;
  top: 5px;
  left: 0;
  position: absolute;
  animation: 12s p-prev linear infinite;
  opacity: 0.7;
}
@keyframes p-next {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes p-prev {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* CSS do Slide */
.slide-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.slide-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  max-height: 370px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.indicators {
  position: absolute;
  top: 0;
  right: 5px;
  display: flex;
  gap: 5px;
  z-index: 5;
  padding: 8px 12px;
}

.indicators-item {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: var(--color-text-span);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.6s ease;
}

.indicators-item.active {
  background-color: var(--color-padrao);
  box-shadow: var(--box-shadow);
  transform: scale(1.2);
  opacity: 1;
}
/* Modal Overlay */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.login-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Login Form Container */
.login-form-container {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  transition: transform 0.3s ease;
}

.modal .modal-content {
  background: var(--color-padrao-dark-login);
}

.modal .modal-header,
.modal .modal-header .modal-title {
  color: #e7e7e7;
  border-color: #ffffff09;
}

.modal .modal-body {
  color: #e7e7e7;
}

.modal .btn-close {
  filter: invert(1);
}

.login-modal-overlay.active .login-form-container {
  transform: translateY(0);
}

/* Header */
.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.login-header h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.remember-me input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-me input:checked + .checkmark {
  background-color: white;
  border-color: white;
}

.remember-me input:checked + .checkmark:after {
  content: "✓";
  position: absolute;
  color: #0d6efd;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.forgot-password {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: white;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 14px;
  background: white;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Signup Section */
.signup-section {
  text-align: center;
  margin-bottom: 25px;
}

.signup-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

.signup-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.signup-link:hover {
  opacity: 0.8;
}

/* Divider */
.divider {
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: 80%;
  border: 1px solid rgba(132, 132, 132, 0.1);
  padding: 10px 0;
  margin-bottom: 10px;
}

.divider span {
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.facebook-btn:hover {
  background: rgba(66, 103, 178, 0.2);
  border-color: #4267b2;
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Botão para abrir modal (exemplo) */
.open-login-btn {
  padding: 12px 24px;
  background: transparent;
  color: var(--color-text);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}

.open-login-btn:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Container principal */
.news-slider {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
}

/* Cabeçalho */
.tex-header {
  width: 100%;
  color: var(--color-text-dark);
  font-size: 20px;
  font-weight: 400;
  justify-content: space-between;
  display: flex;
}
.tex-header a {
  text-decoration: none;
  color: var(--color-text-dark);
}
.news-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
/* Abas de navegação */
.news-tabs {
  width: 100%;
  display: flex;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e1e1e1;
}

.news-tab {
  padding: 10px 15px;
  color: var(--color-text);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.news-tab.active {
  background-color: var(--color-padrao);
  color: #fff;
}

/* Conteúdo das notícias */
.news-content {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.news-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  overflow-y: auto;
}

.news-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Estilo do conteúdo da notícia */
.news-meta {
  display: flex;
  margin-bottom: 10px;
  color: #7f8c8d;
  font-size: 0.9em;
  gap: 20px;
}
.news-content-wrapper {
  display: flex; /* Ativa o layout flex */
  gap: 15px; /* Espaço entre avatar e conteúdo */
  align-items: flex-start; /* Alinha no topo */
}
.news-text-content {
  flex: 1; /* Ocupa todo o espaço restante */
}
.news-text {
  line-height: 1.5;
}
.avatar-gm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avatar-gm img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
/* Categorias de eventos */
.events-categories {
  width: 100%;
  display: flex;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 5px;
  border-bottom: 1px solid #e1e1e1;
}

.events-category {
  padding: 5px 8px;
  color: var(--color-text-dark);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  margin: 1px;
  text-align: center;
}

.events-category.active {
  color: var(--color-text-hover);
  background-color: var(--color-padrao);
  text-align: center;
}

/* Conteúdo dos eventos */
.events-content {
  width: 100%;
  height: 120px;
  max-height: 120px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.events-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  overflow-y: auto;
}

.events-list.active {
  opacity: 1;
  transform: translateX(0);
}

/* Estilo dos eventos individuais */
.event-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-name {
  font-weight: 400;
  font-size: 0.8rem;
}

.event-timer {
  color: var(--color-text-span);
  font-weight: 900;
  font-size: 0.8rem;
}
/* Container principal */
.ranking-container {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

/* Cabeçalho */
.ranking-header {
  width: 100%;
  padding: 12px 15px;
  color: var(--color-text-dark);
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

/* Abas de navegação */
.ranking-tabs {
  width: 100%;
  display: flex;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e1e1e1;
}

.ranking-tab {
  padding: 10px 15px;
  color: var(--color-text);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.ranking-tab.active {
  color: var(--color-padrao);
  border-bottom-color: var(--color-padrao);
}

/* Container dos rankings */
.ranking-content {
  padding: 15px;
  margin-bottom: 5px;
}

/* Tabelas de ranking (inicialmente ocultas) */
.ranking-table {
  display: none;
  gap: 15px;
  padding: 10px 0;
}

.ranking-table.active {
  display: flex;
  flex-wrap: wrap;
}

/* Card individual */
.ranking-card {
  background-color: white;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 21px 30px rgba(52, 66, 85, 0.3);
  border: 8px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 21px 30px rgba(52, 66, 85, 0.4);
}

/* Posição */
.ranking-position {
  font-size: 12px;
  font-weight: bold;
  color: #8993a4;
  text-align: center;
  margin-bottom: 5px;
}

/* Avatar */
.player-avatar {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background-color: #ddd;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nome do jogador */
.player-name {
  font-size: 12px;
  font-weight: bold;
  color: #8993a4;
  margin-bottom: 10px;
  text-align: center;
}

/* Pontuação */
.player-score {
  color: var(--color-text);
  font-weight: 300;
  margin-bottom: 10px;
  font-size: 12px;
}

/* Botão View Profile */
.view-profile {
  background: #4285f4;
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  display: block;
  width: 100%;
  transition: background-color 0.3s;
}
.ranking-card a {
  text-decoration: none;
}
.view-profile:hover {
  background-color: #2980b9;
}

footer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 240px;
  min-height: 676px;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 250px;
}
.footer-column {
  text-align: center;
}
.footer-column h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.footer-column ul li {
  width: 100%;
}
.footer-column ul li a {
  font-size: 13px;
  padding: 12px 0px;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  z-index: 2;
  display: inline-block;
}
.footer-column ul li a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 56px;
  background-image: url("../images/hover-links.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.footer-column ul li a:hover {
  color: var(--color-padrao);
}
.footer-column ul li a:hover::before {
  opacity: 1;
}
.footer-credits {
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 15px;
}

.footer-credits p,
.footer-credits small {
  margin: 20px 0;
  color: var(--color-text);
}
.footer-credits a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.footer-credits a:hover {
  color: var(--color-padrao);
}
.footer-credits small {
  font-size: 12px;
  color: var(--color-text);
}

/* =======================================================
   CORREÇÃO FOOTER - REMOVER IMAGEM ANTIGA E APLICAR NEON
   ======================================================= */

/* 1. REMOVE a imagem antiga (hover-links.png) que estava atrapalhando */
.footer-column ul li a::before {
    display: none !important; 
    content: none !important;
}

/* 2. Aplica o efeito Vermelho Neon no Link */
.footer-column ul li a:hover {
    /* Garante que não tenha fundo quadrado */
    background: transparent !important; 
    box-shadow: none !important;
    border: none !important;
    
    /* A Cor e o Brilho */
    color: #ff1a1a !important; /* Vermelho */
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.9); /* O Brilho Neon */
    
    /* Movimento: Empurra levemente para a direita */
    transform: translateX(10px) !important; 
}

/* 3. Aplica o mesmo vermelho nos créditos (Developed by...) */
.footer-credits a:hover {
    color: #ff1a1a !important;
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.6);
}
.castle-siegue-new {
  width: 100%;
  height: 437px;
  max-height: 100%;
  background-size: cover;
  background: url(../images/castle-siege.png) no-repeat center;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.guild-master-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  top: 64px;
}

.title {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-align: center;
}

.subtitle {
  color: #ffaa44;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  top: 83px;
}

.guild-title {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: center;
  position: relative;
  top: 72px;
}

.guild-name {
  color: #ffaa44;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}

.next-battle {
  color: #aaa;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  top: 55px;
}

.guild-logo-new {
  position: relative;
  top: 76px;
  left: -1px;
  width: 110px;
  height: 110px;
}

.master-avatar .avatar-guild {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  object-fit: cover;
  border: 2px solid #1a55b4;
}

.itemmarket-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 21px 30px rgba(52, 66, 85, 0.3);
  overflow: hidden;
  font-family: Arial, sans-serif;
  border: 8px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.itemmarket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 21px 30px rgba(52, 66, 85, 0.4);
}

.itemmarket-header {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #e9ecef;
}

.itemmarket-seller-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.seller-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.itemmarket-seller-info {
  flex: 1;
}

.seller-name {
  font-size: 12px;
  font-weight: bold;
  color: #8993a4;
  margin-bottom: 0;
}

.item-offer-text {
  font-size: 11px;
  color: #b0bdd2;
  font-weight: 500;
}

.itemmarket-header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.itemmarket-expire-info {
  font-size: 10px;
  color: #666;
  background: #f1f3f4;
  padding: 2px 6px;
  border-radius: 10px;
}

.itemmarket-add-btn {
  width: 24px;
  height: 24px;
  background: #4285f4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.itemmarket-add-btn:hover {
  background: #3367d6;
  color: white;
  text-decoration: none;
}

.itemmarket-item {
  padding: 20px;
  text-align: center;
  background: #fff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.itemmarket-item-name {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #8993a4;
  padding: 8px 12px;
  margin-bottom: 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itemmarket-price-btn {
  background: #4285f4;
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  display: block;
}

.itemmarket-price-btn:hover {
  background: #3367d6;
  color: white;
  text-decoration: none;
}

.itemmarket-disabled {
  background: #ccc !important;
  cursor: not-allowed;
}

.itemmarket-disabled:hover {
  background: #ccc !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .itemmarket-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    top: 10px;
    position: relative;
  }

  .itemmarket-card {
    font-size: 12px;
  }

  .itemmarket-item {
    padding: 15px;
    min-height: 100px;
  }

  .item-image {
    max-width: 60px;
    max-height: 60px;
  }

  .seller-name {
    font-size: 12px;
  }

  .itemmarket-item-name {
    font-size: 12px;
    min-height: 40px;
    padding: 6px 8px;
  }

  .itemmarket-price-btn {
    font-size: 11px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .itemmarket-container {
    gap: 8px;
  }

  .itemmarket-header {
    padding: 8px;
  }

  .itemmarket-seller-avatar {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .itemmarket-add-btn {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

.ranking-table-new {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 21px 30px rgba(52, 66, 85, 0.3);
  overflow: hidden;
  font-family: Arial, sans-serif;
  border: 8px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 300px;
}

.ranking-header-new {
  background: #4285f4;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
}

.ranking-list-header {
  display: grid;
  grid-template-columns: 27px 1fr 137px 46px;
  padding: 11px 15px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  font-size: 12px;
  font-weight: bold;
  color: #8993a4;
}

.header-position,
.header-name,
.header-score,
.header-patent {
  text-align: center;
  font-size: 12px;
}

.header-name {
  text-align: left;
}

.ranking-item-new {
  display: grid;
  grid-template-columns: 50px 1fr 80px 50px;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  transition: background 0.2s ease;
}

.ranking-item-new:hover {
  background: #f8f9fa;
}

.ranking-item-new:last-child {
  border-bottom: none;
}

.ranking-position-new {
  display: flex;
  align-items: center;
}

.position-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.position-number {
  font-size: 14px;
  font-weight: bold;
  color: #666;
}

.ranking-player-info {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  left: -20px;
  width: 85px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-avatar {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ranking-player-name {
  font-size: 12px;
  font-weight: 300;
  color: #4285f4;
  text-decoration: none;
}

.ranking-score-new {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #8993a4;
  position: relative;
  left: -35px;
}

.ranking-patent-new {
  display: flex;
  justify-content: center;
  align-items: center;
}

.patent-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .ranking-table-new {
    max-width: 100%;
  }

  .ranking-item-new {
    grid-template-columns: 40px 1fr 60px 40px;
    padding: 10px 12px;
  }

  .ranking-avatar {
    width: 28px;
    height: 28px;
  }

  .position-icon {
    width: 24px;
    height: 24px;
  }

  .patent-icon {
    width: 24px;
    height: 24px;
  }

  .ranking-player-name {
    font-size: 12px;
  }

  .ranking-score-new {
    font-size: 12px;
  }
}
.guild-level {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  text-align: center;
}

.character-main {
  width: 100%;
  height: 462px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.character-info {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  background: url(../images/hall-base.png) center/cover no-repeat;
}

.character-info .slick-list,
.character-info .slick-track {
  height: 100%;
}

.character-info .slick-list {
  overflow: visible;
}
.character-title {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: -5px;
  letter-spacing: 2px;
  transition: all 0.5s ease;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.character-subtitle {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}

.character-stats {
  max-width: 260px;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}

.character-stats-content {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.character-stats-content.active {
  display: flex;
}

.character-details {
  display: flex;
  flex-direction: column;
}

.character-name {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}
.character-name a {
  font-size: 17px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.character-name a:hover {
  color: #fdc116;
  transition: color 0.3s ease;
}

.character-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.character-score {
  color: #b3c5ef;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.character-guild {
  color: #b3c5ef;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0288d1;
}

.character-image {
  position: absolute;
  right: 0;
  top: 35%;
  transform: translateY(-50%);
  width: 700px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.6s ease;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

.navigation {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  background: #00000040;
  width: 100%;
  margin: 0 auto;
  align-content: center;
  align-items: center;
  text-align: center;
  height: 115px;
  overflow: hidden;
}

/* rgb(26, 84, 175) */
.navigation::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.356) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.navigation::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.356) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.navigation::after,
.navigation::before {
  width: 25%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 12;
  content: "";
}

.nav-arrows-hall {
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 12;
  pointer-events: none;
}

.nav-arrows-hall {
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 12;
  pointer-events: none;
  top: 90%;
  transform: translateY(-50%);
}

.nav-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.nav-arrow:hover {
  transform: scale(1.1);
}

.nav-arrow::before {
  display: none;
}

.nav-arrow.prev {
  background-image: url(../images/nav-arrow.prev.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.nav-arrow.prev:hover {
  background-image: url(../images/nav-arrow.prev2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.nav-arrow.next {
  background-image: url(../images/nav-arrow.next.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.nav-arrow.next:hover {
  background-image: url(../images/nav-arrow.nex2t.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.nav-arrow.prev:hover,
.nav-arrow.next:hover {
  filter: brightness(1.2);
}

.character-slots {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 15px;
  will-change: transform;
  align-items: center;
}

/* Melhorar a transição dos slots */
.character-slot {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(5px);
  z-index: 11;
  margin: 0 5px;
  flex-shrink: 0;
}

.character-slots .slick-list {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.character-slots .slick-list .slick-track {
  display: flex;
  align-items: center;
}

.character-slot.slick-current.slick-active {
  opacity: 1;
  transform: scale(1.3) translateY(-5px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 10px rgb(61, 135, 245));
}

.character-slot:not(.slick-current.slick-active) {
  opacity: 0.3;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.character-slot:not(.slick-current.slick-active):hover {
  opacity: 0.6;
  transform: scale(1.1) translateY(-3px);
  transition: all 0.3s ease;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-in-right {
  transform: translateX(100px);
  opacity: 0;
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.aling-hall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 11;
  width: 100%;
  height: 100%;
}

.war-devias-card {
  width: 100%;
  height: auto;
  background: url("../images/wr-devias.png") center center / cover no-repeat;
  padding: 40px;
  position: relative;
  top: 20px;
  overflow: hidden;
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}
.war-devias-infor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  left: 30px;
}
.war-devias-infor p {
  color: #fff;
  margin-bottom: 0;
}
.war-devias-infor span {
  color: #fdc116;
  font-weight: bold;
  font-size: 1.2rem;
}
.war-devias-card h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}
.war-devias-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  letter-spacing: 1px;
  z-index: 2;
  position: relative;
}
.avatar-container {
  width: 120px;
  height: 120px;
  background-color: #000;
  border-radius: 8px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.next-event {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
  opacity: 0.95;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-image: url("https://img.youtube.com/vi/POzR63w0Po0/maxresdefault.jpg");
}

.video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-image: url("../images/btn-youtb.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail.playing {
  background-image: none;
}

.video-thumbnail.playing::before {
  display: none;
}

.video-thumbnail.playing .play-button {
  display: none;
}

.gens-conta {
  width: 100%;
  height: auto;
  min-height: 462px;
  background: url("../images/gens-base.png") center center / cover no-repeat;
  padding: 40px;
  position: relative;
  top: 40px;
  overflow: hidden;
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10%;
}

.familia-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.familia-item {
  align-items: center;
  gap: 30px;
  flex: 1;
  position: relative;
}

.familia-item:nth-child(2) {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.emblema-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
}

.familia-item:first-child .emblema-container {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.familia-item:last-child .emblema-container {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.emblema {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.familia-info {
  text-align: center;
}

.familia-item:nth-child(2) .familia-info {
  text-align: center;
}

.familia-titulo {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.familia-nome {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
}

.familia-nome.vanert {
  color: #fdc116;
}

.familia-nome.duprian {
  color: #fdc116;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.numero {
  color: #fdc116;
  font-weight: 400;
}
.breadcrumb {
  background-color: transparent;
  padding: 10px 0;
  margin: 0;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #6c757d;
  padding: 0 8px;
  font-size: 14px;
}

.breadcrumb-item.active {
  color: #6c757d;
  font-weight: 500;
}

/* Posts */
.posts-post .posts-image {
  width: 87px;
  height: 87px;
}

.posts-post .posts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* accordion */
.navbar-auth .accordion {
  --accordion-color: var(--body-color);
  --accordion-bg: none;
}

.navbar-auth .accordion-item {
  color: var(--accordion-color);
  background-color: var(--accordion-bg);
  border: var(--accordion-border-width) solid #dee2e612;
}

.navbar-auth .accordion-button {
  color: #d7d7d7;
}

.navbar-auth .accordion-button:not(.collapsed) {
  color: #dcdcdc;
  background-color: #151515;
  box-shadow: inset 0 calc(-1 * var(--accordion-border-width)) 0 #434343;
}

.navbar-auth .list-group {
  --list-group-bg: #1515151f;
  --list-group-border-color: #ffffff0f;
}

.navbar-auth .list-group-item {
  color: #ededed;
  background-color: var(--list-group-bg);
  border: var(--list-group-border-width) solid var(--list-group-border-color);
}

.navbar-auth .accordion-button:not(.collapsed)::after {
  transform: var(--accordion-btn-icon-transform);
  filter: invert(1) grayscale(1);
}

.navbar-auth .accordion-header {
  background-color: #1a1a1a;
}

/* Streamers */
.streamers-online {
  background: #252525 !important;
  border: 1px solid #454545 !important;
}

.streamers-title {
  background: #202020 !important;
  border: 1px solid #404040 !important;
}

.streamers-streamer {
    border: 2px solid #257cfd !important;
}

.streamers-streamer-name {
    background: #257cfd !important;
}

/* =======================================================
   ESTILO CARD SIDEBAR (CORRIGIDO)
   ======================================================= */

.sidebar-section {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e1e1e1;
    
    padding: 20px !important;
    
    /* Garante que o card ocupe a largura total da coluna */
    width: 100%; 
    box-sizing: border-box;
    display: block; /* Garante comportamento de bloco padrão */
    
    /* ESPAÇAMENTO DO TOPO: */
    margin-top: 40px !important; 
    margin-bottom: 30px;
    position: relative; /* Ajuda a manter o elemento firme */
}

/* Título (SERVIDOR / EQUIPE) */
.sidebar-section h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 20px !important;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-padrao);
}

/* Lista interna */
.sidebar-section ul, 
.sidebar-section .contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Itens da lista (Linhas) */
.sidebar-section .contact-info li,
.sidebar-section ul li {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important; /* Texto na esq, Valor na dir */
    align-items: center !important;
    padding: 12px 0 !important;
    border-bottom: 1px dashed #ddd !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Remove borda do último item */
.sidebar-section .contact-info li:last-child {
    border-bottom: none !important;
}

/* Texto descritivo (Esq) */
.sidebar-section .contact-info li {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Valor em destaque (Dir) */
.sidebar-section .contact-info li strong,
.sidebar-section .contact-info li b,
.sidebar-section .contact-info li span.text-bold,
.sidebar-section .contact-info li span:last-child {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--color-padrao) !important;
    display: block;
}

/* =======================================================
   MENU TOP PLAYERS (VISUAL DE IMPACTO & ESQUERDA)
   ======================================================= */

/* 1. Container das Abas */
.ranking-container .nav-tabs {
    border-bottom: none !important;
    display: flex !important;
    justify-content: flex-start !important; /* Alinha à ESQUERDA */
    flex-wrap: wrap !important;
    gap: 8px; /* Espaço entre os botões */
    margin-bottom: 20px;
    padding: 0;
}

/* 2. Estilo do Botão (Estado Normal/Inativo) */
.ranking-container .nav-tabs .nav-link {
    background: #1a1a1a !important; /* Fundo bem escuro */
    border: 1px solid #333 !important; /* Borda sutil */
    border-radius: 4px !important; /* Cantos levemente arredondados */
    
    color: #888 !important; /* Texto cinza */
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    
    padding: 8px 16px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5); /* Sombra interna (profundidade) */
}

/* 3. Efeito Hover (Ao passar o mouse) */
.ranking-container .nav-tabs .nav-link:hover {
    background: #252525 !important;
    color: #fff !important;
    border-color: #555 !important;
    transform: translateY(-2px); /* Flutua levemente */
}

/* 4. Estado ATIVO (Selecionado - O Impacto Visual) */
.ranking-container .nav-tabs .nav-link.active,
.ranking-container .nav-tabs .nav-item.show .nav-link {
    /* Fundo gradiente com a cor do tema */
    background: linear-gradient(135deg, var(--color-padrao) 0%, #000 150%) !important;
    
    border-color: var(--color-padrao) !important;
    color: #fff !important;
    
    /* GLOW / BRILHO EXTERNO */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), /* Sombra física */
                0 0 10px var(--color-padrao) !important; /* Brilho neon da cor do tema */
                
    transform: translateY(-2px);
    z-index: 2;
}

/* Pequeno detalhe brilhante no topo do botão ativo (reflexo) */
.ranking-container .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* =======================================================
   ESTILIZAÇÃO DA TABELA DO RANKING (Conteúdo)
   ======================================================= */
   
.ranking-container .tab-content {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    
    /* Sombra suave para destacar do fundo */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border: 1px solid #e1e1e1;
}

/* Garante que a tabela não tenha margens extras */
.ranking-container table {
    margin-bottom: 0 !important;
}

/* =======================================================
   ESTILO DOS TÍTULOS (ALINHADO À ESQUERDA)
   ======================================================= */

/* 1. Container alinhado à esquerda */
.sidebar-header, 
.tex-header {
    display: flex !important;
    justify-content: flex-start !important; /* Joga tudo para a esquerda */
    align-items: center !important;
    width: 100%;
    margin-bottom: 20px !important;
    position: relative;
    border: none !important;
}

/* 2. O Texto do Título */
.sidebar-header h3,
.tex-header h3 {
    background: none !important;
    -webkit-text-fill-color: initial !important;

    font-family: "Poppins", sans-serif;
    font-weight: 700 !important;
    font-size: 20px !important; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 !important;
    
    /* COR CINZA ESCURO */
    color: #7a7a7a; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    
    /* Configuração da linha */
    position: relative;
    display: inline-block; /* Ocupa só o espaço do texto */
    padding-bottom: 5px; 
}

/* 3. A Linha (Risco) do tamanho do texto */
.sidebar-header h3::after,
.tex-header h3::after {
    content: '';
    position: absolute;
    
    width: 100%; /* Pega a largura exata da palavra */
    height: 3px;
    
    left: 0;
    bottom: 0;
    
    background-color: var(--color-padrao);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--color-padrao);
}

/* 4. Ícone (+) continua na direita absoluta */
.tex-header a {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    transition: 0.3s;
}

.tex-header a:hover {
    color: var(--color-padrao);
}

/* =======================================================
   LOGO CONTROLADO (Posição, Tamanho e Efeitos)
   ======================================================= */

.Logo-id {
    /* POSIÇÃO */
    position: absolute; /* Fixa no topo do layout (não desce com o scroll) */
    top: 200px;          /* Distância do topo (Ajuste aqui para subir/descer) */
    left: 50%;          /* Posiciona no meio da tela */
    transform: translateX(-50%); /* Garante centralização exata */
    z-index: 999;       /* Garante que fique acima de tudo */
    
    /* TAMANHO (Controle aqui!) */
    width: 400px;       /* Largura do logo. Aumente ou diminua este valor */
    height: auto;       /* Altura automática para não distorcer */
    
    /* REMOVE ANIMAÇÕES ANTIGAS (Garante que fique parado) */
    animation: none !important;
}

/* Garante que a imagem respeite o tamanho da div acima */
.Logo-id img {
    width: 100%;
    height: auto;
    display: block;
    
    /* EFEITO DE SOMBRA (Destaque do fundo) */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); 
    
    /* Suavidade para efeitos de hover */
    transition: all 0.4s ease-in-out;
}

/* =======================================================
   HERO BACKGROUND CINEMATOGRÁFICO
   ======================================================= */

.hero-fixed-bg {
    height: 100vh;
    width: 100%;
    
    /* Fixa o fundo na tela (não rola com o site) */
    position: fixed; 
    top: 0;
    left: 0;
    z-index: -1; /* Fica atrás de tudo */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    
    /* Sombra interna (Vignette) na base e topo */
    box-shadow: inset 0 -150px 150px -50px #000, 
                inset 0 -5px 20px rgba(0, 0, 0, 0.8);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* SUA IMAGEM AQUI */
    background-image: url('../images/bg.png'); 
    background-size: cover;
    background-position: center top;
    
    z-index: 0;
    opacity: 0.9; /* Opacidade da imagem */
    
    /* A MÁGICA: Degradê que faz a imagem sumir no preto embaixo */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    
    pointer-events: none;
}

/* Camada de Cor (Tintura) sobre a imagem */
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    
    /* Mudei para AZUL/PRETO. Se quiser vermelho, troque os códigos de cor aqui */
    background: linear-gradient(to bottom, rgba(0, 20, 60, 0.3), #020202);
    
    mix-blend-mode: multiply; /* Mistura a cor com a imagem */
    z-index: 1;
}

/* Vignette (Bordas escuras forçadas) */
.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    /* Escurece muito as bordas laterais */
    box-shadow: inset 0 0 300px rgba(0, 0, 0, 0.9);
}

/* =======================================================
   LOGO HERO ANIMATION (RINGS & FLOAT)
   ======================================================= */

/* 1. O Container Principal (Posição e Tamanho) */
.logo-magic-container {
    /* Posição Fixa no Topo (Mantendo a lógica anterior) */
    position: absolute;
    top: 200px; /* Ajuste a altura aqui */
    left: 50%;
    transform: translateX(-50%);
    z-index: 99; /* Fica acima do fundo, mas cuidado com modais */

    /* Tamanho da área do logo */
    width: 450px; 
    height: 450px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Brilho de fundo pulsante (Vermelho no seu código original) */
    /* Se quiser AZUL, mude rgba(255, 0, 0...) para rgba(0, 100, 255...) */
}

.logo-magic-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    /* Glow Central */
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, transparent 70%);
    z-index: 0;
    animation: glowPulseSmall 3s infinite alternate;
}

/* 2. Wrapper do Logo (Faz ele flutuar) */
.logo-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5; /* Fica na frente dos anéis */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatLogo 4s infinite ease-in-out;
}

/* 3. A Imagem do Logo */
.hero-logo-img {
    width: 100%; /* Ocupa o container */
    max-width: 400px; /* Limite máximo */
    height: auto;
    object-fit: contain;
    /* Sombra do Logo */
    filter: drop-shadow(0 0 15px rgba(255, 26, 26, 0.6));
}

/* 4. Anel Mágico EXTERNO (Maior) */
.magic-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Centralização + Rotação na animação */
    width: 320px; /* Tamanho do anel */
    height: 320px;
    border-radius: 50%;
    border: 2px solid transparent;
    
    /* CORES DO ANEL EXTERNO (Vermelho) */
    border-top: 2px solid #ff1a1a;
    border-right: 2px solid rgba(255, 26, 26, 0.3);
    
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    animation: spinRingCenter 10s linear infinite; /* Gira devagar */
    z-index: 1;
}

/* 5. Anel Mágico INTERNO (Menor e Pontilhado) */
.magic-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px; /* Tamanho menor */
    height: 240px;
    border-radius: 50%;
    
    /* CORES DO ANEL INTERNO (Dourado/Vermelho) */
    border: 2px dashed rgba(255, 215, 0, 0.3); /* Dourado fraco */
    border-bottom: 2px solid #ff1a1a; /* Vermelho */
    
    animation: spinRingCenter 6s linear infinite reverse; /* Gira ao contrário */
    z-index: 2;
}

/* =======================================================
   ANIMAÇÕES (KEYFRAMES)
   ======================================================= */

@keyframes floatLogo {
    0% { 
        transform: translateY(0) scale(1); 
        filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.5)); 
    }
    50% { 
        transform: translateY(-10px) scale(1.02); /* Sobe e aumenta */
        filter: drop-shadow(0 0 25px rgba(255, 26, 26, 0.9)); /* Brilha mais */
    }
    100% { 
        transform: translateY(0) scale(1); 
        filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.5)); 
    }
}

@keyframes spinRingCenter {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glowPulseSmall {
    from { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* =======================================================
   MENU SUPERIOR - EFEITO HOVER VERMELHO (GLOW)
   ======================================================= */

/* 1. Estilo Base do Link */
.nav-menu li a.nav-link {
    position: relative; /* Necessário para o efeito da linha */
    transition: all 0.3s ease;
    overflow: hidden; /* Garante que nada saia do botão */
}

/* 2. O Efeito ao Passar o Mouse (Hover) */
.nav-menu li a.nav-link:hover {
    /* Remove o quadrado azul antigo */
    background-color: rgba(255, 0, 0, 0.05) !important; /* Um fundo vermelho MUITO suave, quase transparente */
    box-shadow: none !important; /* Remove sombras antigas */
    
    /* Novo Texto Vermelho Neon */
    color: #ff1a1a !important; 
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.8); /* Brilho no texto */
    
    transform: translateY(-2px); /* Sobe um pouquinho */
}

/* 3. A Linha Mágica embaixo (Animação) */
.nav-menu li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Centraliza */
    
    width: 0%; /* Começa invisível (largura 0) */
    height: 2px; /* Altura da linha */
    
    background-color: #ff1a1a; /* Cor da linha */
    box-shadow: 0 0 10px #ff1a1a; /* Brilho na linha */
    
    transition: width 0.3s ease-in-out; /* Animação suave */
}

/* Quando passa o mouse, a linha cresce */
.nav-menu li a.nav-link:hover::after {
    width: 100%; /* Ocupa todo o tamanho */
}

:root {
            --primary-color: #ff0000;
            --secondary-color: #800000;
            --accent-color: #ffcc00;
            --card-bg: #0a0a0a;
        }

        .top-pvp-wrapper {
            width: 100%;
            max-width: 98%; /* Levemente maior para acomodar os cards maiores */
            margin: 20px auto;
            padding: 0 5px;
            font-family: 'Cinzel', 'Trajan Pro', sans-serif;
            box-sizing: border-box;
        }

        /* CABEÇALHO */
        .pvp-header {
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            padding-top: 5px;
        }

        .pvp-title {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin: 0;
            position: relative;
            display: inline-block;
            background: linear-gradient(to right, #cc0000 0%, #ffcc00 50%, #cc0000 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textFlow 3s linear infinite;
            filter: drop-shadow(0 0 10px rgba(255, 60, 0, 0.6));
        }

        .pvp-title::after {
            content: attr(data-text);
            position: absolute;
            left: 0; top: 0; width: 100%; height: 100%; z-index: 2;
            background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, transparent 50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            pointer-events: none;
        }

        .pvp-divider {
            height: 3px;
            width: 120px;
            margin: 8px auto 0;
            background: linear-gradient(90deg, transparent, #ff0000, #ffcc00, #ff0000, transparent);
            border-radius: 50%;
            box-shadow: 0 0 15px #ff0000, 0 0 8px #ffcc00;
            position: relative;
            opacity: 0.9;
        }
        
        .pvp-divider::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 8px; height: 8px;
            background: #fff;
            box-shadow: 0 0 10px #ff0000, 0 0 20px #ffcc00;
            border: 2px solid #ff0000;
        }

        @keyframes textFlow {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        /* CARDS */
        .pvp-cards-container {
            display: flex;
            justify-content: center;
            gap: 15px; /* Aumentei um pouco o espaço entre eles */
            flex-wrap: wrap;
        }

        .pvp-card {
            /* --- AQUI CONTROLA A LARGURA --- */
            flex: 0 1 auto;
            width: 175px;   /* Aumentado de 145px para 175px */
            max-width: 190px;
            position: relative;
            cursor: pointer;
            z-index: 1;
            clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .pvp-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, #222 0%, #111 100%);
            z-index: -1;
        }

        .pvp-card::after {
            content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
            z-index: -2; background-size: 200% 200%; opacity: 0;
            transition: opacity 0.3s ease;
            animation: gradientMove 3s ease infinite;
        }

        .pvp-card-inner {
            background: var(--card-bg); height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden;
        }

        .pvp-img-box {
            width: 100%; 
            /* --- AQUI CONTROLA A ALTURA DA IMAGEM --- */
            height: 215px; /* Aumentado de 180px para 215px */
            overflow: hidden; position: relative;
        }

        .pvp-img-box img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: grayscale(20%) brightness(0.95) contrast(1.05);
        }

        .pvp-img-box::after {
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg); z-index: 2; pointer-events: none;
        }

        .pvp-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 70%;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent 100%);
            z-index: 1; pointer-events: none;
        }

        .pvp-info {
            position: absolute; bottom: 0; width: 100%; padding: 12px 5px; text-align: center; z-index: 3;
        }

        .pvp-info h3 {
            margin: 0; font-size: 0.75rem; color: #999; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; margin-bottom: 3px; transition: color 0.3s;
        }

        .player-nick {
            font-size: 1rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; position: relative; display: inline-block;
            text-shadow: 0 2px 5px rgba(0,0,0,1);
            white-space: nowrap; 
            overflow: hidden; text-overflow: ellipsis; max-width: 100%;
        }
        
        .player-nick::after {
            content: ''; display: block; width: 0; height: 2px; background: var(--primary-color);
            transition: width 0.3s ease; margin: 4px auto 0; box-shadow: 0 0 10px var(--primary-color);
        }

        /* HOVER */
        .pvp-card:hover { transform: translateY(-5px) scale(1.02); }
        .pvp-card:hover::after { opacity: 1; }
        .pvp-card:hover .pvp-img-box img { transform: scale(1.15); filter: grayscale(0%) brightness(1.15) contrast(1.15); }
        .pvp-card:hover .pvp-img-box::after { animation: shine 0.75s; }
        .pvp-card:hover .pvp-info h3 { color: var(--accent-color); text-shadow: 0 0 5px var(--accent-color); }
        .pvp-card:hover .player-nick { color: #fff; text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color); }
        .pvp-card:hover .player-nick::after { width: 100%; }

        @keyframes shine { 100% { left: 150%; } }
        @keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

        @media (max-width: 768px) {
            .pvp-title { font-size: 1.8rem; }
            .pvp-card { width: 45%; max-width: none; }
        }
        
/* CLASSE EXTRA PARA DIMINUIR O TAMANHO NA SIDEBAR */
.pvp-title.sidebar-size {
    font-size: 1.5rem; /* O original é 2.2rem, aqui definimos menor */
    letter-spacing: 2px; /* Ajuste leve no espaçamento das letras */
}

/* Opcional: Diminuir também o divisor se achar que ficou muito largo */
.pvp-header.sidebar-size .pvp-divider {
    width: 60px; /* Menor que o original de 100px */
}

/* --- CSS PARA DEIXAR O TÍTULO APENAS VERMELHO --- */

/* 1. Aplica a cor sólida e remove o background animado */
.pvp-title.sidebar-red-only {
    /* Reseta as propriedades do gradiente animado */
    background: none !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: currentColor !important;
    animation: none !important;

    /* Define a cor vermelha intensa */
    color: #ff0000 !important; 
    
    /* Ajusta o brilho para ficar vermelho puro (opcional, se quiser mais forte aumente o 0.6) */
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6)) !important;
}

/* 2. Remove a camada de brilho branco superior (o ::after) */
.pvp-title.sidebar-red-only::after {
    display: none !important;
    content: none !important;
}

/* Opcional: Se quiser o divisor também puramente vermelho sem o amarelo */
.pvp-header.sidebar-red-only .pvp-divider {
    background: linear-gradient(90deg, transparent, #ff0000, #cc0000, #ff0000, transparent) !important;
    box-shadow: 0 0 15px #ff0000 !important;
}
.pvp-header.sidebar-red-only .pvp-divider::before {
    box-shadow: 0 0 15px #ff0000 !important;
}

/* --- CSS DARKSIDE RANKING COMPACTO --- */

/* 1. O Cartão (Card) */
.darkside-card {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    
    /* REDUZIDO: De 240px para 200px */
    min-height: 200px; 
    
    position: relative;
    border-top: 2px solid #990000;
    margin-top: 12px;
    overflow: visible !important;
}

.darkside-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.3);
    border-color: #ff3333;
}

/* 2. Cabeçalho */
.darkside-card-header {
    /* REDUZIDO: Menos padding no topo */
    padding: 15px 2px 2px 2px; 
    
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    font-size: 0.65rem; /* Fonte menor */
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #222;
}

.darkside-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2px 0; /* Menos espaçamento */
}

/* 3. Badge de Ranking */
.rank-badge {
    position: absolute;
    top: -10px; /* Ajustado */
    left: 50%;
    transform: translateX(-50%);
    
    /* REDUZIDO: Ficou menorzinho */
    width: 22px; 
    height: 22px; 
    
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-weight: bold; font-size: 10px;
    border: 2px solid #1a1a1a;
    background: #ffcc00;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 20;
}
.rank-1 { background: #ffcc00; color: #000; box-shadow: 0 0 8px #ffcc00; }
.rank-2 { background: #c0c0c0; color: #000; box-shadow: 0 0 8px #c0c0c0; }
.rank-3 { background: #cd7f32; color: #000; box-shadow: 0 0 8px #cd7f32; }
.rank-x { background: #333; color: #fff; }

/* 4. Avatar (AQUI DIMINUI O TAMANHO GERAL) */
.avatar-wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.character-avatar {
    /* REDUZIDO: De 60px para 50px */
    width: 70px; 
    height: 70px; 
    
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
    padding: 2px;
    background: #000;
}

.darkside-card:hover .character-avatar {
    border-color: #990000;
}

/* 5. Pontuação */
.score-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}
.score-value {
    background: #990000;
    color: #fff;
    font-size: 10px; /* Fonte menor */
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    border: 1px solid #990000;
}

/* 6. Rodapé (Nome) */
.darkside-footer {
    width: 100%;
    background: linear-gradient(180deg, #990000 0%, #550000 100%);
    padding: 4px; /* Mais fino */
    text-align: center;
    border-top: 1px solid #ff3333;
    margin-top: auto;
    font-size: 11px; /* Fonte do nome menor */
}

.darkside-footer a,
.darkside-footer span {
    color: #fff;
    text-decoration: none;
    font-family: 'Cinzel', sans-serif;
    font-weight: 700;
    font-size: 0.75rem; /* Fonte menor */
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Corta nomes muito grandes */
}

.darkside-footer a:hover {
    color: #ffcc00;
}

/* --- CORRIGINDO A COR DOS BOTÕES DO RANKING --- */

/* 1. Estado Normal (Não selecionado) */
#rankings-tab .nav-link {
    background-color: #111 !important;   /* Fundo Preto */
    color: #888 !important;              /* Texto Cinza */
    border: 1px solid #333 !important;   /* Borda escura */
    border-radius: 0 !important;         /* Quadrado */
    font-family: 'Cinzel', sans-serif;   /* Fonte do tema */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 5px;                       /* Espacinho entre eles */
    transition: all 0.3s ease;
}

/* 2. Estado ATIVO (Clicado) e HOVER (Passar o mouse) - AQUI MUDA O AZUL */
#rankings-tab .nav-link.active,
#rankings-tab .nav-link:hover {
    /* Gradiente Vermelho Sangue */
    background: linear-gradient(180deg, #990000 0%, #660000 100%) !important;
    
    /* Texto Branco */
    color: #fff !important;
    
    /* Borda Vermelha Clara */
    border-color: #ff3333 !important;
    
    /* Brilho vermelho (Glow) */
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4) !important;
}

/* --- CARD CASTLE SIEGE ELETRIZANTE --- */

.siege-electric-card {
    position: relative;
    /* Fundo Gradiente: Preto para Vermelho Sangue */
    background: linear-gradient(135deg, #0a0000 0%, #330000 50%, #0a0000 100%);
    
    /* Borda Neon */
    border: 2px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
    
    /* Sombra pulsante inicial */
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2), inset 0 0 50px rgba(100, 0, 0, 0.4);
    
    /* Animação de Energia (Pulsação) */
    animation: siegePulse 3s infinite alternate;
}

/* Animação do brilho da borda */
@keyframes siegePulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2), inset 0 0 30px rgba(100, 0, 0, 0.3);
        border-color: #aa0000;
    }
    100% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.6), inset 0 0 60px rgba(150, 0, 0, 0.5);
        border-color: #ff3333;
    }
}

/* Efeito de Fundo (Textura Eletrica) */
.electric-bg-effect {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Padrão sutil de grade ou energia */
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 60%),
        repeating-linear-gradient(45deg, rgba(255, 0, 0, 0.03) 0px, rgba(255, 0, 0, 0.03) 1px, transparent 1px, transparent 10px);
    z-index: 1;
    pointer-events: none;
}

/* --- TIPOGRAFIA DO CARD --- */

/* Títulos Pequenos (Labels) */
.cs-label {
    color: #ffaaaa; /* Vermelho claro */
    text-transform: uppercase; 
    font-size: 11px; 
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

/* Valor Principal (Branco com brilho) */
.cs-value-main {
    font-size: 24px; 
    color: #fff; 
    font-family: 'Cinzel', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Valor Secundário (Cinza Claro) */
.cs-value-sub {
    font-size: 20px; 
    color: #ddd;
    font-family: 'Cinzel', sans-serif;
}

/* Destaque (Amarelo/Dourado) */
.cs-value-highlight {
    font-size: 20px; 
    font-weight: bold; 
    color: #ffca00;
    text-shadow: 0 0 10px rgba(255, 202, 0, 0.5);
    font-family: 'Cinzel', sans-serif;
}

/* --- CORREÇÃO DO MENU RANKING DENTRO DO CARD --- */

/* Força a lista de abas a ficar horizontal (linha) */
.sidebar-section .ranking-container .nav-tabs {
    flex-direction: row !important;       /* Lado a lado */
    justify-content: center !important;   /* Centralizado */
    gap: 8px !important;                  /* Espaço entre botões */
    margin-bottom: 20px !important;
    border-bottom: none !important;
}

/* Remove as linhas pontilhadas e larguras de 100% que a sidebar coloca nos itens */
.sidebar-section .ranking-container .nav-tabs li {
    width: auto !important;               /* Tamanho automático */
    border-bottom: none !important;       /* Sem linha embaixo */
    padding: 0 !important;                /* Sem espaçamento extra */
    display: block !important;
}

/* --- WIDGET FLUTUANTE VOID --- */
.void-social-widget {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Próximo ao scroll */
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse; /* Faz a lista crescer para cima */
    align-items: center;
    gap: 15px;
}

/* O QUADRADO VERMELHO PRINCIPAL */
.social-trigger {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b30000 0%, #800000 100%);
    border: 1px solid #ff4d4d;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px; /* Levemente arredondado, mas quadrado */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animação de Pulsar (Chama atenção) */
.social-trigger {
    animation: voidPulse 2s infinite;
}

@keyframes voidPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Hover no botão principal */
.social-trigger:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
    border-color: #ffcc00; /* Borda dourada */
}

/* Ícones de Abrir/Fechar */
.social-trigger .close-icon { display: none; }
.void-social-widget.active .social-trigger .open-icon { display: none; }
.void-social-widget.active .social-trigger .close-icon { display: block; }
.void-social-widget.active .social-trigger { animation: none; background: #333; border-color: #555; }

/* A LISTA DE ÍCONES */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.void-social-widget.active .social-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}