
/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #0f1a3a, #0A1128);
  color: #f1f1f1;
  text-align: center;
}

/* LOGO */
.logo {
  width: 240px;
  height: auto;
  margin-top: 10px;
  filter: drop-shadow(0 0 10px rgba(217, 119, 6, 0.3));
}

/* LAYOUT */
.container {
  padding: 80px 20px;
}

/* TEXT */
h1 {
  font-size: 52px;
  color: #d97706;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

p {
  color: #aaa;
  margin-bottom: 30px;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  transition: 0.25s ease;
  display: inline-block;
}

/* hover polish */
.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* BUTTON COLORS */
.play {
  background: #d97706;
}

.discord {
  background: #5865F2;
}

/* STATUS CARD */
.card {
  margin-top: 40px;
  background: #141416;
  padding: 22px;
  border-radius: 12px;
  display: inline-block;
  min-width: 260px;
  border: 1px solid #222;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.status {
  color: #22c55e;
  font-weight: bold;
}
.version {
  color: #22c55e;
  font-weight: bold;
}

/* VOTING SECTION */
.vote-section {
  margin-top: 110px;
  padding: 70px 20px;
  background: linear-gradient(180deg, #141416, #0f0f10);
  border-top: 1px solid #222;
}

.vote-section h2 {
  color: #d97706;
  font-size: 34px;
  margin-bottom: 10px;
}

.vote-section p {
  color: #aaa;
  margin-bottom: 40px;
}

/* VOTE CARDS */
.vote-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vote-card {
  width: 240px;
  padding: 22px;
  border-radius: 14px;
  background: #1a1a1d;
  border: 1px solid #222;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.vote-card:hover {
  transform: translateY(-8px);
  border-color: #d97706;
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.25);
}

.vote-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.vote-desc {
  font-size: 13px;
  color: #888;
}