
    body, a, button {
      cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="black" /><ellipse cx="12" cy="12" rx="6" ry="10" fill="purple" /><circle cx="12" cy="12" r="4" fill="white" /></svg>') 12 12, auto;
    }

    body {
      margin: 0;
      background:
        linear-gradient(rgba(30, 0, 60, 0.85), rgba(10, 0, 40, 0.95)),
        url('https://www.transparenttextures.com/patterns/pixel-paper.png');
      background-repeat: repeat;
      color: #d8b0ff;
      font-family: 'Roboto', sans-serif;
      user-select: none;
      min-height: 100vh;
    }

    header {
      background: linear-gradient(90deg, #3c0077, #9b59b6);
      padding: 25px 0;
      text-align: center;
      box-shadow: 0 5px 20px #7e3cffaa;
      position: sticky;
      top: 0;
      z-index: 999;
    }

    header h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3.4rem;
      color: #e0ccff;
      text-shadow:
        0 0 8px #b085ff,
        0 0 15px #7e3cff,
        0 0 25px #b085ff;
      margin: 0;
      letter-spacing: 0.12em;
    }

    nav {
      margin-top: 12px;
    }

    nav a {
      color: #c299ff;
      font-weight: 700;
      margin: 0 20px;
      text-decoration: none;
      padding: 8px 18px;
      border-radius: 12px;
      transition: all 0.4s ease;
      font-size: 1.1rem;
      text-shadow: 0 0 5px #7e3cffcc;
      display: inline-block;
    }

    nav a:hover,
    nav a:focus {
      background: radial-gradient(circle at center, #7e3cff, #3a0f80);
      box-shadow:
        0 0 18px #7e3cff,
        0 0 30px #b085ff;
      color: #fff;
      outline: none;
    }

    .hero {
      text-align: center;
      margin: 60px auto 50px;
      max-width: 900px;
      padding: 0 20px;
    }

    .hero h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.8rem;
      color: #bb99ff;
      text-shadow: 0 0 15px #7e3cff;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1.25rem;
      color: #d3baffcc;
      line-height: 1.6;
    }

    .section {
      max-width: 800px;
      margin: 60px auto;
      padding: 20px;
      border-radius: 15px;
      background: rgba(58, 31, 95, 0.5);
      box-shadow: 0 0 15px #7e3cff66;
      color: #ddccff;
      font-size: 1.1rem;
      line-height: 1.5;
      font-family: 'Roboto', sans-serif;
    }

    .dark {
      background: rgba(40, 10, 60, 0.7);
      box-shadow: 0 0 25px #b085ff99;
    }

    .section h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      margin-bottom: 18px;
      color: #d4b7ff;
      text-shadow: 0 0 12px #b085ffcc;
      letter-spacing: 0.06em;
    }

    .join-btn {
      background: linear-gradient(45deg, #7e3cff, #b085ff);
      color: #f3eaff;
      padding: 14px 36px;
      font-size: 1.3rem;
      font-weight: 900;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      box-shadow:
        0 0 12px #7e3cff,
        0 0 25px #b085ff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: inline-block;
      user-select: none;
      letter-spacing: 0.05em;
      text-shadow: 0 0 10px #b085ff;
    }

    .join-btn:hover,
    .join-btn:focus {
      transform: scale(1.15);
      box-shadow:
        0 0 30px #b085ff,
        0 0 40px #7e3cff,
        0 0 50px #b085ff;
      outline: none;
    }

    footer {
      text-align: center;
      padding: 20px 10px;
      font-size: 0.9rem;
      color: #a489c2cc;
      letter-spacing: 0.07em;
      font-family: 'Orbitron', sans-serif;
      user-select: none;
      margin-top: 80px;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(22, 7, 44, 0.95);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      overflow-y: auto;
    }

    .modal-content {
      background-color: #3a1f5f;
      margin: 12% auto;
      padding: 30px 30px 35px;
      border-radius: 18px;
      width: 90%;
      max-width: 480px;
      color: #e6d8ff;
      text-align: center;
      font-family: 'Orbitron', sans-serif;
      box-shadow:
        0 0 35px #7e3cff,
        inset 0 0 10px #b085ff;
      user-select: none;
      letter-spacing: 0.05em;
    }

    .modal-content h2 {
      margin-top: 0;
      font-size: 2.6rem;
      text-shadow: 0 0 20px #b085ffcc;
    }

    .modal-content p {
      font-size: 1.3rem;
      margin: 20px 0 0;
      color: #cdbfffcc;
    }

    .close {
      color: #b085ff;
      font-size: 32px;
      font-weight: 900;
      float: right;
      cursor: pointer;
      transition: color 0.3s ease;
      user-select: none;
    }

    .close:hover,
    .close:focus {
      color: #fff;
      outline: none;
    }

.fight-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
  width: 300px;
  background: #0008; 
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding-bottom: 10px;
  z-index: 1000;
  border-radius: 8px 8px 0 0;
}

.steve {
  height: 120px;
  animation: steveAttack 2s infinite alternate ease-in-out;
  transform-origin: center bottom;
}

.enderman {
  height: 130px;
  animation: endermanAttack 2s infinite alternate ease-in-out;
  transform-origin: center bottom;
  filter: drop-shadow(0 0 4px purple);
}

@keyframes steveAttack {
  0% { transform: rotate(0deg) translateX(0); }
  50% { transform: rotate(-15deg) translateX(-5px); }
  100% { transform: rotate(0deg) translateX(0); }
}

@keyframes endermanAttack {
  0% { transform: rotate(0deg) translateX(0); }
  50% { transform: rotate(15deg) translateX(5px); }
  100% { transform: rotate(0deg) translateX(0); }
}

.fight-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 150px;
  width: 300px;
  background: #0008;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding-bottom: 10px;
  border-radius: 8px 8px 0 0;
  z-index: 1000;
  gap: 40px;
  font-size: 12px;
}

.steve, .enderman {
  position: relative;
  width: 50px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.head, .body, .arm, .leg {
  box-sizing: border-box;
  border: 1px solid #333;
  background: #888;
}

.steve .head {
  width: 40px;
  height: 40px;
  background: #8b5c42;
  border-color: #5c3a21;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.steve .body {
  width: 30px;
  height: 50px;
  background: #3b6db0;
  border-color: #255080;
  margin: 2px 0;
  border-radius: 4px;
}

.steve .arm {
  width: 10px;
  height: 40px;
  background: #8b5c42;
  border-color: #5c3a21;
  position: absolute;
  top: 45px;
  border-radius: 4px;
}

.steve .arm-left {
  left: -12px;
  animation: stevePunch 2s infinite alternate ease-in-out;
  transform-origin: top center;
}

.steve .arm-right {
  right: -12px;
}

.steve .leg {
  width: 12px;
  height: 50px;
  background: #1a4a20;
  border-color: #113117;
  margin: 0 3px;
  border-radius: 4px;
  position: relative;
  top: 0;
}

.steve .leg-left {
  float: left;
}

.steve .leg-right {
  float: right;
}

.enderman .head {
  width: 40px;
  height: 40px;
  background: #111; 
  border-color: #222;
  border-radius: 8px 8px 0 0;
  position: relative;
  box-shadow: 0 0 10px purple;
}

.enderman .body {
  width: 30px;
  height: 50px;
  background: #222;
  border-color: #111;
  margin: 2px 0;
  border-radius: 8px;
  box-shadow: 0 0 6px purple inset;
}

.enderman .arm {
  width: 10px;
  height: 50px;
  background: #111;
  border-color: #222;
  position: absolute;
  top: 45px;
  border-radius: 4px;
  box-shadow: 0 0 5px purple;
}

.enderman .arm-left {
  left: -12px;
  animation: endermanSwipe 2s infinite alternate ease-in-out;
  transform-origin: top center;
}

.enderman .arm-right {
  right: -12px;
}

.enderman .leg {
  width: 12px;
  height: 50px;
  background: #111;
  border-color: #222;
  margin: 0 3px;
  border-radius: 4px;
  position: relative;
  top: 0;
  box-shadow: 0 0 6px purple inset;
}

@keyframes stevePunch {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-30deg); }
  100% { transform: rotate(0deg); }
}

@keyframes endermanSwipe {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(30deg); }
  100% { transform: rotate(0deg); }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-image {
  flex-shrink: 0;
  width: 360px;
  height: 350px;
}

.flipped {
  transform: scaleX(-1); 
}

.imagem-centralizada {
  text-align: center; 
  margin-top: 30px; 
}

.imagem-centralizada img {
  max-width: 100%;
  height: auto;
}

.imagem-discord {
  text-align: center;
  margin-top: 40px;
}

.imagem-discord img {
  width: 60%;
  max-width: 600px;
  height: auto;
}

.update-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-image-container {
  flex-shrink: 0;
}

.hero-text {
  max-width: 500px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
    padding: 0 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }

  nav a {
    margin: 5px 10px;
    font-size: 0.95rem;
    padding: 6px 12px;
  }

  .hero-content {
    flex-direction: column;
    padding: 20px 10px;
    text-align: center;
  }

  .hero-image {
    width: 90%;
    height: auto;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 15px;
    margin: 40px 10px;
    font-size: 1rem;
  }

  .section h3 {
    font-size: 1.5rem;
  }

  .join-btn {
    padding: 12px 28px;
    font-size: 1.1rem;
  }

  .modal-content {
    margin: 20% auto;
    padding: 25px 20px;
    width: 95%;
  }

  .modal-content h2 {
    font-size: 2rem;
  }

  .modal-content p {
    font-size: 1.1rem;
  }

  .imagem-discord img {
    width: 90%;
  }

  .fight-container {
    flex-direction: row;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 15px 5px;
  }

  .steve, .enderman {
    width: 40px;
    height: auto;
    transform: scale(0.8); 
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #e0ccff;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1001;
  cursor: pointer;
  text-shadow: 0 0 8px #b085ff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav.nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(30, 0, 60, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 5px 20px #7e3cffaa;
    text-align: center;
    z-index: 1000;
  }

  nav.nav-links.active {
    display: flex;
  }

  nav.nav-links a {
    margin: 10px 0;
    padding: 10px 20px;
  }
}

.wiki-toggle {
  background: linear-gradient(45deg, #7e3cff, #b085ff);
  color: #f3eaff;
  padding: 10px 26px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  box-shadow:
    0 0 12px #7e3cff,
    0 0 25px #b085ff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 0 8px #b085ff;
  letter-spacing: 0.04em;
  font-family: 'Orbitron', sans-serif;
  margin: 20px auto;
  display: block;
}

.wiki-toggle:hover,
.wiki-toggle:focus {
  transform: scale(1.1);
  box-shadow:
    0 0 20px #b085ff,
    0 0 30px #7e3cff,
    0 0 45px #b085ff;
  outline: none;
}

.wiki-active {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #e0ccff;
  position: absolute;
  top: 1px;
  right: 620px;
  z-index: 1001;
  cursor: pointer;
  text-shadow: 0 0 8px #b085ff;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block; 
  }

  .wiki-active {
    display: block;
    position: absolute;
    left: -4px; 
    top: 5px; 
    font-size: 2rem;
    color: #e0ccff;
    z-index: 1001;
    cursor: pointer;
    background: none;
    border: none;
    text-shadow: 0 0 8px #b085ff;
  }

  .wiki-sidebar.active {
  display: block;
}

  nav.nav-links {
    display: none;
  }
}

 @media (max-width: 768px) {
  .wiki-sidebar {
    display: none;
  }

  .wiki-sidebar.active {
    display: block;
  }
}

