* {
  box-sizing: border-box;
}
:root {
  --pink: #ff1493;
  --blue: #0033cc;
  --yellow: #ffcc00;
  --dark: #111;
}
body {
  margin: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #111;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, 0.85),
      transparent 20%
    ),
    linear-gradient(135deg, #ff9ed8 0%, #ffecf7 35%, #89d4ff 70%, #ffe26b 100%);
  min-height: 100vh;
}
a {
  color: #0033cc;
}
.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px;
}
.top-strip {
  background: linear-gradient(#ffffcc, #ffcc33);
  border: 3px ridge #fff36d;
  padding: 6px 10px;
  text-align: center;
  font-weight: bold;
  color: #8a0000;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}
.under-construction {
  background: repeating-linear-gradient(
    45deg,
    #ffd400,
    #ffd400 10px,
    #111 10px,
    #111 20px
  );
  color: white;
  text-shadow: 1px 1px #000;
  border: 3px ridge #222;
  padding: 8px;
  text-align: center;
  font-weight: bold;
  margin-top: 12px;
}
.layout {
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  gap: 12px;
  margin-top: 12px;
}
.panel,
.content-section,
.hero {
  background: #fff;
  border: 3px outset #d8d8d8;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.panel-title {
  background: linear-gradient(#004cff, #001f8a);
  color: white;
  padding: 6px 8px;
  font-weight: bold;
  text-shadow: 1px 1px #000;
  border-bottom: 2px solid #000b58;
}
.panel-body {
  padding: 10px;
}
.hero {
  text-align: center;
  border: 4px ridge #ff4fad;
  overflow: hidden;
}
.hero-header {
  background: linear-gradient(90deg, #ff007f, #ffcc00, #00a2ff, #ff007f);
  color: #fff;
  padding: 8px;
  text-shadow: 2px 2px #90005b;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}
h1 {
  font-family:
    Impact,
    Arial Black,
    sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.9;
  margin: 18px 10px 8px;
  color: var(--pink);
  text-shadow:
    3px 3px 0 #fff000,
    6px 6px 0 #00a2ff,
    8px 8px 0 #111;
  letter-spacing: 1px;
  text-transform: uppercase;
}
h2,
h3 {
  margin-top: 0;
}
.subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #0033aa;
  margin-bottom: 14px;
}
.official-stamp {
  display: inline-block;
  border: 4px double #c40000;
  color: #c40000;
  transform: rotate(-6deg);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 14px;
  margin: 8px;
  background: #fff5f5;
  text-transform: uppercase;
}
.gif-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
  font-size: 28px;
}
marquee {
  background: #000;
  color: #00ff00;
  padding: 6px;
  font-family: "Courier New", monospace;
  font-weight: bold;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
.cta-box {
  margin: 14px;
  padding: 12px;
  background: linear-gradient(#e9f7ff, #ffffff);
  border: 2px dashed #0077ff;
}
.big-button,
button.big-button {
  display: inline-block;
  margin: 8px 4px;
  padding: 12px 18px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  background: linear-gradient(#ff5fc2, #c4006f);
  border: 3px outset #ffb7df;
  box-shadow: 2px 2px 0 #6a003b;
  cursor: pointer;
}
.big-button.secondary {
  background: linear-gradient(#00a2ff, #0033aa);
  border-color: #aee2ff;
  box-shadow: 2px 2px 0 #001e66;
}
.big-button:active {
  border-style: inset;
  transform: translate(2px, 2px);
  box-shadow: none;
}
.nav-link {
  display: block;
  background: linear-gradient(#fff, #e1e1e1);
  border: 2px outset #eee;
  color: #0033cc;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 6px;
  padding: 7px;
}
.nav-link:hover {
  background: #ffff99;
  color: #ff007f;
}
.badge {
  display: block;
  text-align: center;
  margin: 8px 0;
  padding: 7px;
  border: 2px solid #111;
  background: linear-gradient(#fffbd1, #ffcf33);
  font-size: 11px;
  font-weight: bold;
}
.counter {
  background: #000;
  color: #ff3cff;
  font-family: "Courier New", monospace;
  padding: 6px;
  text-align: center;
  border: 2px inset #555;
  letter-spacing: 2px;
  font-size: 18px;
  margin-top: 8px;
}
.content-section {
  margin-top: 12px;
  border: 3px groove #70b7ff;
}
.section-heading {
  background: linear-gradient(#ff73c8, #d9007d);
  color: #fff;
  padding: 8px 10px;
  font-size: 18px;
  font-family:
    Impact,
    Arial Black,
    sans-serif;
  text-shadow: 1px 1px #7a0046;
  letter-spacing: 1px;
}
.steps,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
}
.step,
.card {
  background: #fff8fb;
  border: 2px solid #ff9ed8;
  padding: 10px;
  min-height: 120px;
}
.step-number {
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  background: #0033cc;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  box-shadow: 2px 2px 0 #ffcc00;
}
form {
  padding: 14px;
  background: #f2fbff;
}
label {
  display: block;
  font-weight: bold;
  margin: 10px 0 4px;
  color: #0033aa;
}
input,
select,
textarea {
  width: 100%;
  font-family: Verdana, Arial, sans-serif;
  padding: 8px;
  border: 2px inset #d8d8d8;
  background: #fff;
}
textarea {
  min-height: 80px;
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.terms {
  background: #fffde7;
  border: 2px dashed #d49b00;
  padding: 10px;
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
}
.fake-document {
  margin: 14px;
  background: #fff;
  border: 1px solid #999;
  box-shadow: 3px 3px 0 #aaa;
  padding: 18px;
  font-family: Georgia, serif;
  position: relative;
}
.fake-document:before {
  content: "APPROVED?";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 58px;
  color: rgba(255, 0, 80, 0.08);
  font-weight: bold;
  pointer-events: none;
}
.document-title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
  margin-bottom: 12px;
}
.warning {
  background: #ffe6e6;
  color: #8a0000;
  border: 2px solid #c40000;
  padding: 8px;
  margin: 12px;
  font-weight: bold;
  text-align: center;
}
.tiny {
  font-size: 10px;
  color: #555;
  line-height: 1.4;
}
.footer {
  margin: 18px 0 8px;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 12px;
  border: 3px ridge #777;
  font-size: 11px;
}
.sparkle,
.blink-warning {
  animation: blink 0.8s steps(2, start) infinite;
}
.blink-warning {
  color: #ff0000;
  font-weight: bold;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.status-tracker {
  padding: 14px;
  background: #f7fff1;
}
.status-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px;
  margin-bottom: 8px;
  background: #fff;
  border: 2px solid #a6e65a;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
}
.status-icon {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #00a000;
  color: white;
  border: 2px outset #7cff7c;
  font-weight: bold;
}
.status-icon.pending {
  background: #ff9900;
  border-color: #ffd27a;
}
.response-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 14px;
}
.response-card {
  border: 3px outset #eee;
  background: linear-gradient(#fff, #ffe8f6);
  padding: 10px;
  min-height: 100px;
}
.response-card strong {
  color: #d9007d;
  font-size: 14px;
}
.testimonial {
  background: #eef7ff;
  border: 2px dotted #006dff;
  padding: 10px;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial b {
  color: #0033aa;
  font-style: normal;
}
.popup-box {
  margin: 14px;
  border: 3px outset #d8d8d8;
  background: #ece9d8;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  font-family: Tahoma, Verdana, sans-serif;
}
.popup-titlebar {
  background: linear-gradient(90deg, #0a246a, #a6caf0);
  color: white;
  padding: 5px 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-close {
  background: #c0c0c0;
  border: 2px outset #fff;
  color: #000;
  padding: 0 6px;
  font-weight: bold;
}
.popup-content {
  padding: 12px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}
.popup-icon {
  font-size: 34px;
}
.certificate {
  margin: 14px;
  padding: 18px;
  text-align: center;
  background: #fffdf2;
  border: 8px double #b88700;
  font-family: Georgia, serif;
}
.certificate h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #8a0000;
  text-transform: uppercase;
}
.mini-button-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.mini-button {
  background: linear-gradient(#fff, #cfcfcf);
  border: 2px outset #eee;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: bold;
}
.price {
  font-family:
    Impact,
    Arial Black,
    sans-serif;
  color: #ff1493;
  font-size: 38px;
  text-shadow: 2px 2px 0 #ffcc00;
}
table {
  width: calc(100% - 28px);
  margin: 14px;
  border-collapse: collapse;
  background: white;
}
td,
th {
  border: 2px solid #0033cc;
  padding: 9px;
  text-align: left;
}
th {
  background: #0033cc;
  color: white;
}
@media (max-width: 850px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .left,
  .right {
    order: 2;
  }
  .steps,
  .cards-grid,
  .form-grid,
  .response-grid {
    grid-template-columns: 1fr;
  }
}

.romance-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.romance-popup-overlay.show {
  display: block;
}

.romance-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 28px));
  pointer-events: auto;
  animation: popupSlideIn 0.35s ease-out;
}

.popup-close {
  cursor: pointer;
}

.popup-close,
.mini-button {
  font-family: Tahoma, Verdana, sans-serif;
}

.mini-button {
  cursor: pointer;
}

@keyframes popupSlideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
