:root {
  --grey-bg: #1f1f23;
  --grey-soft: #2a2a30;
  --blue-navy: #0a1034;
  --pink-pastel: #ffc5d3;
  --accent-pink-soft: #ffd9e3;
  --text-main: #f7f7ff;
  --text-muted: #b6b6c7;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 100% 0%, rgba(174, 198, 255, 0.3), transparent 55%), linear-gradient(155deg, var(--blue-navy), #050612);
}

body::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 197, 211, 0.8), transparent 65%);
  top: 8%;
  left: 12%;
}

body::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(174, 198, 255, 0.9), transparent 65%);
  bottom: 6%;
  right: 10%;
}

header {
  width: 100%;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 197, 211, 0.08),
    rgba(10, 16, 52, 0.4)
  );
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  padding: 2.5rem 2rem;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, margin 0.4s ease, width 0.4s ease, height 0.4s ease;
}

header h1 {
  font-size: 2.5rem;
  color: var(--text-main);
}

header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.cards-wrapper {
  display: grid;
  width: 100%;
  max-width: 1900px;
  padding: 20px;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cards-wrapper .card {
  background: #080a1cd9;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  border: 1px solid #ffc5d32e;
  box-shadow: 0 18px 50px #000000b3;
  color: #e5e7ff;
  text-align: center;
}