/* Pixel-ish vibe without heavy assets */
:root{
  --bg:#0b0f14;
  --panel:#111826;
  --text:#e6f0ff;
  --muted:#9fb3c8;
  --accent:#7CFF6B;
  --accent2:#5BD7FF;
  --warn:#FFCE5B;
  --border:#2a3a52;

  --px-font: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0/24px 24px,
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0/24px 24px,
    radial-gradient(900px 600px at 20% 10%, rgba(124,255,107,0.15), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(91,215,255,0.12), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family:var(--px-font);
  letter-spacing:0.2px;
}

a{color:var(--accent2); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width:min(1040px, 92vw);
  margin:0 auto;
  padding:28px 0 54px;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:44px;
  height:44px;
  image-rendering: pixelated;
  border:2px solid var(--border);
  border-radius:10px;
  background:rgba(255,255,255,0.03);
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .title strong{font-size:18px}
.brand .title span{color:var(--muted); font-size:12px}

.lang{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.lang a{
  padding:8px 10px;
  border:2px solid var(--border);
  border-radius:12px;
  background:rgba(255,255,255,0.03);
  font-size:12px;
}
.lang a[aria-current="page"]{
  border-color:var(--accent);
  color:var(--text);
}

.hero{
  border:2px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding:22px;
  box-shadow: 0 18px 0 rgba(0,0,0,0.18);
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 16px;
}
.badge{
  border:2px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  color:var(--muted);
  background:rgba(255,255,255,0.02);
}

h1{
  margin:8px 0 10px;
  font-size:28px;
}
p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:14px;
  margin-top:16px;
}
@media (max-width: 860px){
  .grid{grid-template-columns: 1fr}
}

.card{
  border:2px solid var(--border);
  border-radius:18px;
  background:rgba(255,255,255,0.02);
  padding:16px;
}

.card h2{
  font-size:16px;
  margin:0 0 10px;
  color:var(--text);
}
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:2px solid var(--border);
  background:rgba(255,255,255,0.03);
  color:var(--text);
  font-size:13px;
}
.button.primary{
  border-color:rgba(124,255,107,0.7);
  box-shadow: 0 0 0 4px rgba(124,255,107,0.08);
}
.button.primary:hover{ text-decoration:none; filter:brightness(1.06) }
.small{
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
}

.footer{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}

.rtl{ direction: rtl; }
.rtl .brand{ flex-direction: row-reverse; }
.rtl .topbar{ flex-direction: row-reverse; }

