/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0f1e;
  color: white;
  height: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Botões lado a lado com a logo */
  gap: 40px; /* Espaço entre logo e botões */
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 60px;
}

nav ul.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 0;
}
nav ul.menu li {
  position: relative;
}

nav ul.menu li a {
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul.menu li a:hover {
  color: #00ffcc;
}

nav ul.menu li .dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  border-radius: 5px;
  top: 35px;
  left: 0;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

nav ul.menu li:hover .dropdown-content {
  display: block;
}

nav ul.menu li .dropdown-content li a {
  display: block;
  padding: 10px;
  color: white;
}

nav ul.menu li .dropdown-content li a:hover {
  background: #00ffcc;
  color: black;
}

/* User area */
.user-area {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto; /* Isso joga ele para a direita */
}

#playNow {
  background: #00ffcc;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

#playNow:hover {
  background: #00ddb3;
}

.user-dropdown {
  position: relative;
  display: none;
}

.user-dropdown.open .dropdown-content-user {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown span {
  background: #00ffcc;
  color: black;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.user-dropdown span:hover {
  background: #00ddb3;
}

.dropdown-content-user {
  position: absolute;
  top: 45px;
  right: 0;
  background: #111;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-content-user a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

.dropdown-content-user a:hover {
  background: #00ffcc;
  color: black;
}

/* Main content */
.main-content {
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  padding: 15px 30px;
  background: #00ffcc;
  border: none;
  border-radius: 8px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 18px;
}

.play-button:hover {
  background: #00ddb3;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.modal-buttons {
  margin-top: 20px;
}

.modal-button {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.modal-button.login {
  background: #d4af7f;
  color: black;
}

.modal-button.login:hover {
  background: #c29c6f;
}

.modal-button {
  background: #00cfff;
  color: black;
}

.modal-button:hover {
  background: #00b8e6;
}

/* Campeões */
.champion-container {
  text-align: center;
  padding: 40px 20px;
}

.champion-container img {
  width: 250px;
  height: auto;
  transition: transform 0.4s;
}

.champion-container img:hover {
  transform: scale(1.1);
}

.champion-name {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

.champion-description {
  margin-top: 10px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.champion-nav {
  margin-top: 20px;
}

.champion-nav button {
  width: 50px;
  height: 50px;
  background: #00ffcc;
  border: none;
  border-radius: 50%;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0 20px;
  font-size: 24px;
}

.champion-nav button:hover {
  background: #00ddb3;
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul.menu {
    flex-direction: column;
  }

  .main-content {
    padding: 20px;
    height: auto;
  }
}
/* Página O Jogo */

.game-main {
  padding: 40px 20px;
  text-align: center;
}

.game-banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.game-banner h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.game-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.game-tabs button {
  background: #00ffcc;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.game-tabs button:hover {
  background: #00ccaa;
}

.game-content {
  display: none;
  margin-top: 30px;
  animation: fadeIn 0.5s;
}

.game-content.active {
  display: block;
}

.game-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #00ffcc;
}

.game-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.game-content img {
  max-width: 100%;
  border-radius: 8px;
}

/* Página Notas da Atualização */
.updates {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background: #111;
  border-radius: 8px;
}

.updates h1 {
  margin-bottom: 20px;
  color: #00ffcc;
}

.updates ul {
  list-style: none;
  padding: 0;
}

.updates ul li {
  margin-bottom: 10px;
}

/* Footer Modernizado com 6 redes e classificação */
footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 10px;
  text-align: center;
  color: white;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.footer-classificacao {
  position: absolute;
  left: 10px;
  top: 10px;
}

.footer-classificacao img {
  max-height: 60px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons img {
  width: 35px;
  height: 35px;
  background: #222;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.3s, background 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
  background: #00ffcc;
}

.footer-logo img {
  height: 60px;
}

.footer-center p {
  margin: 5px 0;
  font-size: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-content {
    gap: 10px;
  }

  .footer-classificacao {
    position: static;
    margin-bottom: 10px;
  }

  .social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* =================== ESTILO INDEX / CONFIG =================== */

/* Painel do Configurações */
.painel-main {
  display: flex;
  min-height: 80vh;
  background: #0a0f1e;
  color: white;
  padding: 20px;
}

.painel-sidebar {
  width: 250px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  padding: 20px;
  margin-right: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.painel-sidebar h2 {
  margin-bottom: 20px;
  color: #00ffcc;
  font-size: 18px;
  text-transform: uppercase;
}

.painel-sidebar ul {
  list-style: none;
  padding: 0;
}

.painel-sidebar ul li {
  margin-bottom: 15px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.painel-sidebar ul li:hover {
  color: #00ffcc;
}

.painel-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.painel-content h1, .painel-content h2 {
  color: #00ffcc;
  margin-bottom: 15px;
}

.painel-content p {
  margin-bottom: 15px;
}

#characterList div {
  background: rgba(0, 255, 204, 0.1);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

#characterList button {
  background: #00ffcc;
  color: black;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

#characterList button:hover {
  background: #00ddb3;
}

/* Rankings Index */
.rankings {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.ranking-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.ranking-box h3 {
  margin-bottom: 15px;
  color: #00ffcc;
}

.ranking-box ol {
  list-style: decimal;
  padding-left: 20px;
  text-align: left;
}

.ranking-box button {
  background: #00ffcc;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.ranking-box button:hover {
  background: #00ddb3;
}

/* Links rápidos */
.links-rapidos {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.links-rapidos div {
  background: rgba(0, 255, 204, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.links-rapidos strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #00ffcc;
}

.links-rapidos button {
  background: #00ffcc;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.links-rapidos button:hover {
  background: #00ddb3;
}

/* Responsivo */
@media (max-width: 768px) {
  .painel-main {
    flex-direction: column;
  }

  .painel-sidebar {
    width: 100%;
    margin-bottom: 20px;
  }

  .rankings, .links-rapidos {
    flex-direction: column;
  }

  .ranking-box, .links-rapidos div {
    width: 90%;
  }
}
