* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  background: url("bg.png") center / cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-text {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 260px;
  margin: 0 auto 25px;
}

.btn {
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.discord { background: #5865F2; }
.store   { background: #F59E0B; }
.vote    { background: #22C55E; }
.map     { background: #EF4444; }
.back    { background: #6B7280; }

.status {
  font-size: 14px;
  opacity: 0.9;
}

.status span {
  color: #FACC15;
  font-weight: 600;
}

.hidden {
  display: none;
}
