:root {
  --bg: #05070f;
  --panel: #0d1224;
  --panel-2: #121a32;
  --accent: #13e3ff;
  --text: #f5f8ff;
  --muted: #98a4c5;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: radial-gradient(circle at top, #0d1736 0%, var(--bg) 48%); }
a { color: inherit; text-decoration: none; }
.site-wrap { max-width: 1320px; margin: 0 auto; padding: 0 14px; }
.topbar { background: linear-gradient(90deg, #051028, #0d2354 55%, #182e64); border-bottom: 1px solid #1f3f88; position: sticky; top: 0; z-index: 30; }
.topbar .site-wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; }
.brand { font-weight: 800; letter-spacing: .8px; color: var(--accent); font-size: 24px; }
.brand-link { display: inline-flex; line-height: 0; align-items: center; }
.brand-logo { height: 34px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.nav { display: flex; gap: 6px; flex-wrap: wrap; }
.nav a { font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 9px 12px; border: 1px solid #2a3c68; background: #0c1430; border-radius: 4px; }
.nav a.active,.nav a:hover { border-color: var(--accent); color: var(--accent); }
.hero { margin: 16px 0; border: 1px solid #29427e; border-radius: 10px; background: linear-gradient(135deg, rgba(19,227,255,.14), rgba(138,67,255,.22)); padding: 18px; }
.hero h1 { margin: 0 0 10px; font-size: 30px; text-transform: uppercase; }
.hero p { margin: 0; color: #d9e3ff; max-width: 830px; }
.section-title { margin: 20px 0 10px; text-transform: uppercase; font-size: 16px; color: var(--accent); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.game-card { display: block; border: 1px solid #2b3452; border-radius: 8px; overflow: hidden; background: linear-gradient(155deg, #1d2340, #0d1328); transition: transform .18s ease, border-color .18s ease; }
.game-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.thumb { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 800; letter-spacing: .6px; color: #fff; background: linear-gradient(135deg, #273b83, #992f8e); padding: 10px; }
.game-info { padding: 8px; border-top: 1px solid #23335d; }
.game-name { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.game-meta { color: var(--muted); font-size: 11px; margin-top: 3px; }
.content-panel { margin: 16px 0; border: 1px solid #2b3a65; border-radius: 10px; padding: 18px; background: linear-gradient(170deg, var(--panel), var(--panel-2)); }
.content-panel h2,.content-panel h3 { text-transform: uppercase; color: var(--accent); }
.content-panel p,.content-panel li { color: #d4ddf4; line-height: 1.6; }
.notice { margin: 12px 0; border: 1px solid #6a3355; background: rgba(255,95,125,.08); padding: 11px; border-radius: 8px; color: #ffd4df; font-size: 13px; }
.footer { margin-top: 26px; border-top: 1px solid #26365f; padding: 20px 0 30px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.footer-links a { color: #c8d4f5; }
.btn { display: inline-block; padding: 10px 14px; border-radius: 6px; border: 1px solid #42568f; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.btn-primary { background: linear-gradient(90deg, var(--accent), #42ffe2); color: #04111c; border-color: transparent; }
@media (max-width: 700px) { .topbar .site-wrap { flex-direction: column; align-items: flex-start; } .hero h1 { font-size: 22px; } .games-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }

/* Landing page image-accurate clone block */
body.laser-home-page {
  background: #ffffff !important;
  margin: 0;
  padding: 0;
}

.laser-clone-wrap {
  width: min(905px, 100%);
  margin: 0 auto;
  background: #ffffff;
}

.laser-header-strip img,
.laser-nav-strip img,
.laser-hero-banner img,
.laser-card img {
  width: 100%;
  display: block;
}

.laser-main-content {
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}

.laser-row {
  display: grid;
  gap: 1px;
  background: #ffffff;
}

.laser-row.two {
  grid-template-columns: 1fr 1fr;
}

.laser-row.four {
  grid-template-columns: repeat(4, 1fr);
}

.laser-card {
  display: block;
  overflow: hidden;
  background: #000;
}

.laser-card.wide {
  aspect-ratio: 452 / 114;
}

.laser-row.four .laser-card {
  aspect-ratio: 226 / 112;
}

@media (max-width: 920px) {
  .laser-clone-wrap {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .laser-row.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

.laser-clone-fullshot {
  width: min(291px, 100%);
}

.laser-fullshot {
  line-height: 0;
}

.laser-fullshot img {
  width: 100%;
  height: auto;
  display: block;
}