:root{
  --bg:#262626;
  --pink:#E41450;
  --gold:#F6A607;
  --fg:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100dvh;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--fg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;padding:12px 14px;border-radius:12px;
  background:rgba(0,0,0,.75);outline:2px solid rgba(246,166,7,.55);z-index:9999
}

.bg{
  position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(900px 480px at 18% 20%, rgba(228,20,80,.22), transparent 60%),
    radial-gradient(720px 420px at 84% 28%, rgba(246,166,7,.22), transparent 60%),
    radial-gradient(980px 520px at 50% 90%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.55));
}

.wrap{
  max-width:1120px;
  margin:0 auto;
  padding:32px 20px 56px;
  display:flex;
  flex-direction:column;
  min-height:100dvh;
}


main{flex:1;display:grid;place-items:center;padding:10px 0 22px}

.card{
  width:100%;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
}

.content{
  padding:56px 26px 34px;
  text-align:center;
}

.logo{display:flex;justify-content:center;align-items:center;gap:14px}
.mark{width:54px;height:54px;filter:drop-shadow(0 10px 30px rgba(0,0,0,.35))}

h1{
  margin:0;
  font-size:clamp(38px,5vw,62px);
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.02;
}
.wordmark{
  background:linear-gradient(135deg,#fff 0%, rgba(255,255,255,.86) 40%, rgba(255,255,255,.94) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.accent{
  background:linear-gradient(135deg,var(--pink),var(--gold));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.tagline{
  margin:6px 0 0;
  font-size:15px;
  letter-spacing:.08em;
  text-transform:lowercase;
  color:rgba(255,255,255,.70);
}

.sub{
  max-width:68ch;
  margin:16px auto 0;
  font-size:16px;
  line-height:1.65;
  color:rgba(255,255,255,.78);
}

.ctaRow{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  padding:14px 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:white;
  font-weight:800;
  cursor:pointer;
}
.btn:hover{border-color:rgba(246,166,7,.45)}
.btnPrimary{
  background:linear-gradient(135deg,var(--pink),var(--gold));
  color:#000;
  border:none;
}

.metaRow{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  color:rgba(255,255,255,.62);
  font-size:13px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}

.anchor{height:1px;width:1px;overflow:hidden}

/* Footer */
.footer{
  padding-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:rgba(255,255,255,.55);
  font-size:13px;
}
.footLeft{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.footRight{display:flex;align-items:center;gap:10px;flex-wrap:wrap}

.link{
  color:rgba(255,255,255,.70);
  border-bottom:1px dashed rgba(255,255,255,.30);
  padding-bottom:2px;
}
.link:hover{color:#fff;border-color:rgba(246,166,7,.55)}
.linkBtn{
  background:transparent;
  border:0;
  cursor:pointer;
  font:inherit;
  padding:0 0 2px;
}

/* Cookies UI */
.cookieBanner{
  position:fixed;
  left:16px;right:16px;bottom:16px;
  z-index:99999;
}
.cookieInner{
  max-width:1120px;
  margin:0 auto;
  border-radius:20px;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  padding:14px 14px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
}
.cookieText{max-width:760px}
.cookieText strong{display:block;margin-bottom:6px}
.cookieText p{margin:0;color:rgba(255,255,255,.78);line-height:1.45}
.cookieLinks{margin-top:10px;font-size:13px;color:rgba(255,255,255,.65)}
.cookieLinks a{border-bottom:1px dashed rgba(255,255,255,.30)}
.cookieLinks a:hover{border-color:rgba(246,166,7,.55)}

.cookieActions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.btnMini{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:800;
  cursor:pointer;
}
.btnMini:hover{border-color:rgba(246,166,7,.45)}
.btnMiniPrimary{
  background:linear-gradient(135deg,var(--pink),var(--gold));
  border:0;
  color:rgba(0,0,0,.86);
}

.cookieModal{
  position:fixed;
  inset:0;
  z-index:100000;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.55);
  padding:20px;
}
.cookieModalCard{
  width:min(720px, 100%);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  padding:18px 16px 14px;
}
.cookieModalHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cookieModalHead h2{margin:0;font-size:18px;color:#fff}
.cookieX{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  color:#fff;
}
.cookieSmall{margin:10px 0 14px;color:rgba(255,255,255,.78);line-height:1.45}
.cookieGrid{display:flex;flex-direction:column;gap:10px}
.cookieRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.cookieDesc{margin-top:4px;font-size:13px;color:rgba(255,255,255,.70)}
.cookieToggleFixed{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.80);
  font-weight:800;
  font-size:12px;
}

.switch{position:relative;width:54px;height:32px;display:inline-block}
.switch input{opacity:0;width:0;height:0}
.slider{
  position:absolute;inset:0;
  cursor:pointer;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  transition:all .2s ease;
}
.slider:before{
  content:"";
  position:absolute;
  height:24px;width:24px;
  left:4px;top:3px;
  background:#fff;border-radius:50%;
  transition:transform .2s ease;
}
.switch input:checked + .slider{
  background:linear-gradient(135deg, rgba(228,20,80,.9), rgba(246,166,7,.9));
  border-color:transparent;
}
.switch input:checked + .slider:before{transform:translateX(22px)}

.cookieModalActions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.cookieFoot{margin:12px 0 0;font-size:13px;color:rgba(255,255,255,.65)}
.cookieFoot a{border-bottom:1px dashed rgba(255,255,255,.30)}
.cookieFoot a:hover{border-color:rgba(246,166,7,.55)}

.noScript{
  max-width:1120px;margin:16px auto;padding:14px 18px;border:1px solid rgba(255,255,255,.14);
  border-radius:16px;background:rgba(0,0,0,.35);color:rgba(255,255,255,.85);
}

@media (max-width:720px){
  .cookieInner{flex-direction:column;align-items:stretch}
  .cookieActions{justify-content:flex-start}
  .footer{flex-direction:column;align-items:flex-start}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .slider,.slider:before{transition:none}
}
/* FORCE hide for elements using the [hidden] attribute (fix for overridden display) */
#cookie-banner[hidden],
#cookie-modal[hidden]{
  display: none !important;
}