* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #f8fafc;
  font-family: 'Press Start 2P', cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
}

.admin-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #facc15;
  color: #1e293b;
  font-size: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #facc15;
  transition: all 0.3s ease;
  z-index: 999;
}

.admin-button:hover {
  background-color: #eab308;
  box-shadow: 0 0 15px #fde68a;
}

.map-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #38bdf8;
  color: #0f172a;
  font-size: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #38bdf8;
  transition: all 0.3s ease;
  z-index: 999;
}

.map-button:hover {
  background-color: #0ea5e9;
  box-shadow: 0 0 15px #7dd3fc;
}

header {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 150px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px #3b82f6;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.btn:hover {
  background-color: #2563eb;
  box-shadow: 0 0 15px #60a5fa;
}

.status-section {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-box {
  background-color: #0f172a;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  margin: 0.5rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  font-size: 0.75rem;
  width: 300px;
  text-align: center;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.status-box.online {
  background-color: #166534;
  color: #d1fae5;
  box-shadow: 0 0 20px #22c55e44;
}

.status-box.offline {
  background-color: #7f1d1d;
  color: #fecaca;
  box-shadow: 0 0 20px #ef444444;
}

footer {
  font-size: 0.6rem;
  color: #94a3b8;
}
