* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.container {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.08);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.2rem;
  color: #dbeafe;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.status {
  display: inline-block;
  margin-bottom: 35px;
  padding: 12px 20px;
  background: #16a34a;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
}

h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #93c5fd;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  background: rgba(37, 99, 235, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: bold;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-top: 0;
  color: #bfdbfe;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.7;
}

.links {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.links a {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.primary {
  background: #2563eb;
  color: white;
}

.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #dbeafe;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.links a:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

footer {
  margin-top: 45px;
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .card {
    text-align: center;
  }
}
