* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #1b1b1b, #2d2d2d);
  color: #fff;
  overflow-x: hidden;
}

header {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  color: #00ff88;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ff88;
}

section {
  padding: 80px 50px;
  text-align: center;
}

.hero {
  background: url('../img/minecraft-bg.png') center/cover no-repeat;
  padding: 150px 20px;
  color: #fff;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #00ff88;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #00cc6a;
}

.copy-box {
  margin-top: 20px;
}

.copy-box input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 250px;
  text-align: center;
  margin-right: 10px;
}

footer {
  background: #111;
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.9em;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.member {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.member:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #00ff88;
}

.member h3 {
  color: #00ff88;
  margin-bottom: 5px;
}

.member p {
  color: #ccc;
  font-size: 0.9em;
}

.entrar-box {
  background-color: #1a5e1a;
  padding: 20px;
  margin: 20px auto;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 0 15px #0f3d0f;
}

.entrar-box h3 {
  color: #00ff88;
  font-family: 'Courier New', Courier, monospace;
  margin-bottom: 10px;
}

.entrar-box p {
  font-family: 'Courier New', Courier, monospace;
  color: #d0ffd0;
  margin: 5px 0;
}

.entrar-box .ip {
  font-weight: bold;
  color: #fff;
  background-color: #008000;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
}
