* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  background: linear-gradient(to right, #1f1f1f, #292929);
  padding: 0.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #f5b041;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 0.6rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  color: #f0f0f0;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: #f5b041;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 10px #f5b04180;
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #1e1e1e;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.dropdown a {
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.95rem;
}


.content {
  flex: 1;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.post-list {
  display: grid;
  gap: 2rem;
}

.post-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card h2 {
  font-size: 1.5rem;
  margin: 1rem;
}

.post-card p {
  margin: 0 1rem 1rem;
  color: #ccc;
}

.btn {
  display: inline-block;
  background-color: #f5b041;
  color: #000;
  margin: 0 1rem 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e67e22;
}

footer {
  background-color: #1e1e1e;
  padding: 1rem;
  text-align: center;
}

.social-links a {
  color: #f5b041;
  text-decoration: none;
  margin: 0 0.5rem;
}

.logo-img {
  height: 75px; /* 50% maior */
  width: auto;
}
body {
  background-image: url("../img/fundo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* efeito paralaxe leve */
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.sobre-jogo {
  background-color: rgba(30, 30, 30, 0.8);
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
}

.sobre-jogo h1 {
  font-size: 2rem;
  color: #f5b041;
  margin-bottom: 1rem;
}

.sobre-jogo p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.jogar-btn {
  font-size: 1.2rem;
  padding: 0.8rem 2rem;
  background-color: #f5b041;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.jogar-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}
.social-links {
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  margin: 0 0.5rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 3px #f5b04150);
}
.regras-container {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.regras-container h1 {
  text-align: center;
  color: #f5b041;
  margin-bottom: 2rem;
}

.regra-bloco {
  margin-bottom: 2rem;
}

.regra-bloco h2 {
  color: #00cc66;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.regra-bloco.proibido h2 {
  color: #ff4444;
}

.regra-bloco.final h2 {
  color: #f5b041;
}

.regra-bloco ul {
  list-style: none;
  padding-left: 1rem;
}

.regra-bloco ul li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
  color: #ddd;
}

.regra-bloco p {
  color: #ccc;
  margin-bottom: 0.8rem;
}
.download-container {
  background-color: #1e1e1e;
  padding: 3rem 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.download-container h1 {
  text-align: center;
  color: #f5b041;
  margin-bottom: 1rem;
}

.subtexto {
  text-align: center;
  color: #ccc;
  margin-bottom: 2rem;
}

.botoes-download {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-img-download {
  width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.btn-img-download:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #f5b04188;
}

.requisitos, .instrucoes {
  background-color: #292929;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.requisitos h2, .instrucoes h2 {
  color: #f5b041;
  margin-bottom: 1rem;
}

.requisitos ul {
  list-style: none;
  padding-left: 0;
}

.requisitos li {
  margin-bottom: 0.8rem;
  color: #ddd;
  font-size: 1rem;
}

.instrucoes ol {
  padding-left: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}

.instrucoes code {
  background-color: #333;
  padding: 2px 6px;
  border-radius: 4px;
  color: #f5b041;
}
.pagina-donate {
  background-color: #1e1e1e;
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.pagina-donate h1 {
  color: #f5b041;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #f5b04180;
}

.texto-doar {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.tabela-wrapper {
  overflow-x: auto;
}

.tabela-doacao {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 2rem;
  font-size: 1rem;
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
}

.tabela-doacao th, .tabela-doacao td {
  padding: 1rem;
  border-bottom: 1px solid #444;
  color: #eee;
}

.tabela-doacao thead {
  background-color: #3c3c3c;
  color: #f5b041;
}

.tabela-doacao tbody tr:nth-child(even) {
  background-color: #242424;
}

.bonus {
  color: #00ff88;
  font-weight: bold;
}

.bonus.destaque {
  color: #ffd700;
  font-size: 1.1rem;
}

.botao-doar-container {
  margin-top: 2rem;
}

.botao-doar {
  background-color: #f5b041;
  color: #000;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px #f5b04180;
}

.botao-doar:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}
.droplist-section {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  max-width: 1000px;
  margin: 0 auto;
}

.droplist-section h1 {
  color: #f5b041;
  margin-bottom: 1rem;
  text-align: center;
}

.subtexto {
  text-align: center;
  margin-bottom: 2rem;
  color: #ccc;
}

.droplist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.droplist-table th,
.droplist-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #333;
  text-align: left;
  color: #eee;
}

.droplist-table thead {
  background-color: #2c2c2c;
  color: #f5b041;
}

.droplist-table tbody tr:nth-child(even) {
  background-color: #252525;
}

.drop-medium {
  color: #00cc88;
  font-weight: bold;
}
.galeria-jogo {
  padding: 50px 20px;
  text-align: center;
}

.galeria-jogo h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.subtexto {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
}

.grid-fotos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.grid-fotos img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.grid-fotos img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.7);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  animation: aparecer 0.3s ease;
}

.fechar-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
}

@keyframes aparecer {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.historia-section {
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.85); /* fundo escuro igual outras seções */
}

.historia-section h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #f1c40f;
}

.historia-section .subtexto {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 30px;
}

.historia-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(20, 20, 20, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  color: #eee;
  text-align: justify;
  line-height: 1.6;
}

.historia-box p {
  margin-bottom: 20px;
}

.historia-box strong {
  color: #e06666;
}

.chamada-final {
  font-size: 1.2em;
  text-align: center;
  margin-top: 30px;
  color: #ffffff;
}

.historia-texto p {
  color: #eee;
  margin-bottom: 1rem;
  text-align: justify;
  line-height: 1.6;
}
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 0.5rem 0;
  z-index: 1000;
  min-width: 180px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.has-dropdown.active .dropdown {
  display: block;
}
.botao-login {
  background-color: #f1c40f; /* amarelo forte */
  color: #000; /* texto preto pra contraste */
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.botao-login:hover {
  background-color: #ffd700; /* amarelo ouro no hover */
  color: #000;
}
.nav-menu li a.menu-login {
  background-color: #f1c40f !important;
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 999;
  list-style: none;
}

.has-dropdown.active .dropdown {
  display: block;
}

.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #eee;
  text-decoration: none;
}

.has-dropdown .dropdown li a:hover {
  background-color: #333;
}

.video-section {
  text-align: center;
  margin-top: 40px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
