html, body {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #f5f5f5;
  font-family: "Courier New", monospace;
}
.wrapper {
  max-width: 760px;
  margin: 34px auto;
  padding: 26px 30px 120px;
  border: 3px solid #ffffff;
  background: #000000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
  text-align: center;
  position: relative;
  animation: borderPulse 2.2s infinite alternate;
}
@keyframes borderPulse {
  from { box-shadow: 0 0 4px rgba(255,255,255,0.25); }
  to   { box-shadow: 0 0 16px rgba(255,255,255,0.55); }
}
.lang-switch {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 9px;
  text-transform: uppercase;
}
.lang-switch a { color: #ffdf4d; text-decoration: none; }
.lang-switch a:hover { text-decoration: underline; }

.eye-wrap { display: inline-block; margin-bottom: 10px; }
.eye {
  width: 46px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 6px rgba(255,255,255,0.35);
  animation: eyeGlow 2s infinite alternate;
  overflow: hidden;
}
.eye::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #ffdf4d;
  box-shadow: 0 0 4px rgba(255,223,77,0.9);
}
.lash {
  position: absolute;
  width: 5px; height: 8px;
  background: #ffffff;
  top: -8px;
  border-radius: 3px;
}
.lash.l1 { left: 6px; }
.lash.l2 { left: 20px; }
.lash.l3 { left: 34px; }
@keyframes eyeGlow {
  from { box-shadow: 0 0 3px rgba(255,255,255,0.25); }
  to   { box-shadow: 0 0 10px rgba(255,255,255,0.7); }
}
/* Red alert state for eye (hover/interval) */
.eye-alert {
  border-color: #ff0000;
  box-shadow: 0 0 14px rgba(255,0,0,0.95);
  animation: none;
}
.eye-alert::before {
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255,0,0,1);
}

.banner {
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 6px 0 4px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h1 {
  font-size: 20px;
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h2 {
  font-size: 11px;
  margin: 4px 0 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
p {
  font-size: 12px;
  line-height: 1.5;
  margin: 4px 0;
}
.content {
  max-width: 640px;
  margin: 0 auto 6px;
  text-align: left;
}
ul {
  list-style: none;
  padding: 0;
  margin: 10px auto 16px;
  font-size: 12px;
  max-width: 640px;
  text-align: center;
}
ul li { margin: 2px 0; }
ul li::before { content: "• "; color: #ffdf4d; }
.callout {
  font-weight: bold;
  margin: 8px 0 2px;
  text-transform: uppercase;
  font-size: 11px;
}
a { color: #ffdf4d; text-decoration: none; }
a:hover { text-decoration: underline; }

.pricing { margin-top: 14px; }
.cta-button {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid #ffdf4d;
  background: #000;
  color: #ffdf4d;
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 4px;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255,223,77,0.4);
}
.cta-note {
  font-size: 9px;
  margin-top: 3px;
  color: #ffdf4d;
  text-transform: none;
}

#contact {
  margin-top: 22px;
  padding-top: 10px;
  border-top: 1px dotted #444;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#contact h2 {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

label {
  font-size: 10px;
  display: block;
  margin-top: 6px;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 5px;
  margin-top: 2px;
  border: 1px solid #555;
  background: #050505;
  color: #f5f5f5;
  font-family: "Courier New", monospace;
  font-size: 11px;
  box-sizing: border-box;
}
button[type="submit"] {
  margin-top: 10px;
  padding: 6px 18px;
  border: 1px solid #ffdf4d;
  background: #000;
  color: #ffdf4d;
  font-family: "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 60px;      /* pushes footer DOWN */
  padding-top: 20px;     /* spacing above footer */
  padding-bottom: 40px;  /* extra breathing room */
  border-top: 1px dotted #444;
  font-size: 11px;
  color: #f5f5f5;
}

.footer-line {
  margin: 0;
  padding: 4px 0;
  font-size: 11px;
}

.footer-privacy {
  margin: 4px 0 0;
  padding: 0;
  font-size: 10px;
  text-transform: uppercase;
}

.footer a {
  color: #ffdf4d;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.notice {
  margin-top: 4px;
  color: #9b9b9b;
  font-size: 9px;
  text-transform: uppercase;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-box {
  border: 2px solid #ffdf4d;
  background: #000;
  padding: 16px 18px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 0 14px rgba(255,223,77,0.6);
  font-size: 11px;
}
.modal-box h3 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffdf4d;
}
.modal-close {
  margin-top: 10px;
  padding: 4px 14px;
  border: 1px solid #ffdf4d;
  background: #000;
  color: #ffdf4d;
  font-size: 9px;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.98);
  color: #f5f5f5;
  padding: 10px 14px;
  font-size: 10px;
  border-top: 1px solid #ffdf4d;
  z-index: 9998;
}
.cookie-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}
.cookie-inner a { color: #ffdf4d; text-decoration: underline; }
.cookie-btn {
  padding: 4px 10px;
  margin-left: 4px;
  border: 1px solid #ffdf4d;
  background: #000;
  color: #ffdf4d;
  font-size: 9px;
  text-transform: uppercase;
  cursor: pointer;
}
/* SVG logo eye (replaces old drawn eye but keeps .eye as fallback) */
.eye-wrap {
  display: block;
  margin-bottom: 10px;
}

.eye-logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  filter: drop-shadow(0 0 4px rgba(255, 223, 77, 0.7));
  animation: eyeFlash 15s infinite;
}

/* 15s cycle: mostly calm, brief red flash */
@keyframes eyeFlash {
  0%, 85% {
    filter: drop-shadow(0 0 4px rgba(255, 223, 77, 0.7));
  }
  100% {
    filter: drop-shadow(0 0 14px rgba(255, 0, 0, 1));
  }
}
/* PRIVACY PAGE – LEFT-ALIGNED TEXT */
body.privacy-page .wrapper,
body.privacy-page p,
body.privacy-page li {
  text-align: left;
}

/* Optional: keep the box in the center if you want */
body.privacy-page .wrapper {
  margin: 34px auto; /* same as other pages, but now text is left-aligned */
}
