@import url('terms.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700&display=swap');

body {
  margin: 0;
  min-height: 100svh;
  color: var(--text);
  background: linear-gradient(135deg, #080603 0%, #140d05 52%, #2a1706 100%);
  font: 400 1rem/1.7 "Rehab Sans", "Segoe UI", sans-serif;
  overflow-wrap: anywhere;
}
body > header, main, body > footer {
  width: min(100% - 32px, 1040px);
  margin-inline: auto;
}
body > header { padding: 24px 0; border-bottom: 1px solid var(--line); }
.front_title { margin: 0; font: 700 clamp(1.1rem, 3vw, 1.5rem)/1.4 "Orbitron", sans-serif; color: var(--gold); }
main { padding-block: 28px 48px; }
#logodiv { display: flex; justify-content: center; margin: 0 0 24px; }
.front_logo { display: block; width: 76px; height: 76px; margin: 0; padding: 8px; border-radius: 50%; background: var(--gold); cursor: pointer; }
#log_section { width: 100%; min-width: 0; padding: clamp(20px, 4vw, 48px); border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); }
h1,h2,h3 { color: var(--gold-bright); line-height: 1.35; font-family: "Orbitron", "Rehab Display", sans-serif; }
.front_slogan, #about-section > h2 { margin: 0 0 20px; font-size: clamp(1.55rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h3 { margin-top: 28px; font-size: clamp(1rem, 2vw, 1.2rem); }
p { margin: 0 0 20px; }
#about-section, .faq { width: 100%; }
#about-section p { max-width: 75ch; }
#log_section > h2.outsideh2, #contact-form + h2, #log_section:has(#contact-form) > h2 {
  color: var(--muted); font: inherit; margin-bottom: 24px;
}
.blog-post,.faq-answer { padding: 24px 0; border-top: 1px solid var(--line); }
.blog-post h2,.blog-post h3 { margin: 0 0 16px; font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
.blog-post img { display: block; width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.blog-post p:first-of-type { color: var(--muted); font-size: .875rem; }
.faq ul { padding-left: 22px; }
.faq li { margin-bottom: 12px; }
#contact-form { display: grid; gap: 16px; width: 100%; }
input,select,textarea,button { font: inherit; }
#contact-form :is(input,select,textarea) { box-sizing: border-box; width: 100%; min-width: 0; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 10px; padding: 12px 14px; background: #191107; color: var(--text); }
#contact-form textarea { min-height: 180px; resize: vertical; }
#contact-form ::placeholder { color: var(--muted); opacity: 1; }
#contact-form option { background: #191107; color: var(--text); }
#contact-form button { justify-self: start; min-height: 48px; padding: 12px 28px; border: 1px solid var(--gold); border-radius: 10px; background: var(--gold); color: #241504; font-weight: 700; cursor: pointer; }
#contact-form button:hover { background: var(--gold-bright); box-shadow: 0 0 20px #ffc75a26; }
:is(a,button,input,select,textarea):focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.auth-message { margin-bottom: 20px; padding: 16px; border: 1px solid var(--gold); border-radius: 10px; }
.auth-message--error { border-color: #f99583; color: #ffc9bf; }
.footer { padding: 24px 0 max(24px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); text-align: center; }
#footerlinks { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; }
#footerlinks a { display: inline-flex; align-items: center; min-height: 44px; color: var(--muted); font-size: .9375rem; }
#footerlinks a:hover { color: var(--gold); }
#trademark { color: var(--muted); font-size: .8125rem; margin: 20px 0 0; }
.rc-cursor-aura { display: none; }
@media (max-width: 600px) {
  main { padding-block: 20px 28px; }
  #log_section { border-radius: 16px; padding: 20px 16px; }
  #footerlinks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 12px; }
  #footerlinks a { justify-content: center; }
  #contact-form button { width: 100%; }
}
