* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1a2a6c, #3b5998, #6a1b9a);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: rgba(0,0,0,0.6);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  margin: 6px 10px;
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #fff;
}

.status {
  background: rgba(0,0,0,0.5);
  padding: 10px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.main {
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 40px 20px;
  background: rgba(30, 60, 150, 0.85);
  margin: 30px auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.main img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.minigame {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 600;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff9800;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn:hover {
  background: #ffc107;
}

.address {
  margin-top: 12px;
  font-size: 14px;
  color: #eee;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 16px;
  background: rgba(0,0,0,0.6);
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  .minigame {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  header {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }

  .status {
    font-size: 13px;
  }

  .main {
    padding: 30px 16px;
  }
}
