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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.container {
  max-width: 520px;
  width: 100%;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 56px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
  color: #ffd700;
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.35);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.divider {
  width: 56px;
  height: 1px;
  background: rgba(255, 215, 0, 0.5);
  margin: 0 auto 32px;
}

.status {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover {
  border-bottom-color: #ffd700;
}

@media (max-width: 480px) {
  .card {
    padding: 40px 24px;
  }

  h1 {
    font-size: 28px;
  }

  .tagline {
    font-size: 15px;
  }
}
