@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.link {
  color: #7289da;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

header, footer {
  background-color: #1f1f1f;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1, footer p {
  font-size: 1.8rem;
  color: #7289da;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #7289da;
}

section {
  background-color: #1e1e1e;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

section h2 {
  padding-left: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

section p {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.8;
}

a.button, button {
  display: inline-block;
  background-color: #7289da;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

a.button:hover, button:hover {
  background-color: #5b6eae;
  transform: translateY(-2px);
}

footer p {
  font-size: 0.9rem;
}

code {
  background-color: #2a2a2a;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  color: #dcdcdc;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    margin-top: 1rem;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .container {
    padding: 0 0.5rem;
  }

  .team-member, .premium-tier {
    width: 100%;
    margin: 0.5rem 0;
  }

  .info-box {
    padding: 1rem;
  }
}

.team-members, .server-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member, .server {
  width: 300px;
  margin: 1rem;
  padding: 1rem;
  text-align: center;
  background-color: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.team-member-image, .server-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid #7289da;
}

.team-member h3, .server h3, .premium-tier h3, .statistic h3, .server h3, .info-box h3 {
  color: #7289da;
  text-align: center;
}

.beta-tester-list, .premium-tier-list, .statistics-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
}

.beta-tester, .statistic {
  display: block;
  background-color: #2a2a2a;
  padding: 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: default;
  color: #dcdcdc;
}

.premium-tiers, .statistics, .servers-using-zenith {
  background-color: #1e1e1e;
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: #e0e0e0;
}

.premium-tier, .statistic, .server {
  background-color: #2a2a2a;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-tier p, .statistic p, .server p {
  color: #dcdcdc;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.premium-tier .price {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 1rem 0;
}

.info-boxes {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.info-box {
  width: 100%;
  background-color: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.info-box p {
  color: #dcdcdc;
  margin-bottom: 1.5rem;
}

.banner {
  background-color: #7289da;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
}

.banner a {
  color: #fff;
  text-decoration: underline;
}