:root{
  --max: 980px;
  --yellow:#eecf80;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);
  --line: rgba(255,255,255,.10);
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --r: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:auto; min-height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:#0b0b0b;
  overflow-x:hidden;
}

.bg{
  position: fixed;
  inset: 0;
  z-index: -2;
  background:

    url("img/BACKGROUND.png") center/cover no-repeat;
}
.bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.50), rgba(0,0,0,.90));
}

.header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  height: 76px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--text);
}
.brand__logo{ width:34px;height:34px; object-fit:contain; }
.brand__text{ font-size:15px; letter-spacing:.02em; }
.brand__text em{ font-style:normal; color:var(--yellow); font-weight:900; }
.brand__text b{ font-weight:900; }

.back{
  color: rgba(255,255,255,.70);
  text-decoration:none;
  font-weight:800;
}
.back:hover{ color: var(--yellow); }

.page{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 40px;
  min-height: 100vh;
}

.card{
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 26px;
}

h1{
  margin:0 0 12px;
  font-size: 28px;
  letter-spacing:.01em;
}
h2{
  margin: 20px 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing:.12em;
  color: rgba(255,255,255,.80);
}
p,li{
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  font-size: 14px;
}
a{
  color: rgba(255,255,255,.82);
  text-decoration: underline;
  text-decoration-color: rgba(240,185,11,.55);
  text-underline-offset: 3px;
}
a:hover{
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--yellow);
  color:#111;
  text-decoration:none;
  font-weight: 950;
}

.btn:hover {
  color: white;
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.12);
}
.btn--ghost:hover{
  border-color: rgba(240,185,11,.45);
  color: var(--yellow);
}

.footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.credit{
  color: rgba(255,255,255,.55);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
}
.credit:hover{
  color: var(--yellow);
  border-bottom-color: rgba(240,185,11,.7);
}

@media (max-width: 760px){
  .page, .header__inner{ width: min(var(--max), calc(100% - 28px)); }
  .footer{ flex-direction: column; }
  .card{ padding: 18px; }
}