:root{
  --bg:#0b0c0e;
  --text: rgba(245,242,232,.92);
  --muted: rgba(245,242,232,.62);
  --line: rgba(255,255,255,.10);
  --panel: rgba(255,255,255,.03);
  --radius: 18px;
  --max: 1020px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(800px 520px at 90% 0%, rgba(255,255,255,.04), transparent 65%),
    var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  letter-spacing:.2px;
}

a{color:inherit;text-decoration:none}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.container{
  width:100%;
  max-width: var(--max);
  margin:0 auto;
  padding: 28px 22px;
}

/* Header (thin) */
header{
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(to bottom, rgba(11,12,14,.52), rgba(11,12,14,.14));
  backdrop-filter: blur(7px);
  position:sticky;
  top:0;
  z-index:10;
}

.siteHeader .headerInner{
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand{
  display:flex;
  align-items:center;
  padding: 6px 8px;
  border-radius: 14px;
}

/* Make black PNG look white on dark background */
.brand img,
.heroLogo,
.logoLarge{
  filter: invert(1) brightness(1.05);
  opacity:.95;
}

.logoLarge{
  width: 220px;
  height:auto;
}

/* Blocks */
.card{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 26px;
}

.h1{
  margin:0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 560;
  letter-spacing: -0.02em;
}

.kicker{
  margin-top:0;
  font-size:12px;
  letter-spacing:.52em;
  text-transform:uppercase;
  color: rgba(245,242,232,.52);
}

.p{
  margin: 12px 0 0;
  color: var(--muted);
  line-height:1.6;
  font-size:14px;
  max-width: 70ch;
}

.notice{
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(245,242,232,.14);
  background: rgba(255,255,255,.02);
}

.notice h3{
  margin:0 0 10px;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(245,242,232,.78);
}

.notice ul{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height:1.55;
  font-size: 14px;
}

.embed{
  margin-top: 16px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}

/* ✅ Shorter height to avoid huge blank space */
.embed iframe{
  width:100%;
  height: 1350px;
  border:0;
  display:block;
}

/* Mobile: a bit taller */
@media (max-width: 720px){
  .container{ padding: 22px 16px; }
  .card{ padding: 20px; }
  .logoLarge{ width: 200px; }

  .embed iframe{ height: 1500px; }
}

/* Footer */
footer{
  border-top:1px solid rgba(255,255,255,.06);
  color: rgba(245,242,232,.50);
  font-size: 12px;
  letter-spacing:.18em;
  text-transform: uppercase;
  padding: 18px 0 28px;
}

.footerRow{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
