.serverStatus{
    width: 100vw !important;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 30px;
}
@media screen and (max-width: 1450px) {
    .serverStatus{
        margin-top: 100px !important;
    }
}
.serverStatus .title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.serverStatus .title h1{
    font-size: 45px;
}
.serverStatus .title h4{
    font-size: 25px;
    color: #808080;
}
.network-status {
    width: 100%;
    background-color: #1a1a1a00;
    padding: 30px 20px;
    border-radius: 10px;
    color: white;
    font-family: var(--font-default, Arial, sans-serif);
}

.network-status h2 {
  font-family: var(--font-minecraft-bold, sans-serif);
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--accent-color, #00bcd4);
}

.server-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.server-card {
  background-color: #2a2a2a2b;
  border-radius: 8px;
  display: flex;
  min-width: 400px;
  align-items: center;
  padding: 15px;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.server-card:hover {
  transform: scale(1.02);
}

.server-card .icon img {
  width: 200px;
  height: 200px;
  border-radius: 6px;
  image-rendering: pixelated;
  background-color: #111;
}

.server-card .details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.server-card .details h3 {
  font-size: 18px;
  margin: 0;
  font-family: var(--font-minecraft-bold);
}

.server-card .status {
  font-size: 14px;
  font-weight: bold;
}

.server-card .status.online {
  color: #4caf50;
}

.server-card .status.offline {
  color: #f44336;
}

.server-card .players {
  font-size: 14px;
  color: #ccc;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .server-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .server-card .icon img {
    width: 200px;
    height: 200px;
  }

  .server-card .details h3 {
    font-size: 16px;
  }
}