:root {
  --bg: #07101d;
  --surface: #0d1929;
  --surface-2: #111f32;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f6f8fb;
  --muted: #8a9ab0;
  --lime: #c7f65a;
  --gold: #ffc957;
  --cyan: #4ed6e8;
  --green: #49d6a1;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-right: auto; margin-left: auto; }

.header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 29, 0.88);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(1180px, calc(100% - 40px)); height: 72px; margin: auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo {
  display: grid; width: 42px; height: 42px; place-items: center;
  border: 1px solid rgba(199, 246, 90, 0.26); border-radius: 13px;
  color: #101909; background: linear-gradient(145deg, #dcff88, #9edb2a);
  box-shadow: 0 8px 28px rgba(180, 235, 65, 0.15); font-family: Georgia, serif; font-size: 15px; font-weight: 900;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { letter-spacing: 0.03em; font-size: 15px; }
.brand-copy small { margin-top: 5px; color: #728097; letter-spacing: 0.13em; font-size: 7px; }
.desktop-nav { display: flex; gap: 32px; color: var(--muted); font-size: 13px; }
.desktop-nav a { position: relative; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a.active::after { position: absolute; right: 0; bottom: -27px; left: 0; height: 2px; border-radius: 2px; background: var(--lime); content: ""; }
.contact-shortcut { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); font-size: 12px; }
.contact-shortcut span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(73, 214, 161, .1); }

.hero { padding-top: 24px; }
.carousel { position: relative; overflow: hidden; aspect-ratio: 16 / 4.8; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 20px 60px rgba(0, 0, 0, .22); }
.slides, .slide { position: absolute; inset: 0; }
.slide { opacity: 0; pointer-events: none; transition: opacity .55s ease; }
.slide.active { z-index: 1; opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-arrow {
  position: absolute; z-index: 3; top: 50%; display: grid; width: 42px; height: 42px; padding: 0; place-items: center;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: rgba(4,9,17,.48);
  backdrop-filter: blur(8px); cursor: pointer; transform: translateY(-50%); font-size: 28px;
}
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }
.carousel-dots { position: absolute; z-index: 3; bottom: 17px; left: 50%; display: flex; gap: 7px; transform: translateX(-50%); }
.carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 5px; background: rgba(255,255,255,.48); cursor: pointer; transition: .25s; }
.carousel-dots button.active { width: 26px; background: var(--lime); }

.notice {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; min-height: 42px; margin-top: 10px; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 13px; background: var(--surface); font-size: 12px;
}
.notice-label { display: flex; align-items: center; gap: 8px; padding-right: 15px; border-right: 1px solid var(--line); font-weight: 700; white-space: nowrap; }
.notice-label span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; color: var(--lime); background: rgba(199,246,90,.09); }
.notice-window { overflow: hidden; color: var(--muted); white-space: nowrap; }
.notice-text { width: max-content; }
.notice-badge { padding: 5px 8px; border-radius: 6px; color: #16200a; background: var(--lime); font-size: 9px; font-weight: 800; }

.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.quick-actions > a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); transition: .2s; }
.quick-actions > a:hover { border-color: rgba(199,246,90,.24); background: var(--surface-2); transform: translateY(-2px); }
.quick-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: #fff; font-size: 14px; font-weight: 900; }
.quick-icon.gold { background: linear-gradient(145deg,#f8c55d,#ad7020); }
.quick-icon.violet { background: linear-gradient(145deg,#a778ff,#6542bd); }
.quick-icon.cyan { background: linear-gradient(145deg,#55d8e9,#1a8296); font-size: 20px; }
.quick-icon.green { background: linear-gradient(145deg,#55dba9,#187a5a); font-size: 17px; }
.quick-actions strong, .quick-actions small { display: block; }
.quick-actions strong { margin-bottom: 4px; font-size: 13px; }
.quick-actions small { color: var(--muted); font-size: 10px; }
.quick-actions i { color: #5f6d80; font-size: 21px; font-style: normal; }

.content-tabs-wrap { padding-top: 12px; }
.content-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
  border: 1px solid var(--line); border-radius: 17px; background: var(--surface);
}
.content-tabs button {
  position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 3px 12px;
  min-height: 58px; padding: 9px 20px; border: 0; border-right: 1px solid var(--line);
  color: var(--muted); background: transparent; text-align: left; cursor: pointer; transition: .2s;
}
.content-tabs button:last-child { border-right: 0; }
.content-tabs button:hover { color: var(--text); background: var(--surface-2); }
.content-tabs button.active { color: var(--text); background: linear-gradient(110deg, rgba(199,246,90,.11), rgba(199,246,90,.025)); }
.content-tabs button.active::after { position: absolute; right: 18px; bottom: 0; left: 18px; height: 2px; border-radius: 2px 2px 0 0; background: var(--lime); content: ""; }
.content-tabs button > span {
  display: grid; grid-row: 1 / 3; width: 34px; height: 34px; place-items: center;
  border-radius: 11px; color: #9aa8bb; background: rgba(255,255,255,.05); font-size: 15px; font-weight: 900;
}
.content-tabs button.active > span { color: #152008; background: var(--lime); }
.content-tabs strong { align-self: end; font-size: 12px; }
.content-tabs small { align-self: start; color: #657388; font-size: 8px; }
.content-panel { animation: panelIn .3s ease; }
.content-panel.hidden-panel { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.section { padding: 92px 0; }
.section.content-panel { padding: 18px 0 58px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.eyebrow { color: var(--lime); letter-spacing: .16em; font-size: 9px; font-weight: 800; }
.section-heading h1, .contact-intro h1 { margin: 8px 0 7px; letter-spacing: -.035em; font-size: 34px; }
.section-heading p, .contact-intro > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.section-tabs { display: flex; gap: 7px; }
.section-tabs button { padding: 8px 14px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; }
.section-tabs button.active { border-color: rgba(199,246,90,.25); color: var(--lime); background: rgba(199,246,90,.08); }

.game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.game-card {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 15px; min-width: 0; padding: 18px;
  border: 1px solid var(--line); border-radius: 17px; background: var(--surface); cursor: pointer; transition: .2s;
}
.game-card:hover { border-color: rgba(199,246,90,.25); background: var(--surface-2); transform: translateY(-3px); }
.game-card.hidden { display: none; }
.rank { position: absolute; top: 0; right: 13px; padding: 4px 8px; border-radius: 0 0 7px 7px; color: #1b1609; background: var(--gold); font-size: 8px; font-weight: 900; }
.game-logo { overflow: hidden; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.game-logo img { width: 100%; height: 100%; object-fit: cover; }
.game-info { min-width: 0; }
.game-info > div:first-child { display: flex; align-items: center; gap: 7px; }
.game-info h2 { overflow: hidden; margin: 0; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; }
.verified { padding: 3px 6px; border-radius: 5px; color: var(--lime); background: rgba(199,246,90,.08); white-space: nowrap; font-size: 8px; }
.game-info p { overflow: hidden; margin: 7px 0; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.tags { display: flex; gap: 5px; }
.tags span { padding: 3px 6px; border: 1px solid var(--line); border-radius: 5px; color: #8290a3; font-size: 8px; }
.enter-button { grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; height: 38px; margin-top: 3px; border: 1px solid rgba(199,246,90,.18); border-radius: 9px; color: var(--lime); background: rgba(199,246,90,.06); font-size: 11px; font-weight: 700; }
.enter-button:hover { color: #17200c; background: var(--lime); }

.demo-section { position: relative; overflow: hidden; padding: 18px 0 58px; background: transparent; }
.light-heading { position: relative; }
.text-link { color: #b7a0f8; font-size: 11px; }
.text-link span { margin-left: 7px; }
.demo-layout { position: relative; display: grid; grid-template-columns: 1.45fr .55fr; gap: 14px; }
.pg-feature {
  position: relative; display: grid; overflow: hidden; min-height: 400px; padding: 48px; align-items: center;
  border: 1px solid rgba(178,139,255,.2); border-radius: 24px;
  background: linear-gradient(125deg,#241744 0%,#17152f 52%,#0f1b2d 100%);
}
.pg-glow { position: absolute; right: -120px; bottom: -220px; width: 480px; height: 480px; border: 70px solid rgba(178,139,255,.05); border-radius: 50%; }
.pg-copy { position: relative; z-index: 2; max-width: 500px; }
.official-chip { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(194,159,255,.24); border-radius: 999px; color: #cdb8ff; background: rgba(167,120,255,.1); letter-spacing: .1em; font-size: 8px; }
.pg-copy h2 { margin: 19px 0 11px; letter-spacing: -.045em; font-size: 42px; line-height: 1.08; }
.pg-copy h2 em { color: #c4a9ff; font-style: normal; }
.pg-copy > p { margin: 0; color: #9d93b5; font-size: 12px; }
.feature-list { display: flex; gap: 16px; margin: 25px 0; color: #b6adc8; font-size: 10px; }
.feature-list span::first-letter { color: var(--lime); }
.pg-copy > a { display: inline-flex; align-items: center; gap: 24px; padding: 13px 18px; border-radius: 10px; color: #191326; background: #cab0ff; font-size: 11px; font-weight: 800; }
.pg-visual { position: absolute; right: 6%; display: flex; width: 190px; height: 190px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; background: radial-gradient(circle,#9a72e5,#51308f 70%); box-shadow: 0 0 90px rgba(151,100,243,.35); flex-direction: column; }
.pg-visual img { position: absolute; inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); border-radius: 50%; object-fit: cover; opacity: .13; }
.pg-visual strong, .pg-visual small { z-index: 1; }
.pg-visual strong { font-family: Georgia, serif; font-size: 58px; }
.pg-visual small { letter-spacing: .18em; font-size: 7px; }
.pg-orbit { position: absolute; inset: -24px; border: 1px dashed rgba(202,176,255,.25); border-radius: 50%; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.demo-list a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); transition: .2s; }
.demo-list a:hover { border-color: rgba(202,176,255,.26); background: rgba(202,176,255,.07); transform: translateX(-3px); }
.demo-list img { width: 45px; height: 45px; border-radius: 11px; object-fit: cover; }
.demo-list strong, .demo-list small { display: block; }
.demo-list strong { margin-bottom: 4px; font-size: 12px; }
.demo-list small { color: var(--muted); font-size: 9px; }
.demo-list i { color: #bca6f4; white-space: nowrap; font-size: 9px; font-style: normal; }
.pg-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.pg-game-card {
  display: flex; overflow: hidden; min-width: 0; padding: 9px;
  border: 1px solid var(--line); border-radius: 15px; background: var(--surface);
  cursor: pointer; flex-direction: column; transition: .2s;
}
.pg-game-card:hover { border-color: rgba(202,176,255,.3); background: var(--surface-2); transform: translateY(-2px); }
.pg-game-card img { width: 100%; aspect-ratio: 1.55 / 1; border-radius: 10px; background: #0a1320; object-fit: cover; }
.pg-game-card img.fallback { padding: 14%; background: #11152c; object-fit: contain; }
.pg-game-card > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; padding: 10px 3px 2px; }
.pg-game-card strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.pg-game-card span { color: #bca6f4; white-space: nowrap; font-size: 8px; }
.simulator-category-card {
  display: flex; overflow: hidden; min-width: 0; padding: 10px; border: 1px solid var(--line);
  border-radius: 15px; color: var(--text); background: var(--surface); cursor: pointer;
  font: inherit; text-align: left; flex-direction: column; transition: .2s;
}
.simulator-category-card:hover { border-color: rgba(202,176,255,.3); background: var(--surface-2); transform: translateY(-2px); }
.simulator-category-card img { width: 100%; aspect-ratio: 1.55 / 1; border-radius: 10px; background: #0a1320; object-fit: cover; }
.simulator-category-card img.fallback { padding: 14%; background: #11152c; object-fit: contain; }
.simulator-category-card > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; padding: 10px 3px 2px; }
.simulator-category-card strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.simulator-category-card span { color: #bca6f4; white-space: nowrap; font-size: 8px; }
.sim-list-toolbar {
  display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between;
  min-height: 42px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface);
}
.sim-list-toolbar button { padding: 7px 10px; border: 1px solid var(--line); border-radius: 7px; color: var(--text); background: var(--surface-2); cursor: pointer; font-size: 9px; }
.sim-list-toolbar > div { display: flex; align-items: center; gap: 9px; }
.sim-list-toolbar strong { font-size: 11px; }
.sim-list-toolbar span { color: var(--muted); font-size: 8px; }
.pg-loading {
  display: flex; grid-column: 1 / -1; min-height: 110px; align-items: center; justify-content: center;
  gap: 10px; border: 1px dashed var(--line); border-radius: 15px; color: var(--muted); font-size: 10px;
}
.pg-loading span { width: 17px; height: 17px; border: 2px solid rgba(202,176,255,.2); border-top-color: #bca6f4; border-radius: 50%; animation: spin .8s linear infinite; }
.pg-load-error { grid-column: 1 / -1; padding: 28px; border: 1px dashed var(--line); border-radius: 15px; color: var(--muted); text-align: center; font-size: 10px; }
.pg-load-error button { margin-left: 8px; padding: 7px 10px; border: 1px solid rgba(202,176,255,.25); border-radius: 7px; color: #cbb8fa; background: rgba(202,176,255,.06); cursor: pointer; }

.tool-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.tool-card { display: flex; min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); cursor: pointer; flex-direction: column; transition: .2s; }
.tool-card:hover { border-color: rgba(78,214,232,.25); background: var(--surface-2); transform: translateY(-3px); }
.tool-card img { width: 50px; height: 50px; border-radius: 13px; object-fit: cover; }
.tool-card div { margin: 18px 0 20px; }
.tool-card strong, .tool-card small { display: block; }
.tool-card strong { margin-bottom: 5px; font-size: 13px; }
.tool-card small { color: var(--muted); font-size: 9px; }
.tool-card > span { margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); color: #78dce8; font-size: 9px; }

.contact-section { padding: 86px 0; background: linear-gradient(120deg,#111c2d,#0b1524); border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.contact-intro h1 { font-size: 36px; }
.online-state { display: flex; align-items: center; gap: 11px; margin-top: 24px; }
.online-state > i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(73,214,161,.08); }
.online-state span, .online-state strong, .online-state small { display: block; }
.online-state strong { margin-bottom: 4px; font-size: 11px; }
.online-state small { color: var(--muted); font-size: 9px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.contact-grid article { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.035); }
.contact-icon { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 12px; color: #fff; font-size: 13px; font-weight: 900; }
.contact-icon.ww { background: #4d68d9; }
.contact-icon.tg { background: #2e9bd8; font-size: 18px; }
.contact-icon.group { background: #2a9d74; }
.contact-icon.build { background: #8663d9; }
.contact-grid small, .contact-grid strong { display: block; }
.contact-grid small { margin-bottom: 4px; color: var(--muted); font-size: 8px; }
.contact-grid strong { font-size: 11px; }
.contact-grid button, .contact-grid a { padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; color: #aab6c6; background: transparent; cursor: pointer; font-size: 8px; }

footer { border-top: 1px solid var(--line); background: #060d17; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 110px; color: #667488; font-size: 9px; }
.footer-inner p { max-width: 430px; text-align: center; line-height: 1.6; }
.footer-inner > span { text-align: right; }
.footer-inner i { font-style: normal; }
.footer-brand .brand-logo { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; }
.footer-brand .brand-copy strong { font-size: 11px; }
.mobile-nav { display: none; }
.toast { position: fixed; z-index: 100; bottom: 26px; left: 50%; padding: 10px 16px; border: 1px solid var(--line); border-radius: 9px; background: #172437; box-shadow: 0 15px 40px rgba(0,0,0,.35); opacity: 0; pointer-events: none; transform: translate(-50%,10px); transition: .25s; font-size: 10px; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demo-layout { grid-template-columns: 1fr; }
  .pg-feature { min-height: 370px; }
  .demo-list { grid-template-columns: repeat(2, 1fr); }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 75px; }
  .container { width: min(100% - 24px, 1180px); }
  .header-inner { width: calc(100% - 24px); height: 64px; }
  .brand-logo { width: 37px; height: 37px; border-radius: 11px; font-size: 13px; }
  .brand-copy strong { font-size: 13px; }
  .contact-shortcut { padding: 8px 10px; font-size: 10px; }
  .hero { padding-top: 12px; }
  .carousel { aspect-ratio: 16 / 7; border-radius: 14px; }
  .slide img { object-position: center; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 21px; }
  .carousel-arrow.prev { left: 9px; }
  .carousel-arrow.next { right: 9px; }
  .carousel-dots { bottom: 10px; }
  .notice { grid-template-columns: auto 1fr; gap: 9px; margin-top: 9px; padding: 7px 9px; }
  .notice-label { padding-right: 9px; font-size: 10px; }
  .notice-label span { display: none; }
  .notice-badge { display: none; }
  .notice-text { animation: marquee 16s linear infinite; }
  @keyframes marquee { from { transform: translateX(10%); } to { transform: translateX(-100%); } }
  .quick-actions { gap: 8px; margin-top: 9px; }
  .quick-actions > a { gap: 9px; padding: 12px; }
  .quick-icon { width: 38px; height: 38px; border-radius: 10px; }
  .quick-actions strong { font-size: 11px; }
  .quick-actions small { font-size: 8px; }
  .quick-actions i { display: none; }
  .content-tabs-wrap { padding-top: 9px; }
  .content-tabs { border-radius: 14px; }
  .content-tabs button { display: flex; min-width: 0; min-height: 54px; padding: 7px 5px; align-items: center; justify-content: center; gap: 4px; flex-direction: column; text-align: center; }
  .content-tabs button > span { display: block; width: auto; height: auto; color: #8695a9; background: transparent; font-size: 16px; line-height: 1; }
  .content-tabs button.active > span { color: var(--lime); background: transparent; }
  .content-tabs strong { align-self: auto; font-size: 10px; }
  .content-tabs small { display: none; }
  .content-tabs button.active::after { right: 12px; left: 12px; }
  .section { padding: 66px 0; }
  .section.content-panel { padding: 12px 0 46px; }
  .section-heading { display: block; margin-bottom: 22px; }
  .section-heading h1, .contact-intro h1 { font-size: 28px; }
  .section-tabs { overflow-x: auto; margin-top: 20px; }
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .game-card {
    display: flex; min-width: 0; min-height: 132px; padding: 8px 5px;
    align-items: center; gap: 6px; flex-direction: column; text-align: center;
  }
  .game-card .rank { display: none; }
  .game-logo { width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto; }
  .game-info { width: 100%; }
  .game-info > div:first-child { display: block; }
  .game-info h2 { font-size: 10px; }
  .game-info .verified, .game-info p, .game-info .tags { display: none; }
  .enter-button { width: 100%; height: 27px; margin-top: auto; border-radius: 7px; font-size: 8px; }
  .demo-section { padding: 12px 0 46px; }
  .text-link { display: inline-block; margin-top: 18px; }
  .pg-feature { min-height: 430px; padding: 30px 24px; align-items: flex-start; }
  .pg-copy h2 { font-size: 35px; }
  .feature-list { flex-wrap: wrap; gap: 8px 13px; margin: 20px 0; }
  .pg-visual { right: 50%; bottom: 27px; width: 135px; height: 135px; transform: translateX(50%); }
  .pg-visual strong { font-size: 42px; }
  .demo-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .demo-list a {
    display: flex; min-width: 0; min-height: 112px; padding: 8px 4px;
    align-items: center; justify-content: center; gap: 6px; flex-direction: column; text-align: center;
  }
  .demo-list img { width: 42px; height: 42px; border-radius: 10px; }
  .demo-list strong { overflow: hidden; max-width: 100%; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; }
  .demo-list small { display: none; }
  .demo-list i { margin-top: auto; font-size: 8px; }
  .pg-game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .pg-game-card { padding: 4px; border-radius: 10px; }
  .pg-game-card img { aspect-ratio: 1 / 1; border-radius: 7px; }
  .pg-game-card > div { display: block; padding: 6px 1px 3px; text-align: center; }
  .pg-game-card strong { display: block; font-size: 8px; }
  .pg-game-card span { display: block; margin-top: 3px; font-size: 7px; }
  .simulator-category-card { padding: 4px; border-radius: 10px; text-align: center; }
  .simulator-category-card img { aspect-ratio: 1 / 1; border-radius: 7px; }
  .simulator-category-card > div { display: block; padding: 6px 1px 3px; }
  .simulator-category-card strong { display: block; font-size: 8px; }
  .simulator-category-card span { display: block; margin-top: 3px; font-size: 7px; }
  .sim-list-toolbar { min-height: 38px; padding: 4px 6px; }
  .sim-list-toolbar button { padding: 6px 8px; font-size: 8px; }
  .sim-list-toolbar strong { font-size: 9px; }
  .pg-loading { min-height: 90px; font-size: 9px; }
  .tool-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .tool-card { min-width: 0; min-height: 126px; padding: 8px 5px; align-items: center; text-align: center; }
  .tool-card img { width: 42px; height: 42px; border-radius: 10px; }
  .tool-card div { width: 100%; margin: 8px 0 5px; }
  .tool-card strong { overflow: hidden; max-width: 100%; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; }
  .tool-card small { display: none; }
  .tool-card > span { width: 100%; padding-top: 7px; white-space: nowrap; font-size: 7px; }
  .contact-section { padding: 66px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { display: flex; padding: 28px 0; flex-direction: column; gap: 18px; text-align: center; }
  .footer-inner p, .footer-inner > span { margin: 0; text-align: center; }
  .mobile-nav {
    position: fixed; z-index: 70; right: 9px; bottom: 8px; left: 9px; display: grid; grid-template-columns: repeat(5, 1fr);
    height: 62px; padding: 6px; border: 1px solid var(--line); border-radius: 17px; background: rgba(11,22,37,.94); box-shadow: 0 15px 50px rgba(0,0,0,.45); backdrop-filter: blur(16px);
  }
  .mobile-nav a { display: flex; align-items: center; justify-content: center; gap: 3px; border-radius: 11px; color: #7f8da1; flex-direction: column; font-size: 8px; }
  .mobile-nav a span { font-size: 16px; font-weight: 800; }
  .mobile-nav a.active { color: var(--lime); background: rgba(199,246,90,.08); }
  .toast { bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
