:root {
  --bg-deep: #000000;
  --bg-charcoal: #0c0c0c;
  --bg-panel: #1f1f1f;
  --panel-border: #2d2d2d;
  --text-main: #f2f2f2;
  --text-muted: #b9b9b9;
  --accent: #f5a623;
  --accent-soft: #ffbe55;
  --danger: #ef4f5e;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Barlow", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 50% 0%, #1a1a1a 0%, rgba(26, 26, 26, 0) 52%),
    radial-gradient(circle at 50% 100%, #111111 0%, rgba(17, 17, 17, 0) 45%),
    var(--bg-deep);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.warning-card {
  width: min(560px, 100%);
  background: linear-gradient(180deg, #232323 0%, #191919 100%);
  border: 4px solid #e39b2e;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 30px rgba(0, 0, 0, 0.8),
    0 0 90px rgba(245, 166, 35, 0.2);
  padding: 28px 24px 24px;
}

.header-row {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
}

.warning-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.warning-label {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.warning-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-top: 0;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-wrap: balance;
}

.intro,
.body-copy,
.outro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.01rem;
  line-height: 1.55;
}

.intro {
  margin-bottom: 14px;
}

.body-copy {
  margin-top: 14px;
}

.points {
  margin: 14px 0;
  padding-left: 18px;
  color: #dedede;
}

.points li {
  margin: 6px 0;
  line-height: 1.4;
}

.outro {
  margin-top: 16px;
  font-style: italic;
}

.actions {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.cta-button {
  border: 1px solid #ffb13b;
  background: linear-gradient(180deg, #f1a538 0%, #d18416 100%);
  color: #131313;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  transition: transform 120ms ease, filter 120ms ease;
}

.cta-button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.secondary-link {
  color: #cfcfcf;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
  font-size: 0.96rem;
}

.secondary-link:hover {
  color: #ffffff;
}

.redirect-card {
  width: min(420px, 100%);
  text-align: center;
}

.redirect-text {
  margin: 0;
  color: #dfdfdf;
  font-size: 0.96rem;
}

.loader {
  margin: 18px auto 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(245, 166, 35, 0.25);
  border-top-color: var(--accent-soft);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 520px) {
  .warning-card {
    width: min(560px, 100%);
    border-width: 3px;
    padding: 22px 18px 20px;
  }

  .warning-label {
    font-size: 1.16rem;
  }

  .warning-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 0;
  }

  .points {
    padding-left: 16px;
  }
}
