:root{
  --bg:#0b0f17;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.56);
  --good:rgba(120,255,170,.90);
  --warn:rgba(255,215,120,.92);
  --bad:rgba(255,120,120,.92);
  --shadow: 0 12px 32px rgba(0,0,0,.28);
}

/* ============================
   Base
============================ */
.promo-banner {
  animation: pulseBanner 2.5s ease-in-out infinite;
}

/* ===== PROMO BANNER (Yerman Standard) ===== */

.promo-banner {
  background: linear-gradient(90deg, #002b8f 0%, #0057ff 100%);
  padding: 12px 16px;
  text-align: center;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* FULL CLICKABLE AREA */
.promo-banner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
}

/* REMOVE ALL LINK STYLES */
.promo-banner a,
.promo-banner a:visited,
.promo-banner a:hover,
.promo-banner a:active {
  text-decoration: none !important;
  color: #fff !important;
}

/* BADGE (O2 pill) */
.promo-badge {
  background: #fff;
  color: #002b8f;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}

/* MAIN TEXT */
.promo-text {
  opacity: 0.95;
}

/* CTA ARROW */
.promo-cta {
  font-size: 16px;
  transition: transform 0.2s ease;
}

/* HOVER EFFECT */
.promo-banner:hover .promo-cta {
  transform: translateX(4px);
}

/* MOBILE */
@media (max-width: 600px) {
  .promo-banner {
    padding: 10px 12px;
  }

  .promo-banner a {
    font-size: 13px;
    gap: 8px;
  }

  .promo-badge {
    font-size: 11px;
    padding: 3px 6px;
  }
}
body{
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(120,140,255,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(120,255,170,.12), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  margin:0;
}

.wrap{
  max-width:1080px;
  margin:0 auto;
  padding:22px;
}

/* Give Auto Ads room under sticky header */
.topbar{
  position:relative;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.72);
  border-bottom:1px solid var(--border);
  z-index:20;
  margin-bottom:12px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 22px;
}

.brand a{
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
}

.badge{
  display:inline-block;
  margin-left:10px;
  padding:4px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
}

.navlinks a{
  color:var(--muted);
  text-decoration:none;
  margin-left:14px;
  font-size:14px;
}

.navlinks a:hover{color:var(--text);}

/* ============================
   Content spacing (Auto Ads friendly)
============================ */

section{
  margin-bottom:28px;
}

/* Soft separator Auto Ads love */
.separator{
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );
  margin:26px 0;
}

/* Neutral ad-friendly zone (optional helper div) */
.ad-friendly{
  padding:18px 0;
  margin:24px 0;
}

/* ============================
   Hero
============================ */

.hero{
  padding:28px 0 12px;
}

.h1{
  font-size: clamp(26px, 3vw, 40px);
  line-height:1.08;
  margin:10px 0 8px;
}

.lead{
  color:var(--muted);
  font-size:16px;
  max-width:850px;
}

.note{
  margin:14px 0 0;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:14px;
}

/* ============================
   Layout
============================ */

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  margin-top:26px;
}

@media(min-width:920px){
  .grid{
    grid-template-columns: 1.05fr .95fr;
  }
}

/* ============================
   Cards
============================ */

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
}

.card h2{
  margin:0 0 10px;
  font-size:18px;
}

.muted{color:var(--muted);}
.small{font-size:13px; color:var(--muted2);}

/* ============================
   Forms
============================ */

.row{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:10px;
}

@media(min-width:640px){
  .row{grid-template-columns:1fr 1fr;}
}

label{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin:0 0 6px;
}

select,
input[type="text"]{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}

select:focus,
input[type="text"]:focus{
  border-color: rgba(140,160,255,.55);
}

.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:10px 0 4px;
}

.pill{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.16);
}

.pill input{accent-color:#9aa7ff;}

/* ============================
   Buttons & alerts
============================ */

.btn{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(140,160,255,.55);
  background: rgba(140,160,255,.18);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}

.btn:hover{background: rgba(140,160,255,.24);}
.btn:disabled{opacity:.6; cursor:not-allowed;}

.err{
  display:none;
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,120,120,.45);
  background: rgba(255,120,120,.08);
  color: rgba(255,210,210,.95);
}

/* ============================
   Footer
============================ */

.footer{
  margin-top:32px;
  padding:20px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}

.footer a{color:var(--muted);}

/* ============================
   Badges
============================ */

.kbd{
  display:inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size:12px;
  padding:2px 7px;
  border:1px solid var(--border);
  border-radius:8px;
  color:var(--muted);
  background:rgba(0,0,0,.18);
}

/* ============================
   Result strength indicators
============================ */

.result{
  border-left:6px solid transparent;
}

/* Very likely */
.result-very-likely{
  border-left-color:#22c55e;
}
.result-very-likely .kbd{
  background:rgba(34,197,94,.15);
  border-color:#22c55e;
  color:#22c55e;
}

/* Likely */
.result-likely{
  border-left-color:#4ade80;
}
.result-likely .kbd{
  background:rgba(74,222,128,.15);
  border-color:#4ade80;
  color:#4ade80;
}

/* Possible */
.result-possible{
  border-left-color:#facc15;
}
.result-possible .kbd{
  background:rgba(250,204,21,.15);
  border-color:#facc15;
  color:#facc15;
}

/* Unlikely */
.result-unlikely{
  border-left-color:#ef4444;
}
.result-unlikely .kbd{
  background:rgba(239,68,68,.15);
  border-color:#ef4444;
  color:#ef4444;
}
