:root{
  --bg:#0b0f16;
  --panel:#0f1624;
  --panel-2:#121b2c;
  --text:#eef2f6;
  --muted:#a8b3c7;
  --brand:#4af2a1;
  --brand-2:#45a9ff;
  --ring:rgba(74,242,161,.35);
  --radius:22px;
  --shadow:0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.03);
}

*{box-sizing:border-box}
html,body{margin:0;height:100%;scroll-behavior:smooth}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:#e9edf5;
  background:radial-gradient(1200px 600px at 70% -10%, #162034 0%, #0b0f16 55%) fixed;
}
a{color:inherit;text-decoration:none}
a:focus-visible{outline:2px solid var(--brand-2); outline-offset:3px; border-radius:10px}
img{max-width:100%;display:block}

.wrap{max-width:1200px;margin:0 auto;padding:0 20px}

/* Shared site header */
.site-header{
  position:sticky;top:0;z-index:60;
  background:linear-gradient(180deg, rgba(11,15,22,.85), rgba(11,15,22,.55));
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06)
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:40px;height:40px;border-radius:12px}
.brand h1{font-size:18px;letter-spacing:.4px;margin:0;font-weight:800;color:#fff}
.menu{display:flex;gap:18px}
.menu a{padding:8px 12px;border-radius:12px;color:#cbd5e5}
.menu a:hover{color:#fff;background:rgba(255,255,255,.06)}
.cta{padding:10px 16px;border-radius:14px;background:linear-gradient(90deg, var(--brand), var(--brand-2)); color:#0b0f16; font-weight:800; box-shadow:0 6px 22px var(--ring)}
.cta:hover{transform:translateY(-1px);transition:.2s;box-shadow:0 8px 24px rgba(69,169,255,.45)}

/* Home hero */
.hero{padding:80px 0 50px}
.hero-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:center}
.kicker{color:var(--brand);font-weight:800;letter-spacing:.18em;text-transform:uppercase;font-size:12px}
.title{font-size:42px;line-height:1.2;margin:10px 0 14px;font-weight:900;color:#fff}
.title span{
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 2px 14px rgba(69,169,255,.35);
}
.subtitle{color:#d6deeb;font-size:17px;max-width:640px}
.statbar{display:flex;gap:16px;margin-top:22px;flex-wrap:wrap}
.chip{background:linear-gradient(180deg,var(--panel),var(--panel-2));
  padding:12px 14px;border-radius:16px;border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);display:flex;align-items:center;gap:10px;color:#fff}
.chip b{font-size:18px}
.hero-media{position:relative}
.glass{border-radius:24px;overflow:hidden;border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow)}
.glass img{aspect-ratio:16/10;object-fit:cover}
.glow{position:absolute;inset:auto -40px -40px auto;width:220px;height:220px;
  background:radial-gradient(closest-side, var(--ring), transparent 70%);
  filter:blur(24px);pointer-events:none}

/* Sections */
.section{padding:60px 0}
.section h2{font-size:30px;margin:0 0 16px;color:#fff;font-weight:900;text-shadow:0 2px 10px rgba(74,242,161,.25)}
.section p.lead{color:#d6deeb;margin:0 0 24px}

/* Featured gallery */
.gallery{display:grid;grid-auto-flow:column;gap:16px;overflow:auto;padding-bottom:6px;scroll-snap-type:x mandatory}
.gallery::-webkit-scrollbar{height:8px}
.gallery::-webkit-scrollbar-thumb{background:#263149;border-radius:8px}
.gallery figure{scroll-snap-align:start;min-width:320px;margin:0;background:linear-gradient(180deg,var(--panel),var(--panel-2));border:1px solid rgba(255,255,255,.08);border-radius:18px;box-shadow:var(--shadow);overflow:hidden}
.gallery figcaption{padding:10px 12px;color:#c9d3e4;font-size:14px}

/* Games grid (on home page) */
.grid{display:grid;gap:18px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{background:linear-gradient(180deg,var(--panel),var(--panel-2));border:1px solid rgba(255,255,255,.08);border-radius:20px;box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column}
.card .cover{aspect-ratio:16/9;background:#0a1220;overflow:hidden}
.card .cover img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.card:hover .cover img{transform:scale(1.05)}
.card .body{padding:14px}
.card h3{font-size:19px;margin:0 0 6px;color:#fff;font-weight:800}
.card h3 a{text-decoration:underline dotted transparent}
.card h3 a:hover{text-decoration-color:rgba(255,255,255,.5)}
.meta{color:#c0cad8;font-size:13px}
.actions{display:flex;gap:10px;margin-top:12px;align-items:center;flex-wrap:wrap}
.gplay{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:12px;background:linear-gradient(90deg,var(--brand),var(--brand-2));color:#0b0f16;border:0;font-weight:800;box-shadow:0 8px 24px rgba(69,169,255,.35)}
.gplay svg{width:18px;height:18px}
.gplay:hover{transform:translateY(-1px);box-shadow:0 10px 28px rgba(69,169,255,.45)}

/* Contact */
.contact{display:grid;grid-template-columns:1.1fr .9fr;gap:22px}
form{background:linear-gradient(180deg,var(--panel),var(--panel-2));padding:18px;border-radius:20px;border:1px solid rgba(255,255,255,.08);box-shadow:var(--shadow)}
label{display:block;font-size:13px;color:#c4cee0;margin-bottom:6px}
input,textarea{width:100%;padding:12px 14px;background:#0c1320;border:1px solid rgba(255,255,255,.12);border-radius:14px;color:#fff;outline:none}
input::placeholder,textarea::placeholder{color:#8ea0bc}
textarea{min-height:120px;resize:vertical}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
button[type="submit"]{margin-top:10px;border:0;padding:12px 16px;border-radius:14px;background:linear-gradient(90deg,var(--brand),var(--brand-2));color:#0b0f16;font-weight:900;cursor:pointer;box-shadow:0 8px 26px rgba(74,242,161,.45)}
button[type="submit"]:hover{transform:translateY(-1px)}
.note{color:#c4cee0;font-size:14px}
.contact-card{background:linear-gradient(180deg,var(--panel),var(--panel-2));border:1px solid rgba(255,255,255,.08);border-radius:20px;box-shadow:var(--shadow);padding:18px}
.contact-card h3{color:#fff;margin:0 0 8px}

/* Footer */
.site-footer{padding:30px 0;color:#9bb0cf;border-top:1px solid rgba(255,255,255,.08);margin-top:40px}
.site-footer .foot{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size:12px; color:#7f93b3}

/* Responsive */
@media (max-width: 1000px){
  .hero-inner{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .grid-3{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 640px){
  .title{font-size:34px}
  .grid-3{grid-template-columns:1fr}
  .menu{display:none}
}


/* --- Ventures section --- */
:root {
  --brand: #6c5ce7; /* tweak brand color */
}

.btn-brand{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:12px;
  background: var(--brand); color:#fff; font-weight:600;
  text-decoration:none; transition:transform .15s ease, filter .15s ease;
}
.btn-brand:hover{ filter:brightness(.95); transform:translateY(-1px); }
.btn-brand:active{ transform:translateY(0); }

.ventures-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap;
  margin-bottom:24px;
}
.lead.dim{ opacity:.85; }

.vgrid{
  display:grid; gap:20px;
  grid-template-columns: 1fr;
}
@media(min-width:640px){ .vgrid{ grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .vgrid{ grid-template-columns: repeat(4, 1fr); } }

.vcard{
  text-align:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.vcard:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.vlogo{
  width:72px; height:72px; border-radius:999px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:#fff; margin:0 auto 12px;
}
.vlogo img{ width:100%; height:100%; object-fit:cover; }

.vcard h3{ font-size:18px; margin:6px 0 4px; }
.vdesc{ font-size:14px; opacity:.85; min-height:54px; }

.vlink{
  display:inline-block; margin-top:10px;
  color: var(--brand); font-weight:600; text-decoration:none;
}
.vlink:hover{ text-decoration:underline; }

/* light vs dark backgrounds */
body{ background:#0b0f16; } /* already set via your theme meta; keep your current base if different */
.section#ventures .wrap{ /* ensure spacing harmonizes with other sections */ }

