body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('images/background.png') no-repeat center center fixed;
  background-size: cover;
}

.container {
  display: flex;
  /* min-height: 100vh;  << REMOVA ou comente esta linha */
}

.tag {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  color: white;
  margin-left: 6px;
}
.tag.Free { background: #4caf50; }
.tag.VIP { background: #ff9800; }


.sidebar {
  width: 200px;
  background: #113a5c;
  padding: 15px;
  color: white;
}

.menu-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.modulo.boss {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 180px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


.staff-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.poke, .item {
    display: inline-block;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.poke img, .item img {
    display: block;
    margin: 0 auto 5px;
    width: 64px;
    height: 64px;
}

.item img {
    width: 40px;
    height: 40px;
}

.clan-info-box {
  max-width: 900px;
  margin: 0 auto 40px auto;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.tier-bonus {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 15px;
}

.tier-bonus span {
  background-color: #f2f2f2;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.05);
}


.poke-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.tipagens-bonus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  margin: 40px 0 40px 0; /* <-- agora com margem superior */
}

.tip-box {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botao-clan {
    display: inline-block;
    background: #0072ff;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    min-width: 110px; /* <-- adicione isso para igualar os botões */
    text-align: center; /* <-- garante centralização do texto */
    margin-top: 10px;
}

.botao-clan:hover {
    background: #005ecc;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 20px;
}

.staff-table th,
.staff-table td {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: middle;
}

.staff-table th {
  background-color: #e3f2fd;
  font-weight: bold;
}

.search-box {
  display: flex;
  align-items: center;
  background: #0e2f47;
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 12px;
  margin-top: 10px;
}

.search-box input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  font-size: 13px;
  outline: none;
}

.search-box input::placeholder {
  color: #c7eaff;
}

.search-box i {
  margin-right: 6px;
  color: #c7eaff;
}

.menu {
  list-style: none;
  padding: 0;
}

.menu li {
  margin: 8px 0;
}

.menu a {
  color: #c7eaff;
  text-decoration: none;
  font-size: 13px;
  display: block;
  transition: 0.2s;
}


.menu a:hover {
  color: #ffffff;
  background: #0e2f47;
  padding-left: 5px;
  border-radius: 4px;
}

.menu-separator {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #8ecaff;
  margin-top: 20px;
  border-bottom: 1px solid #ffffff30;
  padding-bottom: 4px;
  margin-bottom: 6px;
}

.content {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
}

.banner {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.banner img {
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
  border: 2px solid #0084ff;
}

.navegacao-rapida {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #0084ff;
  padding: 8px;
  border-radius: 6px;
  margin: 0 auto 15px auto;
  max-width: 900px;
}

.grid-modulos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 30px;
  text-align: center;
  justify-items: center;
}

.modulo {
  /* Seu CSS existente... */
  text-decoration: none;
  color: black;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* <-- adicione isso */
  align-items: center;
  border: 1px solid #90caff;
  min-height: 340px; /* <-- adicione isso para padronizar a altura */
}

.modulo:hover {
  transform: scale(1.05);
}

.modulo img {
  margin-bottom: 10px;
}

.modulo span {
  display: block;
  font-size: 35px;
  margin-top: 5px;
  text-align: center;
  font-family: 'Luckiest Guy', cursive;
  color: #0072ff;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0px  2px 0 #000,
     2px  0px 0 #000;
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.wikitable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.9);
}

.wikitable th,
.wikitable td {
  border: 1px solid #90caff;
  padding: 10px;
  text-align: left;
}

.wikitable th {
  background-color: #cce6ff;
  color: #004080;
}

.staff-bloco h3 {
  margin-bottom: 10px;
}

.staff-bloco p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.creator-item-img {
    width: 32px;
    height: 32px;
    object-fit: none;
    object-position: left top;
    image-rendering: pixelated;
    border: 1px solid #b4daff;
    background: white;
    padding: 4px;
    border-radius: 8px;
    display: block;
    margin: auto;
}