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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, "Noto Sans Myanmar", sans-serif;
  color: #fff7df;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(214, 173, 69, 0.20), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(248, 223, 138, 0.14), transparent 26%),
    linear-gradient(135deg, #020202 0%, #0d0b07 45%, #1b1305 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(214, 173, 69, 0.10), transparent 35%),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.42) 72%);
  pointer-events: none;
}

.bg-particles span {
  position: fixed;
  left: var(--x);
  top: var(--y);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 223, 138, 0.70);
  box-shadow: 0 0 20px rgba(214, 173, 69, 0.75);
  animation: float 5s ease-in-out infinite;
  animation-delay: var(--d);
  opacity: 0.8;
}

.bg-particles span::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  left: 10px;
  top: 3px;
  background: linear-gradient(90deg, rgba(214, 173, 69, 0.28), transparent);
  transform: rotate(25deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(-18px);
    opacity: 1;
  }
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.access-card {
  width: min(94vw, 560px);
  padding: 46px 38px 38px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(15, 12, 6, 0.70);
  border: 1px solid rgba(214, 173, 69, 0.34);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  color: #fff3c7;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.brand::first-letter {
  color: #d6ad45;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 38px;
  padding: 0 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #f8df8a;
  font-size: 13px;
  letter-spacing: 0.8px;
  border: 1px solid rgba(214, 173, 69, 0.46);
  background: rgba(214, 173, 69, 0.10);
}

h1 {
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(214, 173, 69, 0.22);
}

.subtitle {
  color: #eadfbd;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.actions {
  display: grid;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  border-radius: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98);
}

.btn.primary {
  color: #161006;
  background: linear-gradient(135deg, #fff0aa 0%, #d6ad45 46%, #9f7420 100%);
  box-shadow: 0 14px 30px rgba(214, 173, 69, 0.24);
}

.btn.secondary {
  color: #f8df8a;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(214, 173, 69, 0.38);
}

.status {
  color: #d8cda9;
  font-size: 14px;
  margin-top: 26px;
}

@media (max-width: 520px) {
  .page {
    padding: 18px 14px;
  }

  .access-card {
    padding: 36px 20px 30px;
    border-radius: 24px;
  }

  .brand {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .pill {
    height: 34px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .btn {
    min-height: 54px;
    font-size: 15px;
  }
}