:root{
  --bg:#070A12;
  --panel:#0D1222;
  --card:#0F1730;
  --text:#EAF0FF;
  --muted:#A7B0D6;
  --border:rgba(255,255,255,.09);

  --radius:18px;

  /* Hybrid accents */
  --game:#7C3AED;   /* purple */
  --tool:#06B6D4;   /* cyan */
  --glow: 0 0 28px rgba(124,58,237,.18);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:radial-gradient(900px 420px at 15% 5%, rgba(124,58,237,.12), transparent 60%),
             radial-gradient(700px 380px at 85% 10%, rgba(6,182,212,.12), transparent 55%),
             var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1200px; margin:0 auto; padding:16px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,10,18,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:12px 16px;
}
.brand{
  font-weight:900; letter-spacing:.7px;
  display:flex; align-items:center; gap:10px;
}
.brandDot{
  width:10px; height:10px; border-radius:99px;
  background:linear-gradient(135deg, var(--game), var(--tool));
  box-shadow: var(--glow);
}

.navlinks{display:flex; gap:14px; align-items:center}
.navlinks a{color:var(--muted); font-weight:700}
.navlinks a:hover{color:var(--text)}

/* Search */
.search{
  width:100%;
  max-width:420px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  color:var(--text);
  outline:none;
}
.search::placeholder{color:rgba(231,236,255,.55)}

.topStrip{
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

.topStripInner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 16px;
  font-size:13px;
  color:var(--muted);
}

.topStripInner a{
  color:var(--text);
  font-weight:700;
}

@media (max-width:720px){
  .topStripInner{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* Hero */
.hero{
  margin-top:10px;
  padding:18px 16px;
  border-radius:22px;
  border:1px solid var(--border);
  background:
    radial-gradient(520px 240px at 20% 30%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(520px 240px at 80% 25%, rgba(6,182,212,.14), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.hero h1{margin:0 0 8px; font-size:30px; line-height:1.15}
.hero p{margin:0; color:var(--muted); line-height:1.55; max-width:60ch}

/* Hybrid badge + pills */
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
  background:rgba(255,255,255,.03);
}

.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.pill.games{border-color:rgba(124,58,237,.35); color:#d9c7ff}
.pill.tools{border-color:rgba(6,182,212,.35); color:#bff6ff}

.seoSection{
  margin-top: 34px;
  max-width: 950px;
}

.seoSection h2{
  margin: 0 0 12px;
}

.seoSection h3{
  margin: 22px 0 8px;
  font-size: 18px;
}

.seoSection p{
  margin: 0 0 14px;
  line-height: 1.75;
  color: rgba(231,236,255,.78);
}

.contactWrap{
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contactBox{
  margin: 14px 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
}

.contactBox a{
  color: #8be9ff;
  text-decoration: none;
}

.contactList{
  margin: 12px 0 0 18px;
  color: rgba(231,236,255,.78);
  line-height: 1.7;
}

@media (max-width: 900px){
  .contactWrap{
    grid-template-columns: 1fr;
  }
}
.seoSection{
margin-top:40px;
max-width:900px;
}

.seoSection h2{
margin-bottom:14px;
}

.seoSection p{
line-height:1.7;
margin-bottom:14px;
color:rgba(231,236,255,.75);
}

.seoSection h3{
margin-top:20px;
font-size:16px;
}
/* Sections */
.sectionTitle{
  display:flex; justify-content:space-between; align-items:center;
  margin-top:20px;
}
.sectionTitle h2{margin:0; font-size:18px}
.sectionTitle .badge{font-weight:700}

/* Cards */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap:14px;
  margin-top:12px;
}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  transition:transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute; inset:-80px -80px auto auto;
  width:160px; height:160px;
  background:radial-gradient(circle, rgba(255,255,255,.10), transparent 60%);
  transform:rotate(18deg);
  opacity:.55;
  pointer-events:none;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.4}

/* Hybrid tags on cards */
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.3px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.tag.game{border-color:rgba(124,58,237,.35); color:#e6dcff}
.tag.tool{border-color:rgba(6,182,212,.35); color:#d1fbff}

.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
.btn:hover{border-color:rgba(255,255,255,.22)}
.textarea{
  width:100%;
  min-height:220px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
/* Footer */
.footer{
  border-top:1px solid var(--border);
  margin-top:28px;
  padding:18px 0;
  color:var(--muted);
  font-size:13px;
}

/* Mobile */
@media (max-width:720px){
  .nav{flex-direction:column; align-items:stretch; gap:10px}
  .hero h1{font-size:22px}
}