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

:root {
  --color-bg: #0f1116;
  --color-card: #1a1d24;
  --color-card-border: rgba(255, 255, 255, 0.06);
  --color-text: #e4e6ea;
  --color-text-muted: #8b8f96;
  --color-accent: #2ea07a;
  --color-accent-light: #3cc494;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1.5;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1a6b5a 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  padding: 24px;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #1a6fc4;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(26, 111, 196, 0.3);
  border: 3px solid #fff;
  transform: rotate(-6deg);
}

.parking-letter {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--color-text);
}

.card-message {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.blogbird-link {
  color: #4a9ae0;
  font-weight: 600;
  text-decoration: none;
}

.blogbird-link:hover {
  text-decoration: underline;
}

.card-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-card-border), transparent);
  margin: 28px auto;
  border-radius: 1px;
}

.card-footer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .card {
    padding: 36px 24px;
    border-radius: 16px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }

  .card-icon svg {
    width: 36px;
    height: 36px;
  }
}
