/* ========== PAGE CONTENT ========== */
h1 {
  text-align: center;
  font-size: 2.75rem;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 3rem auto;
}

.server-card {
  background: #16171c;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid #222;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.server-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2b2d31;
  margin: 0 auto 14px;
  overflow: hidden;
}

.server-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.server-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.invite-btn {
  background: #5b67e7;
  color: white;
}

.invite-btn:hover {
  background: #717dff;
}

.dashboard-btn {
  background: #0f9d27;
  color: white;
}

.dashboard-btn:hover {
  background: #087c1b;
}

/* ========== RESPONSIVE ========== */
@media(max-width:900px) {

  .nav-center,
  .premium-btn,
  .brand {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .feature-block {
    margin: 4rem 1rem;
  }

  .feature-block,
  .feature-block.alt {
    flex-direction: column;
    text-align: center;
  }

  .feature-media {
    max-width: 90%;
  }

  .feature-text {
    order: 1;
  }

  .feature-media {
    order: 2;
  }

  .feature-media img {
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}