:root{
  --bg:#07081a;
  --bg2:#0b0c24;
  --text:#eef2ff;
  --muted:rgba(238,242,255,.68);
  --line:rgba(255,255,255,.10);

  --btn:#48c19a;         /* green button */
  --btnText:#ffffff;

  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 15%, rgba(110,168,255,.12), transparent 60%),
    radial-gradient(900px 700px at 90% 0%, rgba(139,92,255,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{width:min(1100px, 100%); margin:0 auto; padding:0 18px}

/* Header */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(7,8,26,.65);
  backdrop-filter: blur(14px);
}
.topbarInner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
}
.brandLogo{
  width:38px; height:38px; border-radius:14px;
  object-fit:cover;
}
.brandName{
  font-weight:900;
  letter-spacing:.8px;
  font-size:22px;
}

/* Hamburger + Dropdown */
.menuWrap{position:relative}
.hamburger{
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.hamburger:hover{background: rgba(255,255,255,.08)}

.dropdown{
  position:absolute; right:0; top:56px;
  width:240px;
  border:1px solid var(--line);
  background: rgba(12,14,36,.85);
  backdrop-filter: blur(14px);
  border-radius:18px;
  padding:10px;
  display:none;
}
.dropdown.open{display:block}
.dropdown a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.dropdown a:hover{
  color:var(--text);
  border-color:var(--line);
  background: rgba(255,255,255,.05);
}

/* Hero */
.hero{
  padding:64px 0 40px;
}
.hTitle{
  font-size: clamp(42px, 6.5vw, 64px);
  margin:0 0 18px;
  letter-spacing:-.6px;
}
.hText{
  max-width:720px;
  font-size: 18px;
  line-height:1.85;
  color:var(--muted);
  margin:0 0 30px;
}

/* Input bar like screenshot */
.linkBar{
  width:min(820px, 100%);
  display:flex;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.linkBar input{
  flex:1;
  border:0;
  outline:0;
  padding:18px 18px;
  font-size:18px;
  background: transparent;
  color: var(--text);
}
.linkBar input::placeholder{color: rgba(238,242,255,.40)}
.linkBar button{
  width: 220px;
  border:0;
  cursor:pointer;
  font-weight:800;
  font-size:20px;
  background: var(--btn);
  color: var(--btnText);
}
.linkBar button:hover{filter: brightness(1.05)}

/* optional result box */
.result{
  width:min(820px, 100%);
  margin-top:14px;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
}
.result.bad{border-color: rgba(255,79,103,.55); color:#ffd7dd}
.result a{text-decoration: underline; text-underline-offset: 3px}

/* Footer */
.footer{
  margin-top:60px;
  padding:24px 0 34px;
  color: rgba(238,242,255,.55);
  border-top:1px solid rgba(255,255,255,.08);
}
.footerRow{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.footerLinks{display:flex; gap:14px; flex-wrap:wrap}
.footerLinks a{color: rgba(238,242,255,.55)}
.footerLinks a:hover{color: var(--text)}

/* Responsive */
@media (max-width: 520px){
  .linkBar{flex-direction:column}
  .linkBar button{width:100%; padding:16px 0}
  .linkBar input{padding:16px 16px; font-size:16px}
  .hText{font-size:16px}
}
/* Ad boxes for go.php */
.adBox{
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 14px;
  min-height: 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(238,242,255,.60);
  text-align:center;
}

.timerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.timerPill{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  padding:10px 12px;
  border-radius: 999px;
  color: rgba(238,242,255,.75);
  font-weight:800;
}

.stepTitle{
  font-size: 22px;
  font-weight:900;
  margin: 0 0 6px;
}

.stepSub{
  margin: 0;
  color: rgba(238,242,255,.65);
  line-height: 1.7;
}