/* === layout.css === */

/* === Global Styles === */
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

.main-container {
  padding-top: 80px; /* Move content down by header height (adjust 80px to match your header) */
  min-height: calc(100vh - 80px); /* Optional: maintain full viewport height minus header */
  box-sizing: border-box;
}

/* === Wipe Info Block === */
.wipe-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.wipe-info {
  text-align: center;
  padding: 12px 20px;       /* reduced vertical padding */
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  width: 70%;
  max-width: 900px;
  box-sizing: border-box;
  min-height: 60px;          /* reduced minimum height */
  margin: 5px auto;         /* reduced top/bottom margin */
}


.wipe-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00bcd4;
}

.wipe-info p {
  margin: 6px 0;
  font-size: 1rem;
  color: #ccc;
}

/* === Server Box Layout === */
.server-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 900px;
  padding: 10px;
  box-sizing: border-box;
}

.server-box {
  flex: 0 0 380px;
  max-width: 380px;
  background-color: rgba(30, 30, 30, 0.5);
  border: 2px solid #00bcd4;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #e0e0e0;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
  transition: transform 0.3s ease;
}

.server-box:hover {
  transform: scale(1.03);
  border-color: #00eaff;
}

.server-type {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}

/* === BattleMetrics Embed === */
.battlemetrics-embed {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}