: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); object-fit: contain; padding: 3px;
}
.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; overflow: hidden; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(14,35,62,.1); border-radius: 12px; color: #fff; background: #fff; font-size: 13px; font-weight: 900; }
.contact-icon img { display: block; width: 100%; height: 100%; object-fit: cover; }
.contact-icon.safew img { object-fit: contain; }
.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: flex; 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; }
}

/* NG6 layout adaptation: keep the Apple lime identity on a clean white canvas. */
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #f6f9fd;
  --line: rgba(14, 35, 62, .12);
  --text: #0b1b30;
  --muted: #52647b;
}

body {
  color: var(--text);
  background:
    radial-gradient(850px 460px at 8% -8%, rgba(199,246,90,.22), transparent 62%),
    radial-gradient(780px 430px at 108% 4%, rgba(78,214,232,.12), transparent 62%),
    linear-gradient(180deg,#f9fbff 0%,#f0f4fa 52%,#fff 100%);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(20,49,78,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(20,49,78,.08) 1px,transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  content: "";
}

.container { max-width: 1200px; }

.header {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(135deg,#fdfff9 0%,#f8fcef 52%,#edf7dd 100%);
  border-bottom-color: rgba(58,91,31,.11);
  box-shadow: 0 10px 30px rgba(24,51,82,.07);
}

.header::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 8% 118%,rgba(190,242,89,.3) 0 25%,transparent 25.5%),
    radial-gradient(ellipse at 88% -44%,rgba(117,185,34,.15) 0 31%,transparent 31.5%),
    linear-gradient(118deg,transparent 0 57%,rgba(136,201,51,.055) 57% 57.4%,transparent 57.4% 100%);
  pointer-events: none;
  content: "";
}

.header::after {
  position: absolute;
  top: -22px;
  right: 12%;
  width: 150px;
  height: 116px;
  opacity: .34;
  background-image: radial-gradient(circle,rgba(73,119,28,.2) 1px,transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  transform: rotate(-8deg);
  content: "";
}

.header-inner { position: relative; z-index: 1; }
.brand-copy strong,.desktop-nav a { color: var(--text); }
.brand-copy small { color: #52647b; }
.desktop-nav a:hover,.desktop-nav a.active { color: #315900; }
.contact-shortcut { color: var(--text); background: #fff; box-shadow: 0 9px 20px rgba(36,61,90,.1); }

.hero { padding-top: 8px; }
.carousel {
  aspect-ratio: 16 / 5.45;
  border-color: rgba(18,43,70,.1);
  background: #fff;
  box-shadow: 0 16px 38px rgba(28,57,92,.14);
}
.carousel-arrow { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.84); color: #13233a; box-shadow: 0 8px 22px rgba(20,42,66,.16); }

.notice {
  min-height: 34px;
  border-color: rgba(100,155,21,.35);
  color: #183008;
  background: linear-gradient(100deg,#86bb2e,#b8ed4f);
  box-shadow: 0 8px 20px rgba(114,165,34,.16);
}
.notice-label,.notice-text { color: #102008; }
.notice-label span { color: #183008; background: rgba(255,255,255,.42); }
.notice-badge { color: #fff; background: #315900; }

.content-tabs-wrap { margin-top: 10px; }
.content-tabs {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.content-tabs button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border: 2px solid rgba(125,181,39,.43);
  border-radius: 11px;
  color: #15263d;
  background: rgba(255,255,255,.72);
  box-shadow: none;
  text-align: center;
}
.content-tabs button > span { display: inline-flex; width: auto; height: auto; color: #608f19; background: transparent; font-size: 15px; }
.content-tabs button strong { color: inherit; font-size: 13px; }
.content-tabs button small { display: none; }
.content-tabs button:hover { border-color: #91cf31; color: #254800; background: #fff; }
.content-tabs button.active { border-color: #6fae11; color: #fff; background: linear-gradient(110deg,#5e930e,#91d128); box-shadow: 0 9px 20px rgba(102,158,20,.2); }
.content-tabs button.active > span { color: #fff; background: transparent; }
.content-tabs button.active::after { display: none; }

.section,.demo-section { margin-top: 15px; }
.demo-section { padding-top: 0; padding-bottom: 54px; background: transparent; }
.catalog-heading { padding: 8px 0 20px; text-align: center; }
.catalog-heading h1 { position: relative; margin: 0; color: #10213d; letter-spacing: .04em; font-size: clamp(24px,3vw,34px); font-weight: 900; }
.catalog-heading h1::after { display: block; width: 110px; height: 4px; margin: 8px auto 0; border-radius: 999px; background: linear-gradient(90deg,transparent,#71aa19,var(--lime),transparent); box-shadow: 0 5px 14px rgba(121,177,34,.24); content: ""; }
.catalog-heading p { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

.game-grid,.tool-grid,.pg-game-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.game-card,.tool-card,.pg-game-card,.simulator-category-card {
  border: 1px solid rgba(25,53,84,.12);
  border-radius: 20px;
  color: var(--text);
  background: linear-gradient(180deg,#fff,#f9fbfd);
  box-shadow: 0 12px 28px rgba(28,61,99,.1);
}
.game-card { grid-template-columns: 58px minmax(0,1fr); gap: 10px; padding: 12px; }
.game-card:hover,.tool-card:hover,.pg-game-card:hover,.simulator-category-card:hover { border-color: rgba(116,176,31,.44); background: #fff; box-shadow: 0 14px 32px rgba(89,137,19,.15); transform: translateY(-3px); }
.game-logo { width: 54px; height: 54px; border: 2px solid rgba(116,176,31,.22); border-radius: 50%; background: #f3f7eb; box-shadow: 0 7px 16px rgba(74,113,22,.13); }
.game-info h2,.tool-card strong,.pg-game-card strong,.simulator-category-card strong { color: #10213a; }
.game-info p,.tool-card small { color: #52647b; }
.verified { color: #3f7300; background: rgba(199,246,90,.32); }
.tags span { color: #52647b; border-color: rgba(22,45,72,.1); background: #f1f5f9; }
.rank { color: #fff; background: linear-gradient(135deg,#6c9d1c,#9dd633); }
.enter-button {
  height: 33px;
  border-color: rgba(110,168,27,.24);
  color: #172b05;
  background: linear-gradient(110deg,#b5ec55,#d8ff86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6),0 7px 16px rgba(103,158,20,.17);
}
.enter-button:hover { color: #fff; background: linear-gradient(110deg,#5b900d,#84c322); }

.tool-card { min-height: 164px; padding: 13px; }
.tool-card img { border-color: rgba(116,176,31,.2); border-radius: 50%; background: #f4f8ed; }
.tool-card > span { color: #284b00; border-top-color: rgba(17,40,65,.1); }

.pg-game-card,.simulator-category-card { padding: 11px; }
.pg-game-card img,.simulator-category-card img { border-radius: 13px; background: #f1f5f9; }
.pg-game-card span,.simulator-category-card span { color: #487900; }
.sim-list-toolbar { border-color: var(--line); background: #fff; box-shadow: 0 8px 18px rgba(28,61,99,.08); }
.sim-list-toolbar button { color: #315900; background: #eff8df; }
.pg-loading,.pg-load-error { color: #52647b; }

.reference-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.reference-card { position: relative; display: grid; grid-template-columns: 54px minmax(0,1fr); grid-template-areas: "icon meta" "action action"; align-items: start; gap: 9px 11px; min-width: 0; padding: 12px; overflow: hidden; border: 1px solid rgba(25,53,84,.12); border-radius: 20px; color: var(--text); background: linear-gradient(180deg,#fff,#f9fbfd); box-shadow: 0 12px 28px rgba(28,61,99,.1); transition: .22s ease; }
.reference-card:hover { border-color: rgba(116,176,31,.44); background: #fff; box-shadow: 0 14px 32px rgba(89,137,19,.15); transform: translateY(-3px); }
.reference-card > img { grid-area: icon; width: 54px; height: 54px; border: 2px solid rgba(116,176,31,.2); border-radius: 50%; background: #f4f8ed; box-shadow: 0 7px 16px rgba(74,113,22,.13); object-fit: cover; }
.reference-meta { display: flex; grid-area: meta; min-width: 0; flex-direction: column; }
.reference-meta strong { overflow: hidden; color: #10213a; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; line-height: 1.25; }
.reference-meta small { overflow: hidden; margin-top: 2px; color: #52647b; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.reference-rating { margin-top: 4px; color: #78b51f; letter-spacing: 1px; white-space: nowrap; font-size: 11px; }
.reference-rating em { margin-left: 3px; color: #68788c; letter-spacing: 0; font-size: 10px; font-style: normal; }
.reference-action { display: flex; grid-area: action; min-height: 33px; align-items: center; justify-content: center; border: 1px solid rgba(110,168,27,.24); border-radius: 10px; color: #172b05; background: linear-gradient(110deg,#b5ec55,#d8ff86); box-shadow: inset 0 1px 0 rgba(255,255,255,.6),0 7px 16px rgba(103,158,20,.17); font-size: 11px; font-weight: 800; }
.reference-badge { position: absolute; z-index: 2; top: 0; right: 0; padding: 4px 8px; border-radius: 0 20px 0 9px; color: #fff; background: linear-gradient(135deg,#5f950e,#91d128); font-size: 9px; font-weight: 800; }

.contact-section { margin-top: 56px; border-top-color: var(--line); background: linear-gradient(180deg,#fff,#f1f5f9); }
.contact-intro .eyebrow { color: #5c900d; }
.contact-intro h1,.contact-grid strong { color: #10213a; }
.contact-intro p,.online-state,.contact-grid small { color: #52647b; }
.contact-grid article { border-color: var(--line); background: #fff; box-shadow: 0 10px 25px rgba(28,61,99,.08); }
.contact-grid button,.contact-grid a { border-color: rgba(94,144,19,.24); color: #315900; background: #f5fbea; }
footer { border-top-color: var(--line); background: #fff; }
.footer-inner { color: #68788c; }

@media (max-width: 900px) {
  .game-grid,.tool-grid,.pg-game-grid,.reference-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  body { padding-bottom: 78px; }
  .header { background: linear-gradient(135deg,#fdfff9 0%,#f7fbed 58%,#edf7dd 100%); }
  .header::after { right: 19%; width: 92px; opacity: .24; }
  .hero { padding-top: 7px; }
  .carousel { aspect-ratio: 16 / 6.3; border-radius: 13px; }
  .notice { min-height: 34px; }
  .content-tabs-wrap { margin-top: 8px; }
  .content-tabs { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .content-tabs button { min-height: 38px; padding: 6px 4px; border-width: 1px; border-radius: 8px; }
  .content-tabs button > span { font-size: 12px; }
  .content-tabs button strong { font-size: 10px; }
  .catalog-heading { padding: 8px 0 15px; }
  .catalog-heading h1 { font-size: 21px; }
  .catalog-heading p { font-size: 10px; }
  .game-grid,.tool-grid,.pg-game-grid,.reference-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .game-card { grid-template-columns: 44px minmax(0,1fr); min-height: 128px; padding: 9px; }
  .game-logo { width: 42px; height: 42px; border-radius: 50%; }
  .game-info h2 { color: #10213a; font-size: 11px; }
  .game-info p { color: #52647b; }
  .verified { color: #3f7300; }
  .enter-button { height: 28px; color: #172b05; font-size: 9px; }
  .tool-card { min-height: 130px; background: #fff; }
  .tool-card strong { color: #10213a; }
  .tool-card > span { color: #315900; }
  .pg-game-card,.simulator-category-card { background: #fff; }
  .pg-game-card strong,.simulator-category-card strong { color: #10213a; }
  .pg-game-card span,.simulator-category-card span { color: #487900; }
  .reference-card { display: flex; min-height: 142px; align-items: center; gap: 5px; padding: 9px; flex-direction: column; text-align: center; }
  .reference-card > img { width: 48px; height: 48px; }
  .reference-meta { width: 100%; align-items: center; }
  .reference-meta strong { max-width: 100%; font-size: 11px; }
  .reference-meta small { max-width: 100%; font-size: 8px; }
  .reference-rating { margin-top: 2px; font-size: 8px; }
  .reference-rating em { font-size: 8px; }
  .reference-action { width: 100%; min-height: 28px; margin-top: auto; font-size: 9px; }
  .reference-badge { border-radius: 0 16px 0 8px; font-size: 7px; }
  .contact-section { padding: 52px 0; }
  .mobile-nav { border-color: rgba(18,43,70,.12); background: rgba(255,255,255,.96); box-shadow: 0 12px 38px rgba(20,47,79,.2); }
  .mobile-nav a { color: #607086; }
  .mobile-nav a.active { color: #4c7d00; background: #eff8df; }
  .toast { color: #fff; background: #10213a; }
}

.floating-contact {
  position: fixed;
  z-index: 75;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(87,139,12,.34);
  border-radius: 50%;
  color: #244400;
  background: linear-gradient(145deg,#dfff94,#9edb2a);
  box-shadow: 0 12px 30px rgba(72,113,13,.3),inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .2s ease,box-shadow .2s ease;
}
.floating-contact:hover { box-shadow: 0 15px 36px rgba(72,113,13,.4),inset 0 1px 0 rgba(255,255,255,.7); transform: translateY(-3px); }
.floating-contact:active { transform: translateY(0) scale(.96); }
.floating-contact svg { width: 29px; height: 29px; overflow: visible; }
.floating-contact path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-contact circle { fill: currentColor; }
.floating-contact::after { position: absolute; right: 0; bottom: calc(100% + 8px); padding: 5px 8px; border-radius: 6px; color: #fff; background: rgba(11,27,48,.9); opacity: 0; pointer-events: none; transform: translateY(4px); transition: .2s ease; white-space: nowrap; font-size: 10px; content: "联系方式"; }
.floating-contact:hover::after { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  body { padding-bottom: 0; }
  .section.content-panel { padding-bottom: 18px; }
  .contact-section { margin-top: 12px; padding: 26px 0 32px; }
  .contact-inner { gap: 16px; }
  .floating-contact { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .floating-contact svg { width: 27px; height: 27px; }
  .toast { bottom: 82px; }
}

/* Unified card language for every content tab. */
.game-card,.tool-card,.pg-game-card,.simulator-category-card,.reference-card {
  display: flex;
  min-width: 0;
  min-height: 210px;
  align-items: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(25,53,84,.12);
  border-radius: 22px;
  color: #10213a;
  background: linear-gradient(180deg,#fff,#fbfcfe);
  box-shadow: 0 12px 28px rgba(28,61,99,.1);
  flex-direction: column;
  text-align: center;
}
.simulator-category-card {
  width: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}
.game-logo,.tool-card img,.pg-game-card img,.simulator-category-card img,.reference-card > img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border: 2px solid rgba(116,176,31,.22);
  border-radius: 50%;
  background: #f4f8ed;
  box-shadow: 0 7px 16px rgba(74,113,22,.13);
  object-fit: cover;
}
.game-logo img { width: 100%; height: 100%; object-fit: cover; }
.game-info,.tool-card > div,.pg-game-card > div,.simulator-category-card > div,.reference-meta {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  flex-direction: column;
  text-align: center;
}
.game-info > div:first-child { display: block; }
.game-info h2,.tool-card strong,.pg-game-card strong,.simulator-category-card strong,.reference-meta strong {
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  color: #10213a;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  line-height: 1.3;
}
.game-info p,.tool-card small,.pg-game-card small,.simulator-category-card small,.reference-meta small {
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  color: #52647b;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}
.game-info .verified,.game-info .tags { display: none; }
.game-info::after,.tool-card > div::after {
  color: #78b51f;
  letter-spacing: 1px;
  white-space: pre;
  font-size: 11px;
  content: "★★★★★  9.8 分";
}
.card-rating,.reference-rating { margin: 0; color: #78b51f !important; letter-spacing: 1px; white-space: nowrap; font-size: 11px !important; }
.card-rating em,.reference-rating em { margin-left: 3px; color: #68788c; letter-spacing: 0; font-size: 10px; font-style: normal; }
.enter-button,.tool-card > span,.card-entry,.reference-action {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid rgba(110,168,27,.3);
  border-radius: 12px;
  color: #172b05 !important;
  background: linear-gradient(110deg,#b5ec55,#d8ff86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65),0 7px 16px rgba(103,158,20,.17);
  white-space: nowrap;
  font-size: 11px !important;
  font-weight: 800;
}
.simulator-category-card > .card-entry {
  align-self: center;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.tool-card > span { border-top: 1px solid rgba(110,168,27,.3); }
.pg-game-card img.fallback,.simulator-category-card img.fallback { padding: 7px; background: #f4f8ed; object-fit: contain; }
.rank,.reference-badge { top: 0; right: 0; border-radius: 0 22px 0 10px; }

@media (max-width: 640px) {
  .game-card,.tool-card,.pg-game-card,.simulator-category-card,.reference-card { min-height: 196px; padding: 12px; border-radius: 20px; }
  .game-card .rank { display: block; }
  .game-logo,.tool-card img,.pg-game-card img,.simulator-category-card img,.reference-card > img { width: 62px; height: 62px; flex-basis: 62px; }
  .game-info h2,.tool-card strong,.pg-game-card strong,.simulator-category-card strong,.reference-meta strong { font-size: 13px; }
  .game-info p,.tool-card small,.pg-game-card small,.simulator-category-card small,.reference-meta small { display: block; font-size: 9px; }
  .game-info::after,.tool-card > div::after,.card-rating,.reference-rating { font-size: 9px !important; }
  .card-rating em,.reference-rating em { font-size: 9px; }
  .enter-button,.tool-card > span,.card-entry,.reference-action { min-height: 36px; border-radius: 11px; font-size: 10px !important; }
}
