@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-image: url('../images/bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #141414;
  background-size: auto;
  overflow-x: hidden;
}
i {
  color: var(--color-text-dark);
  font-size: 20px;
  cursor: pointer;
}
i:hover {
    color: var(--color-padrao);
    transition: all .9s ease;
}
.wrap {
  width: 100%;
  position: relative;
  margin-top: 480px;
}

.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 #490303;
  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;
}

/*animação mayconpsd*/
.smoke-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2; /* Fica acima do fundo, mas abaixo do logo e personagens se ajustado o z-index deles */
}

.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: 25%;
    left: 50%;
    transform: translate(-50%, -14%);
    cursor: pointer;
    overflow: visible;
    isolation: isolate;
    animation: brightnessEffect 2s ease-in-out infinite;
}



/* Raios atrás da logo */
.Logo-id::before{
    content:"";
    position:absolute;

    width:1200px;
    height:1200px;

    left:50%;
    top:50%;
    transform:translate(-50%,-50%);

    background:url('../images/lightning.png') center center no-repeat;
    background-size:contain;

    opacity:0;
    z-index:-1;
    pointer-events:none;

    animation:flash 3s infinite;
}

/* Logo */
.Logo-id img{
    width:1000px;
    height:auto;
    position:relative;
    z-index:2;
}

/*flash dos raios*/
@keyframes flash {

    /* Pausa */
    0%, 74%, 100%{
        opacity:0;
    }

    /* Primeiro raio */
    75%{
        opacity:1;
    }

    76%{
        opacity:0;
    }

    /* Segundo raio logo em seguida */
    77%{
        opacity:1;
    }

    78%{
        opacity:0;
    }

    /* Pequena pausa */
    79%,81%{
        opacity:0;
    }

    /* Terceiro raio */
    82%{
        opacity:.9;
    }

    83%{
        opacity:0;
    }
}

/* Tremor */
@keyframes shakeAndPause{

    0%,100%{
        transform:translateX(0);
    }

    5%,15%,25%,35%,45%,55%{
        transform:translateX(-2px);
    }

    10%,20%,30%,40%,50%{
        transform:translateX(2px);
    }

    60%,100%{
        transform:translateX(0);
    }
}

/* Brilho */
@keyframes brightnessEffect{

    0%{
        filter:brightness(75%);
    }

    50%{
        filter:brightness(145%);
    }

    100%{
        filter:brightness(75%);
    }
}

.light-animation{
    position:absolute;
    top:-2%;
    left:-2%;
    width:100%;
    z-index:-1;
}

@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: #0d6efd;
  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 new / @mayconpsds*/
footer {
  background-image: url('../images/footer-new.png');
  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);
}
.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 {
  width: 100%;              /* Ocupa a largura da coluna disponível */
  max-width: 320px;         /* Não passa de 320px */
  box-sizing: border-box;   /* IMPRESCINDÍVEL: faz as bordas de 8px ficarem dentro do tamanho */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 21px 30px rgba(52, 66, 85, 0.3);
  overflow: hidden;         /* Impede que o botão de comprar saia pelas pontas */
  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 #490303;
}

.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: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image {
  max-width: 100%;
  max-height: 200px;
  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 #490303;
  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;
}


/* ==========================================
   MENU PRINCIPAL - CENTRALIZADO E EQUILIBRADO
   ========================================== */

/* 1. Limitador do Container da Navbar */
.nav-container, 
.container.hstack {
    max-width: 1200px !important; /* Limita a largura máxima para não colar nas bordas da tela */
    width: 100% !important;
    margin: 0 auto !important;     /* Centraliza o menu na tela */
    padding-left: 60px !important;  /* Distância da esquerda (após o idioma/login) */
    padding-right: 60px !important; /* Distância da direita */
}

/* 2. Alinhamento e Espaçamento dos Botões */
#navMenu, .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    flex-wrap: nowrap !important;
}

#navMenu > li, .nav-menu > li {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
}

/* 3. Container do Efeito */
.dripContainer {
    position: relative !important;
    display: inline-block !important;
    background: transparent !important;
}

/* 4. Estilo do Botão (Com a mesma cor e tom da gota de sangue) */
.ledButton {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* GRADIENTE IGUAL AO DA GOTA: do tom escuro/sangue até o tom brilhante */
    background: linear-gradient(180deg, #660000 0%, #8b0000 60%, #b30000 100%) !important;
    
    /* Borda e iluminação combinando */
    border: 1px solid #8b0000 !important;
    border-bottom: 1px solid #ff0000 !important; /* Destaque na borda de onde sai a gota */
    border-radius: 6px !important;
    
    /* Sombra e brilho combinando com o drop-shadow da gota */
    box-shadow: 0 0 12px rgba(139, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    
    padding: 8px 14px !important; 
    min-width: 0 !important;
    min-height: 34px !important;
    
    overflow: visible !important;
}

.ledButton:hover {
    background: linear-gradient(180deg, #8b0000 0%, #b30000 60%, #cc0000 100%) !important;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
}

/* 5. Texto do Botão */
.ledButton a.nav-link, 
.ledButton a {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9) !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    display: inline !important;
}

/* 6. Gotas Escorrendo */
/* ==========================================
   EFEITO SANGUE REALISTA (ORGANIC BLOOD DRIP)
   ========================================== */

.dripContainer {
    position: relative !important;
    display: inline-block !important;
    overflow: visible !important;
}

/* Formato orgânico de gota de sangue real */
.drip {
    position: absolute !important;
    top: 100% !important;
    
    /* Tom de sangue realista: topo venoso escuro, base brilhante */
    background: linear-gradient(180deg, #500000 0%, #8b0000 60%, #ff0000 100%) !important;
    
    /* FORMATO CHAVE: Ponta fina no topo, bolha gorda embaixo */
    border-radius: 40% 40% 50% 50% / 20% 20% 80% 80% !important;
    
    /* Glow de líquido refletindo luz */
    filter: drop-shadow(0px 2px 4px rgba(139, 0, 0, 0.9)) !important;
    
    pointer-events: none !important;
    z-index: 99 !important;
    transform-origin: top center !important;
}

/* Ponto de luz (reflexo de molhado no sangue) */
.drip::after {
    content: '' !important;
    position: absolute !important;
    bottom: 25% !important;
    left: 25% !important;
    width: 25% !important;
    height: 25% !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50% !important;
}

/* Animação com física real de tensão superficial (acumula -> estica -> destaca) */
@keyframes dripDown {
    0% {
        height: 4px;
        transform: scaleX(1.8) translateY(0);
        opacity: 0.95;
    }
    30% {
        /* O sangue acumula na borda criando uma bolsinha */
        height: 12px;
        transform: scaleX(1.4) translateY(0);
    }
    65% {
        /* Estica fininho no topo e cria o peso na ponta */
        height: 28px;
        transform: scaleX(0.7) translateY(0);
        opacity: 0.9;
    }
    85% {
        /* Desprende do botão e começa a cair rápido */
        height: 35px;
        transform: scaleX(0.4) translateY(12px);
        opacity: 0.7;
    }
    100% {
        /* Desaparece caindo */
        height: 20px;
        transform: scaleX(0.2) translateY(30px);
        opacity: 0;
    }
}

/* ============================================================
   CUSTOMIZAÇÃO DARK-SIDE (VERMELHO ESCURO & PRETO)
   ============================================================ */

/* 1. LATERAIS DO SITE EM PRETO PURO */
body {
    background-color: #000000 !important;
}

/* 2. CONTEÚDO CENTRAL: DE BRANCO PARA VERMELHO BEM ESCURO */
.container,
.container-base,
.news-card,
.sidebar-section,
.itemmarket-card,
.itemmarket-item,
.ranking-table-new,
.modal-content,
.bg-white {
    background-color: #120202 !important; /* Vermelho sangue muito escuro */
    color: #e6e6e6 !important;
    border-color: #3b0505 !important;
}

/* Ajuste das linhas de divisão internas para tons de vinho/vermelho escuro */
.contact-info li,
.news-item,
.events-categories,
.ranking-tabs,
.ranking-list-header,
.ranking-item-new,
.itemmarket-header {
    border-color: #2e0505 !important;
    background-color: transparent !important;
}

/* 3. TÍTULOS E TEXTOS NO CENTRAL */
h1, h2, h3, h4, h5, h6,
.news-section h2,
.sidebar-section h3,
.tex-header,
.tex-header a,
.ranking-header-new,
.itemmarket-item-name,
.seller-name,
.header-name,
.header-score,
.header-patent {
    color: #ff3333 !important; /* Vermelho vibrante/gótico para destaque */
}

/* Textos secundários em tom legível de cinza-claro */
.news-card p,
.news-meta,
.item-offer-text,
.event-name,
.header-position {
    color: #cccccc !important;
}

/* 4. ALTERAÇÃO DO RODAPÉ (FOOTER) - REMOVE A IMAGEM ANTIGA */
footer {
    /* Desativa a imagem antiga de árvores/savana */
    background-image: none !important; 
    
    /* Aplica fundo preto com gradiente vermelho escuro na parte superior */
    background: linear-gradient(180deg, #120202 0%, #000000 100%) !important;
    
    border-top: 2px solid #500000 !important;
    padding-top: 80px !important; /* Ajuste de espaçamento já sem a imagem alta */
    min-height: auto !important;
}

/* CASO QUEIRA COLOCAR OUTRA IMAGEM NO RODAPÉ NO FUTURO:
   Descomente a linha abaixo e coloque o nome da sua imagem:
   
footer {
   background-image: url("/images/SUA-NOVA-IMAGEM.png") !important;
   background-position: center bottom !important;
   background-repeat: no-repeat !important;
   background-size: cover !important;
}
*/

/* Links do Footer em Vermelho */
.footer-column h3,
.footer-column ul li a,
.footer-credits p,
.footer-credits small,
.footer-credits a {
    color: #dddddd !important;
}

.footer-column ul li a:hover,
.footer-credits a:hover {
    color: #ff0000 !important;
}

/* ============================================================
   SUBSTITUIÇÃO DE AZUIS PARA TOM VERMELHO / VINHO / DARK
   ============================================================ */

/* 1. LINKS E BREADCRUMBS (ex: Home > Rankings > DevilSquare) */
a, 
.breadcrumb-item a, 
.breadcrumb-item.active,
.news-card h3,
.ranking-player-name,
.event-date,
.quick-links a {
    color: #cc2424 !important; /* Vermelho queimado para links */
}

a:hover, 
.breadcrumb-item a:hover,
.quick-links a:hover {
    color: #ff4d4d !important; /* Vermelho vivo ao passar o mouse */
}

/* 2. ABA SELECIONADA / LISTAS ATIVAS (ex: DevilSquare na lateral) */
.list-group-item.active,
.nav-pills .nav-link.active,
.news-tab.active,
.events-category.active,
.ranking-tab.active {
    background-color: #800000 !important; /* Vermelho escuro / Vinho */
    border-color: #550000 !important;
    color: #ffffff !important;
}

/* 3. TAGS / BADGES (ex: Vip Diamante, tags de status) */
.badge,
.badge-primary,
.bg-primary,
.badge-info,
.bg-info {
    background-color: #7a1515 !important; /* Vermelho sangue escuro elegante */
    color: #ffffff !important;
    border: 1px solid #991f1f !important;
}

/* 4. BOTÕES AZUIS DO BOOTSTRAP (ex: View Profile, Preço do Mercado, Headers) */
.btn-primary,
.view-profile,
.itemmarket-price-btn,
.itemmarket-add-btn,
.ranking-header-new {
    background-color: #800000 !important; /* Vinho / Vermelho Dark */
    border-color: #4a0000 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.view-profile:hover,
.itemmarket-price-btn:hover,
.itemmarket-add-btn:hover {
    background-color: #a00000 !important; /* Vermelho um pouco mais claro no hover */
    border-color: #660000 !important;
}
/* FIX PARA DEIXAR O MENU SUPERIOR TRANSPARENTE */
nav.navbar,
.navbar,
.nav-container,
.navbar .container,
.nav-container .container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* Fundo escuro/vinho sólido para a tabela do HallFame */
.col-lg-12 table, 
.col-lg-12 .table,
.col-lg-12 .table tbody tr,
.col-lg-12 .table td,
.col-lg-12 .table th {
    background-color: #1a0303 !important; /* Tom vermelho bem escuro/vinho fechado */
    color: #ffffff !important;            /* Texto em branco */
    border-color: #3b0505 !important;      /* Bordas discretas em vermelho */
}

/* Fundo dos cabeçalhos da tabela (#, Name, Pontos, Patente) */
.col-lg-12 .table thead th {
    background-color: #330505 !important; /* Tom de vermelho médio nos cabeçalhos */
    color: #ff4d4d !important;            /* Texto em vermelho claro vibrante */
}

/* Cor da linha quando passa o mouse por cima */
.col-lg-12 .table tbody tr:hover {
    background-color: #2b0606 !important; /* Destaque sutil ao passar o mouse */
}

.zap-card {
    display: block;
    padding: 16px;
    background: linear-gradient(180deg, #120505 0%, #0a0202 100%);
    border: 1px solid #8b0000;
    border-radius: 8px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.8);
    animation: zapPulse 2.5s infinite;
}

.zap-card:hover {
    border-color: #ff1a1a;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.75), inset 0 0 15px rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
}

.zap-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ícone do WhatsApp integrado com brilho esmeralda suave */
.zap-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #25d366 0%, #0f5228 100%);
    border: 1px solid #34ea7a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.zap-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.zap-sub {
    color: #8a7a7a;
    font-size: 12px;
    margin-top: 2px;
}

/* Botão Entrar com efeito de textura e brilho neon vermelho */
.zap-btn {
    margin-top: 14px;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(180deg, #c41212 0%, #680505 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid #ff4d4d;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.zap-card:hover .zap-btn {
    background: linear-gradient(180deg, #e60000 0%, #8b0000 100%);
    border-color: #ff8080;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@keyframes zapPulse {
    0% {
        box-shadow: 0 0 12px rgba(139, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 22px rgba(255, 0, 0, 0.65);
    }
    100% {
        box-shadow: 0 0 12px rgba(139, 0, 0, 0.3);
    }
}
.zap-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden; /* Garante que a foto respeite as bordas arredondadas */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #34ea7a;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.zap-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher todo o círculo sem distorcer */
    display: block;
}

/* ============ MODAL DE TERMOS DE USO ============ */

/* Fundo escuro atrás do modal */
.terms-modal-overlay, 
#termsModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99998;
  backdrop-filter: blur(4px);
}

/* Caixa principal do Modal */
.terms-modal-container, 
#termsModal, 
.modal-terms {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 650px;
  max-height: 75vh;             /* Altura máxima de 75% da tela */
  background-color: #1a1a1a;    /* Fundo escuro alinhado ao seu tema */
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px;
  color: #cccccc;
  z-index: 99999;               /* Mantém o modal acima do rodapé e outros elementos */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  
  /* CRUCIAL: Ativa a rolagem interna do texto */
  overflow-y: auto;
}

/* Títulos dentro do modal */
.terms-modal-container h2, 
.terms-modal-container h3,
#termsModal h2, 
#termsModal h3 {
  color: #ffffff !important;
  margin-bottom: 15px !important;
}

/* Personalização da barra de rolagem interna do modal */
.terms-modal-container::-webkit-scrollbar,
#termsModal::-webkit-scrollbar {
  width: 6px;
}

.terms-modal-container::-webkit-scrollbar-track,
#termsModal::-webkit-scrollbar-track {
  background: #111;
}

.terms-modal-container::-webkit-scrollbar-thumb,
#termsModal::-webkit-scrollbar-thumb {
  background: var(--color-padrao, #4285f4);
  border-radius: 4px;
}