
:root{
  --bg:#08111f;
  --card:#101c2f;
  --text:#f6f8fb;
  --muted:#a9b5c7;
  --accent:#f5b942;
  --accent2:#61d6c8;
  --line:#22314a;
  --panel:#0d1729;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:linear-gradient(180deg,#08111f 0%,#0b1423 100%);
  color:var(--text);
  line-height:1.6;
}

a { color:inherit; text-decoration:none; }

.container { width:min(1120px,92%); margin:auto; }

.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(8,17,31,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav {
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand {
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  font-family:'Anton', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  font-weight:400;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:.5px;
  line-height:1;
  font-size:26px;
}

.brand .word-green,
.brand .word-white {
  -webkit-text-stroke:1.25px #163a12;
}

.brand .word-green {
  color:#3fae2a;
}

.brand .word-white {
  color:#e9eef2;
}

.brand .tagline {
  font-family:Arial,Helvetica,sans-serif;
  font-style:normal;
  font-weight:700;
  font-size:12px;
  letter-spacing:1.5px;
  color:var(--accent);
  align-self:flex-end;
  padding-bottom:3px;
}

.navlinks {
  display:flex;
  gap:24px;
  align-items:center;
  font-size:14px;
}

.social-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid var(--line);
  color:inherit;
  transition:transform .2s ease, opacity .2s ease, border-color .2s ease;
}

.social-icon:hover {
  transform:translateY(-2px);
  border-color:var(--accent);
  color:var(--accent);
}

.btn {
  display:inline-block;
  padding:13px 20px;
  border-radius:12px;
  background:var(--accent);
  color:#171717;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .2s ease, opacity .2s ease;
}

.btn:hover { transform:translateY(-1px); }

.btn.secondary {
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}

.page-shell {
  display:flex;
  flex-direction:column;
  gap:0;
}

.hero-block,
.games-block,
.contact-block {
  padding:72px 0;
}

.hero-block {
  background:
    radial-gradient(circle at 80% 20%, rgba(97,214,200,.17), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(245,185,66,.14), transparent 26%);
}

.hero-grid {
  display:grid;
  grid-template-columns:1.8fr 1fr;
  gap:40px;
  align-items:center;
}

.eyebrow {
  color:var(--accent2);
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

.eyebrow.accent { color:var(--accent); }

h1 {
  font-size:clamp(42px,7vw,72px);
  line-height:1.04;
  margin:12px 0 18px;
}

.hero-copy p,
.section-head p,
.contact-copy p,
.product-card p,
.phone-card p,
.card p {
  color:var(--muted);
}

.hero-copy p {
  font-size:19px;
  max-width:680px;
  margin:0;
}

.actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.phone-card {
  background:linear-gradient(145deg,#13213a,#0c1728);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 22px 70px rgba(0,0,0,.35);
}

.phone-card h3 { margin:0 0 10px; }

.phone {
  font-size:28px;
  font-weight:900;
  color:var(--accent);
  margin:8px 0 10px;
}

.alt-phone {
  font-size:20px;
  font-weight:700;
  margin:0 0 18px;
}

.alt-phone a { color:var(--accent2); }

.badges {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.badge {
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.section-head {
  margin-bottom:28px;
}

.section-head h2 {
  font-size:36px;
  margin:0 0 8px;
}

.grid3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card,
.product-card {
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  min-height:180px;
}

.card h3, .product-card h3 { margin-top:0; }

.game-image {
  display:block;
  width:100%;
  height:320px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid var(--line);
  margin-bottom:16px;
  background:#0b1729;
  cursor:zoom-in;
}

.lightbox {
  display:none;
  position:fixed;
  inset:0;
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:32px;
  background:rgba(4,10,20,0.92);
}

.lightbox.is-open {
  display:flex;
}

.lightbox-image {
  display:block;
  max-width:95vw;
  max-height:95vh;
  border-radius:8px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position:fixed;
  top:20px;
  right:24px;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--card);
  color:inherit;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.game-title {
  font-size:24px;
  font-weight:900;
  margin-bottom:10px;
}

.note {
  margin-top:24px;
  padding:18px 20px;
  border-left:3px solid var(--accent);
  background:#0e1a2c;
  color:var(--muted);
  border-radius:8px;
}

.contact-box {
  display:grid;
  grid-template-columns:1.7fr .9fr;
  gap:28px;
  align-items:center;
  padding:30px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(135deg,#101d31,#13213a);
  width:min(100%, 940px);
  margin:0 auto;
}

.contact-copy h2 {
  font-size:38px;
  margin:8px 0 12px;
}

.contact-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact-list {
  display:grid;
  gap:10px;
  margin-top:18px;
}

.contact-item {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  background:rgba(16,28,47,.7);
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  font-size:14px;
  color:var(--muted);
}

.contact-item a {
  color:var(--accent);
  font-weight:700;
}

.contact-actions {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  min-width:180px;
}

.site-footer {
  border-top:1px solid var(--line);
  padding:28px 0 40px;
  color:var(--muted);
  font-size:13px;
}

.footer-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.footerlinks {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

@media (max-width:820px) {
  .navlinks a:not(.btn):not(.social-icon) { display:none; }
  .hero-grid,
  .grid3,
  .contact-box,
  .footer-inner { grid-template-columns:1fr; display:grid; }
  .hero-block,
  .games-block,
  .contact-block { padding:56px 0; }
  .contact-actions { width:100%; }
}
