:root {
  --bg-1: #071224;
  --bg-2: #0a1a2f;
  --card: rgba(10, 21, 38, 0.82);
  --text: #eaf3ff;
  --muted: #9cb2cc;
  --line: rgba(138, 181, 220, 0.24);
  --accent: #27b1ff;
  --accent-2: #1d8fe6;
  --danger: #ff7d7d;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(76, 191, 255, 0.22), transparent 26%),
    radial-gradient(circle at 86% 88%, rgba(47, 141, 255, 0.16), transparent 32%),
    linear-gradient(165deg, var(--bg-1) 0%, var(--bg-2) 65%, #091525 100%);
  min-height: 100vh;
  padding: 24px;
}

.access-shell {
  width: min(760px, 100%);
  margin: 0 auto;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
}

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

.btn-secondary {
  color: var(--text);
  border-color: rgba(128, 211, 255, 0.35);
  background: rgba(17, 30, 48, 0.55);
}

.access-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.card-header h1 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

.card-header p {
  color: var(--muted);
  margin-bottom: 20px;
}

.bundle {
  border: 1px solid var(--line);
  background: rgba(9, 23, 41, 0.72);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
}

.bundle h2 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.bundle-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.bundle-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.bundle-list li {
  font-size: 0.95rem;
  color: #d1e6ff;
}

.bundle-note {
  font-size: 0.9rem;
  color: #b8cde3;
  margin-bottom: 8px;
}

.bundle-support {
  font-size: 0.9rem;
  color: #8ce4bf;
  font-weight: 600;
  margin-bottom: 12px;
}

.star{
  color: #e45d27;
  font-size: 1.2rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.old-price {
  color: #9db1c5;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.new-price {
  color: #ff5d5d;
  font-size: 1.45rem;
  font-weight: 800;
}

.access-form {
  display: grid;
  gap: 9px;
}

.access-form label {
  font-size: 0.9rem;
  color: #c3d9ef;
}

.access-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 16, 31, 0.7);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.access-form input:focus {
  border-color: rgba(39, 177, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(39, 177, 255, 0.18);
}

.form-message {
  min-height: 20px;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: #66d495;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #c4daef;
  margin-top: 2px;
}

.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #4ec6ff;
  cursor: pointer;
}

.consent-check a {
  color: #8fd5ff;
  text-decoration: none;
}

.consent-check a:hover {
  text-decoration: underline;
}

#continue-btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  color: #041424;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

#continue-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(35, 154, 232, 0.32);
}

#continue-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(0.25);
  transform: none;
  box-shadow: none;
}

@media (max-width: 640px) {
  body {
    padding: 14px;
  }

  .access-card {
    padding: 20px;
  }
}
