/* gayzzee-core.css — v1 shared styling for index + register */

:root{
  --bg: #070A12;
  --bg2:#0B1020;
  --panel:#0E1630;
  --panel2:#121D3D;
  --text:#EAF0FF;
  --muted:#9FB0D3;
  --line:rgba(255,255,255,.08);
  --accent:#3B82F6;
  --accent2:#EF4444;
  --ok:#22C55E;
  --warn:#F59E0B;
  --bad:#EF4444;
  --radius:16px;
  --radius-sm:12px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(700px 420px at 80% 20%, rgba(239,68,68,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
a.gz-link{ color:var(--muted); }
a.gz-link:hover{ color:var(--text); }

.gz-page{ min-height:100%; display:flex; flex-direction:column; }

.gz-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.65);
  border-bottom:1px solid var(--line);
}
.gz-header__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.gz-brand{ display:flex; align-items:center; gap:12px; }
.gz-logo-pill{
  width:44px; height:34px;
  display:grid; place-items:center;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  font-weight:900;
  letter-spacing:.5px;
}
.gz-brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.gz-brand-name{ font-weight:900; font-size:18px; }
.gz-brand-tag{ color:var(--muted); font-size:12px; }

.gz-header__nav{ display:flex; gap:10px; flex-wrap:wrap; }

.gz-main{ flex:1; }
.gz-main--narrow{
  max-width: 820px;
  margin: 0 auto;
  width:100%;
  padding: 18px;
}

.gz-hero{
  max-width:var(--max);
  margin:0 auto;
  width:100%;
  padding: 34px 18px 40px;
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:18px;
}
.gz-hero--centered{
  min-height: calc(100vh - 74px - 54px);
  align-items: center;
}
@media (max-width: 920px){
  .gz-hero{ grid-template-columns: 1fr; }
  .gz-hero--centered{ min-height: unset; align-items: stretch; }
}

.gz-h1{ margin:0 0 10px; font-size:42px; letter-spacing:-.02em; }
.gz-h1--tight{ font-size:34px; }
.gz-h2{ margin:18px 0 10px; font-size:18px; }
.gz-lead{ margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.5; }
.gz-text{ color:var(--text); opacity:.95; line-height:1.5; }
.gz-muted{ color:var(--muted); }
.gz-small{ font-size:12px; }

.gz-cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 16px 0 10px; }

.gz-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:12px;
  white-space: nowrap;
}

.gz-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:14px;
}
.gz-card--soft{
  background: rgba(255,255,255,.02);
  box-shadow:none;
}
.gz-card--pad{ padding:18px; }
.gz-card__title{ font-weight:800; margin-bottom:6px; }
.gz-card__text{ color:var(--muted); line-height:1.45; margin:0 0 12px; }
.gz-card__actions{ display:flex; gap:10px; flex-wrap:wrap; }

.gz-btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:10px 14px;
  border-radius: 999px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.gz-btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.gz-btn:disabled{ opacity:.55; cursor:not-allowed; transform:none; }

.gz-btn--primary{
  border-color: rgba(59,130,246,.45);
  background: linear-gradient(135deg, rgba(239,68,68,.15), rgba(59,130,246,.22));
}
.gz-btn--ghost{ background: transparent; }
.gz-btn--lg{ padding:12px 16px; }

.gz-footer{
  border-top:1px solid var(--line);
  background: rgba(7,10,18,.6);
}
.gz-footer__inner{
  max-width:var(--max);
  margin:0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:13px;
}
.gz-footer__links{ display:flex; gap:14px; flex-wrap:wrap; }

.gz-hr{ border:none; border-top:1px solid var(--line); margin:18px 0; }

.gz-form{ margin-top:14px; }
.gz-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 720px){
  .gz-grid{ grid-template-columns: 1fr; }
}

.gz-field{ display:flex; flex-direction:column; gap:8px; margin: 10px 0; }
.gz-label{ font-weight:800; font-size:13px; color: rgba(234,240,255,.92); }
.gz-input, .gz-textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 11px 12px;
  outline:none;
}
.gz-input:focus, .gz-textarea:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow: 0 0 0 3px rgba(59,130,246,.14);
}
.gz-textarea{ resize: vertical; min-height: 96px; }
.gz-help{ color:var(--muted); font-size:12px; }

.gz-row{ display:flex; gap:10px; }
.gz-row--between{ justify-content:space-between; align-items:flex-end; }

.gz-counter{ color:var(--muted); font-size:12px; }

.gz-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin: 10px 0 6px;
  color: var(--muted);
  font-size: 13px;
}
.gz-check input{ margin-top:3px; }

.gz-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 12px;
}

.gz-alert{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 10px 0;
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.gz-alert--info{ border-color: rgba(59,130,246,.30); }
.gz-alert--success{ border-color: rgba(34,197,94,.35); }
.gz-alert--error{ border-color: rgba(239,68,68,.35); }

.gz-photos{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
@media (max-width: 720px){
  .gz-photos{ grid-template-columns: repeat(2, 1fr); }
}
.gz-photo{
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.gz-photo img{
  width:100%;
  height:120px;
  object-fit:cover;
  display:block;
}
.gz-photo__meta{
  padding:8px 10px;
  color:var(--muted);
  font-size:12px;
}

/* Trust block (index) */
.gz-trust{ margin-top: 14px; }
.gz-trust__row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 12px; }
.gz-trust__card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  padding: 12px 14px;
}
.gz-trust__title{ font-weight:900; margin-bottom: 6px; }
.gz-trust__list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.gz-trust__fine{ margin-top: 8px; color: var(--muted); font-size: 12px; }

/* Modal */
.gz-modal{
  position:fixed; inset:0;
  display:none;
  z-index:1000;
}
.gz-modal.is-open{ display:block; }
.gz-modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
}
.gz-modal__panel{
  position:relative;
  width:min(520px, calc(100% - 28px));
  margin: 10vh auto 0;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,29,61,.96), rgba(7,10,18,.94));
  box-shadow: var(--shadow);
  padding: 18px;
}
.gz-modal__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
