/* ============================================================================
   game-os.css: the single game page in the homepage's look (owner 2026-09-27,
   mockup CzMSyoFUuLnhHgV8nK3z1q, layout A). Loaded by Theme\GameOs only;
   every rule is under body.cg-game-os, which only cryptogames.gg carries
   (egamers.io keeps its page, owner's order).

   ⭐ The page keeps its markup and order. It reads cryptogames.css's Material
   tokens, so most of the repaint is re-pointing those tokens at home-os.css's
   palette; the rest is shape (panels, strip, rounded hero) and the owner's
   three additions (Read more, Happening now, pros and cons in the sidebar).

   Specificity: cryptogames.css sets the light palette on
   `body:not([data-theme='dark']).cg-layout` (0,2,1), so both blocks below sit
   one class above it.
   ============================================================================ */

/* ---------------------------------------------------------------- tokens */
body.cg-layout.cg-game-os {
  --gmo-bg: #191919;
  --gmo-s1: #212121;
  --gmo-s2: #333333;
  --gmo-s3: #3f3f3f;
  --gmo-line: rgba(255, 255, 255, .08);
  --gmo-text: #ffffff;
  --gmo-body: #d6d6d6;
  --gmo-muted: #b5b5b5;
  --gmo-faint: #8c8c8c;
  --gmo-accent: #9d8cff;
  --gmo-grad: linear-gradient(135deg, #06707f 0%, #4a28c4 62%, #7b2fc0 100%);
  --gmo-soft: rgba(106, 80, 255, .16);
  --gmo-well: rgba(0, 0, 0, .35);
  --gmo-up: #35b477;
  --gmo-down: #d65a52;
  --gmo-gold: #e0c05a;

  --color-background: #191919;
  --color-surface: #191919;
  --rgb-surface: 25, 25, 25;
  --color-surface-container-lowest: #191919;
  --color-surface-container-low: #212121;
  --color-surface-container: #212121;
  --color-surface-container-high: #333333;
  --color-surface-container-highest: #3f3f3f;
  --color-on-surface: #ffffff;
  --color-on-surface-variant: #b5b5b5;
  --rgb-on-surface-variant: 181, 181, 181;
  --rgb-outline-variant: 255, 255, 255;
  --color-primary-fixed: #9d8cff;
  --color-primary-fixed-dim: #9d8cff;
  --rgb-primary-fixed-dim: 157, 140, 255;
  --color-primary-container: #9d8cff;
  --rgb-primary-container: 157, 140, 255;
  --color-on-primary-container: #ffffff;
  --color-secondary: #c7bdff;
  --color-secondary-container: #9d8cff;
  --rgb-secondary-container: 157, 140, 255;
  --color-tertiary-container: #35b477;
  --color-tertiary-fixed-dim: #35b477;
  --rgb-tertiary-container: 53, 180, 119;
  --color-error: #d65a52;
  --font-headline: Inter, system-ui, sans-serif;
}
body:not([data-theme="dark"]).cg-layout.cg-game-os {
  --gmo-bg: #ffffff;
  --gmo-s1: #f4f4f6;
  --gmo-s2: #e9e9ee;
  --gmo-s3: #dedee6;
  --gmo-line: rgba(0, 0, 0, .08);
  --gmo-text: #191919;
  --gmo-body: #333333;
  --gmo-muted: #6b6b6b;
  --gmo-faint: #8a8a8a;
  --gmo-accent: #4a28c4;
  --gmo-soft: rgba(74, 40, 196, .10);
  --gmo-well: rgba(255, 255, 255, .78);
  --gmo-up: #2f9e68;
  --gmo-down: #c0453e;
  --gmo-gold: #9a7a14;

  --color-background: #ffffff;
  --color-surface: #ffffff;
  --rgb-surface: 255, 255, 255;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #f4f4f6;
  --color-surface-container: #f4f4f6;
  --color-surface-container-high: #e9e9ee;
  --color-surface-container-highest: #dedee6;
  --color-on-surface: #191919;
  --color-on-surface-variant: #6b6b6b;
  --rgb-on-surface-variant: 107, 107, 107;
  --rgb-outline-variant: 0, 0, 0;
  --color-primary-fixed: #4a28c4;
  --color-primary-fixed-dim: #4a28c4;
  --rgb-primary-fixed-dim: 74, 40, 196;
  --color-primary-container: #4a28c4;
  --rgb-primary-container: 74, 40, 196;
  --color-on-primary-container: #ffffff;
  --color-secondary: #5b3be0;
  --color-secondary-container: #4a28c4;
  --rgb-secondary-container: 74, 40, 196;
  --color-tertiary-container: #2f9e68;
  --color-tertiary-fixed-dim: #2f9e68;
  --rgb-tertiary-container: 47, 158, 104;
  --color-error: #c0453e;
}

/* ---------------------------------------------------------- page ground */
body.cg-game-os,
body.cg-game-os main.cg-main { background: var(--gmo-bg); }
body.cg-game-os main.cg-main { font-family: Inter, system-ui, sans-serif; }

/* ------------------------------------------------------------- the hero
   His words on approval: "I like the header as it is". Same content, same
   cover photo; only its frame: a rounded card with the homepage's shade. */
body.cg-game-os .cg-hero.cg-hero-game {
  height: auto; min-height: 340px; margin: 18px 22px 0; border-radius: 18px;
  display: flex; align-items: flex-end; background-color: #000;
}
body.cg-game-os .cg-hero-game .cg-hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 25, 25, .95) 0%, rgba(25, 25, 25, .7) 45%, rgba(25, 25, 25, .15) 100%),
    linear-gradient(0deg, rgba(25, 25, 25, .9) 0%, rgba(25, 25, 25, 0) 60%);
}
body.cg-game-os .cg-hero-game .cg-hero-content { position: relative; inset: auto; width: 100%; padding: 26px; }
body.cg-game-os .cg-hero-game-logo {
  width: 120px; height: 120px; border-radius: 24px; border: 0;
  box-shadow: 0 0 0 1px var(--gmo-line), 0 14px 40px rgba(0, 0, 0, .5);
}
body.cg-game-os .cg-hero-title { font-size: 52px; letter-spacing: -.03em; color: #ffffff; }
body.cg-game-os .cg-dapp-chip {
  border-radius: 8px; padding: 5px 10px; color: #e6e6e6;
  background: rgba(0, 0, 0, .38); border: 1px solid rgba(255, 255, 255, .1);
}
body.cg-game-os a.cg-dapp-chip:hover { border-color: rgba(157, 140, 255, .55); color: #ffffff; }
body.cg-game-os .cg-dapp-chip-f2p { color: #35b477; border-color: rgba(53, 180, 119, .35); }
body.cg-game-os .cg-dapp-chain-pill,
body.cg-game-os .cg-dapp-hero-rating,
body.cg-game-os .cg-dapp-hero-vote {
  background: rgba(0, 0, 0, .38); border: 1px solid rgba(255, 255, 255, .1); border-radius: 9px; color: #ffffff;
}
body.cg-game-os .cg-btn-play-now {
  background: var(--gmo-grad); color: #ffffff; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(74, 40, 196, .35); font-weight: 800; font-size: 16px; letter-spacing: .06em;
}
body.cg-game-os .cg-btn-play-now:hover { color: #ffffff; transform: translateY(-1px); box-shadow: 0 14px 36px rgba(74, 40, 196, .5); }
body.cg-game-os .cg-dapp-hero-edit {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); border-radius: 10px; color: #ffffff;
}
/* The hero sits on the cover photo, so its ink stays light in both themes. */
body.cg-game-os .cg-hero-game .cg-dapp-hero-info,
body.cg-game-os .cg-hero-game .cg-rating-suf,
body.cg-game-os .cg-hero-game .cg-rating-count,
body.cg-game-os .cg-hero-game .cg-vote-label { color: #e6e6e6; }

/* ------------------------------------------------ the figures as one strip */
body.cg-game-os .cg-quick-stats-bar {
  margin: 16px 22px 0; padding: 0; gap: 0; border: 0; border-radius: 16px; overflow: hidden;
  background: var(--gmo-s1); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
body.cg-game-os .cg-quick-stats-bar > div { padding: 14px 18px; border-right: 1px solid var(--gmo-line); }
body.cg-game-os .cg-quick-stats-bar > div:last-child { border-right: 0; }
body.cg-game-os .cg-quick-stat-label { font-size: 11px; letter-spacing: .08em; color: var(--gmo-muted); }
body.cg-game-os .cg-quick-stat-value { font-size: 19px; font-variant-numeric: tabular-nums; }
body.cg-game-os .cg-quick-stat-note { color: var(--gmo-faint); }
body.cg-game-os .cg-quick-stat-note time { border-bottom: 0; }

/* ------------------------------------------------------------ section tabs */
body.cg-game-os .cg-tab-nav {
  margin: 8px 22px 0; padding: 0; gap: 4px; background: var(--gmo-bg);
  border-bottom: 1px solid var(--gmo-line); overflow-x: auto; scrollbar-width: none;
}
body.cg-game-os .cg-tab-nav a { padding: 13px 14px; font-size: 13px; font-weight: 600; white-space: nowrap; border-bottom: 2px solid transparent; }
body.cg-game-os .cg-tab-nav a.active { color: var(--gmo-text); border-bottom-color: var(--gmo-accent); }

/* -------------------------------------------------------- panels and grid */
/* Owner 09-27 (second pass): "keep the header as is and below the overview make
   it slightly boxed". The hero, the figures and the section tabs stay full
   width; everything under the tabs sits in a centred box (1240px, then
   "open it 25%" the same day: 1550px). */
body.cg-game-os .cg-content-area { max-width: 1550px; margin: 0 auto; padding: 18px 22px 40px; }
body.cg-game-os .cg-dapp-grid { gap: 16px; }
@media (min-width: 1024px) {
  body.cg-game-os .cg-dapp-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 16px; }
}
body.cg-game-os .cg-dapp-col-main,
body.cg-game-os .cg-dapp-col-side { gap: 16px; }
body.cg-game-os .cg-dapp-fullwidth { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; }
body.cg-game-os .cg-dapp-section {
  background: var(--gmo-s1); border-radius: 16px; padding: 20px 22px; margin: 0; min-width: 0;
}
body.cg-game-os .cg-dapp-section .cg-dapp-section { background: none; padding: 0; border-radius: 0; }
body.cg-game-os .cg-section-heading-bar {
  border-left: 0; padding-left: 0; margin-bottom: 14px;
  font-family: Inter, system-ui, sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.01em;
}
body.cg-game-os .cg-dapp-description-body,
body.cg-game-os .cg-dapp-verdict-body { color: var(--gmo-body); line-height: 1.65; }
body.cg-game-os .cg-dapp-tag { background: var(--gmo-s2); border-radius: 7px; color: var(--gmo-muted); }
body.cg-game-os .cg-dapp-faq-item { background: var(--gmo-s2); border: 0; border-radius: 12px; }

/* ------------------------------------------------------------- side panel */
body.cg-game-os .cg-dapp-info-card,
body.cg-game-os .cg-dapp-side-block,
body.cg-game-os .cg-gos-side-pc,
body.cg-game-os .cg-gos-side-stores .cg-dapp-section {
  background: var(--gmo-s1); border: 0; border-radius: 16px; padding: 18px 20px;
}
body.cg-game-os .cg-dapp-info-card-title { font-family: Inter, system-ui, sans-serif; font-size: 16px; margin-bottom: 12px; }
body.cg-game-os .cg-dapp-info-row { border-bottom-color: var(--gmo-line); padding: 9px 0; }
/* Owner 09-27: every value links to its page. Quiet until hovered. */
body.cg-game-os .cg-dapp-info-val a { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(157, 140, 255, .45); }
body.cg-game-os .cg-dapp-info-val a:hover { color: var(--gmo-accent); border-bottom-color: var(--gmo-accent); }
body.cg-game-os .cg-dapp-info-btn { background: var(--gmo-s2); border-radius: 10px; color: var(--gmo-text); }
body.cg-game-os .cg-dapp-info-btn:hover { background: var(--gmo-s3); }
body.cg-game-os .cg-dapp-rel-row { border-radius: 10px; }
body.cg-game-os .cg-dapp-rel-row:hover { background: var(--gmo-s2); }

/* Available on, moved to the side. */
body.cg-game-os .cg-gos-side-stores .cg-section-heading-bar { font-size: 16px; margin-bottom: 12px; }
body.cg-game-os .cg-gos-side-stores .cg-dapp-stores-row { display: flex; flex-wrap: wrap; gap: 8px; }
body.cg-game-os .cg-dapp-store-btn { background: var(--gmo-s2); border: 0; border-radius: 12px; color: var(--gmo-text); }
body.cg-game-os .cg-dapp-store-btn:hover { background: var(--gmo-s3); }

/* Pros and cons: the split card between About/verdict and the FAQ (owner
   09-27, layout B of artifact XiFNuogL72BSHqB8NbdPt1). Green half, red half,
   the "5:5" medal on the seam. */
body.cg-game-os .cg-gos-pc { background: none; padding: 0; }
body.cg-game-os .cg-gos-pc .screen-reader-text { position: absolute !important; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
body.cg-game-os .cg-gos-pc-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); border-radius: 18px; overflow: hidden; background: var(--gmo-s1); }
body.cg-game-os .cg-gos-pc.is-single .cg-gos-pc-card { grid-template-columns: minmax(0, 1fr); }
body.cg-game-os .cg-gos-pc-side { display: flex; flex-direction: column; gap: 16px; padding: 28px 30px 30px; }
body.cg-game-os .cg-gos-pc-side.is-pros { background: linear-gradient(160deg, color-mix(in srgb, var(--gmo-up) 14%, transparent), transparent 55%); }
body.cg-game-os .cg-gos-pc-side.is-cons { background: linear-gradient(200deg, color-mix(in srgb, var(--gmo-down) 14%, transparent), transparent 55%); }
body.cg-game-os .cg-gos-pc-side.is-pros + .cg-gos-pc-side.is-cons { border-left: 1px solid var(--gmo-line); }
body.cg-game-os .cg-gos-pc-head { display: flex; align-items: center; gap: 12px; }
body.cg-game-os .cg-gos-pc-side.is-pros + .cg-gos-pc-side.is-cons .cg-gos-pc-head { flex-direction: row-reverse; text-align: right; }
body.cg-game-os .cg-gos-pc-head h3 { margin: 0; font-family: Inter, system-ui, sans-serif; font-size: 20px; font-weight: 800; line-height: 1.2; color: var(--gmo-text); }
body.cg-game-os .cg-gos-pc-head small { display: block; font-size: 12.5px; font-weight: 500; color: var(--gmo-faint); }
body.cg-game-os .cg-gos-pc-badge { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 14px; font-size: 26px; color: #ffffff; font-variation-settings: 'FILL' 1; }
body.cg-game-os .cg-gos-pc-side.is-pros .cg-gos-pc-badge { background: var(--gmo-up); box-shadow: 0 8px 24px color-mix(in srgb, var(--gmo-up) 35%, transparent); }
body.cg-game-os .cg-gos-pc-side.is-cons .cg-gos-pc-badge { background: var(--gmo-down); box-shadow: 0 8px 24px color-mix(in srgb, var(--gmo-down) 35%, transparent); }
body.cg-game-os .cg-gos-pc-list { list-style: none; margin: 0; padding: 0; }
body.cg-game-os .cg-gos-pc-item { display: grid; grid-template-columns: 22px 1fr; gap: 10px; margin: 0; padding: 10px 0; border-top: 1px solid var(--gmo-line); font-size: 15px; line-height: 1.55; color: var(--gmo-body); }
body.cg-game-os .cg-gos-pc-item:first-child { border-top: 0; }
body.cg-game-os .cg-gos-pc-item .material-symbols-outlined { font-size: 20px; margin-top: 2px; font-variation-settings: 'FILL' 1; }
body.cg-game-os .cg-gos-pc-item.is-pro .material-symbols-outlined { color: var(--gmo-up); }
/* The site's trimmed icon font has no filled "cancel", so a con is a white
   "close" in a red disc, the same size as the pros' check_circle. */
body.cg-game-os .cg-gos-pc-item.is-con .material-symbols-outlined {
  display: grid; place-items: center; width: 18px; height: 18px; margin: 3px 0 0 1px;
  border-radius: 50%; background: var(--gmo-down); color: var(--gmo-s1); font-size: 14px; font-weight: 700;
}
body.cg-game-os .cg-gos-pc-medal {
  position: absolute; left: 50%; top: 34px; z-index: 2; transform: translateX(-50%);
  display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%;
  background: var(--gmo-grad); color: #ffffff;
  box-shadow: 0 0 0 6px var(--gmo-s1), 0 12px 32px rgba(74, 40, 196, .45);
}
body.cg-game-os .cg-gos-pc-medal-n { font-family: Inter, system-ui, sans-serif; font-size: 22px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }

/* Happening now: only printed while one of the game's events is live. */
body.cg-game-os .cg-gos-live-ev {
  display: flex; flex-direction: column; gap: 6px; padding: 14px 16px; border-radius: 16px; text-decoration: none;
  color: var(--gmo-text);
  background: linear-gradient(120deg, rgba(6, 112, 127, .25), rgba(74, 40, 196, .28) 60%, rgba(123, 47, 192, .24)), var(--gmo-s1);
  border: 1px solid rgba(157, 140, 255, .3);
}
body.cg-game-os .cg-gos-live-ev:hover { border-color: rgba(157, 140, 255, .6); }
body.cg-game-os .cg-gos-live-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gmo-up);
}
body.cg-game-os .cg-gos-live-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--gmo-up); box-shadow: 0 0 0 3px rgba(53, 180, 119, .2); }
body.cg-game-os .cg-gos-live-title { font-size: 15px; line-height: 1.3; }
body.cg-game-os .cg-gos-live-row { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: var(--gmo-muted); }
body.cg-game-os .cg-gos-live-row .material-symbols-outlined { font-size: 15px; }
body.cg-game-os .cg-gos-live-prize { color: var(--gmo-gold); }
body.cg-game-os .cg-gos-live-go { display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; font-size: 12px; font-weight: 700; color: var(--gmo-accent); }
body.cg-game-os .cg-gos-live-go .material-symbols-outlined { font-size: 15px; }

/* -------------------------------------------- gallery (owner 09-27)
   "The video is huge, it should be a gallery there": every item is a 16:9
   tile that opens the viewer; nothing embeds until a tile is opened. */
body.cg-game-os .cg-gos-count { font-size: 12px; font-weight: 600; color: var(--gmo-muted); background: var(--gmo-s2); padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
body.cg-game-os .cg-gos-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
body.cg-game-os .cg-gos-gallery--n1 { grid-template-columns: minmax(0, 1fr); max-width: 520px; }
body.cg-game-os .cg-gos-gallery--n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.cg-game-os .cg-gos-tile {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0;
  border-radius: 12px; overflow: hidden; background: #000; cursor: zoom-in;
}
body.cg-game-os .cg-gos-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
body.cg-game-os .cg-gos-tile:hover img { transform: scale(1.04); }
body.cg-game-os .cg-gos-tile.is-video { cursor: pointer; }
body.cg-game-os .cg-gos-tile-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; border-radius: 50%;
  background: var(--gmo-grad); display: grid; place-items: center; color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}
body.cg-game-os .cg-gos-tile-play .material-symbols-outlined { font-size: 30px; }
body.cg-game-os .cg-gos-tile-more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0, 0, 0, .6); color: #fff; font-weight: 700; font-size: 15px; }

/* ---------------------------- description + verdict, 50/50 (owner 09-27)
   Both columns cut to one height under a fade; ONE Read more in the middle
   opens both. game-os.js adds .is-whole when neither column is cut. */
body.cg-game-os .cg-gos-about-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
body.cg-game-os .cg-gos-about.has-verdict .cg-gos-about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.cg-game-os .cg-gos-about-col { min-width: 0; }
body.cg-game-os .cg-gos-about.has-verdict .cg-gos-about-col + .cg-gos-about-col { border-left: 1px solid var(--gmo-line); padding-left: 28px; }
body.cg-game-os .cg-gos-clamp { position: relative; max-height: 17em; overflow: hidden; }
body.cg-game-os .cg-gos-clamp::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6em; pointer-events: none;
  background: linear-gradient(180deg, rgba(33, 33, 33, 0) 0%, var(--gmo-s1) 92%);
}
body:not([data-theme="dark"]).cg-game-os .cg-gos-clamp::after { background: linear-gradient(180deg, rgba(244, 244, 246, 0) 0%, var(--gmo-s1) 92%); }
body.cg-game-os .cg-gos-about.is-open .cg-gos-clamp,
body.cg-game-os .cg-gos-about.is-whole .cg-gos-clamp { max-height: none; overflow: visible; }
body.cg-game-os .cg-gos-about.is-open .cg-gos-clamp::after,
body.cg-game-os .cg-gos-about.is-whole .cg-gos-clamp::after,
body.cg-game-os .cg-gos-about.is-whole .cg-gos-about-foot { display: none; }
body.cg-game-os .cg-gos-about .cg-dapp-description-body h2,
body.cg-game-os .cg-gos-about .cg-dapp-description-body h3 { font-size: 15px; margin: 14px 0 6px; }
body.cg-game-os .cg-gos-about .cg-dapp-description-body > :first-child { margin-top: 0; }
body.cg-game-os .cg-gos-about .cg-dapp-verdict-note { font-size: 12px; color: var(--gmo-faint); }
body.cg-game-os .cg-gos-about-foot { display: flex; justify-content: center; margin-top: 12px; }
body.cg-game-os .cg-gos-more {
  height: 38px; padding: 0 16px 0 12px; border: 1px solid var(--gmo-line); border-radius: 999px; cursor: pointer;
  background: var(--gmo-s2); color: var(--gmo-text); display: inline-flex; align-items: center; gap: 4px;
  font: 600 13px/1 Inter, system-ui, sans-serif;
}
body.cg-game-os .cg-gos-more:hover { background: var(--gmo-s3); }
body.cg-game-os .cg-gos-more .material-symbols-outlined { font-size: 20px; transition: transform .15s; }
body.cg-game-os .cg-gos-about.is-open .cg-gos-more .material-symbols-outlined { transform: rotate(180deg); }

/* Events: two (or every live one), then "Load more events", 5 a click (owner
   09-27). The wrapper is layout-neutral so an opened event sits in the list's
   own flex column like the others. */
body.cg-game-os .cg-gos-ev-more { display: contents; }
body.cg-game-os .cg-gos-ev-more[hidden] { display: none; }
body.cg-game-os .cg-gos-ev-load {
  display: flex; align-items: center; justify-content: center; gap: 4px; margin: 14px auto 0;
  height: 38px; padding: 0 16px 0 12px; border: 1px solid var(--gmo-line); border-radius: 999px; cursor: pointer;
  background: var(--gmo-s2); color: var(--gmo-text); font: 600 13px/1 Inter, system-ui, sans-serif;
}
body.cg-game-os .cg-gos-ev-load:hover { background: var(--gmo-s3); }
body.cg-game-os .cg-gos-ev-load .material-symbols-outlined { font-size: 20px; }

/* ------------------------------------ token at a glance (owner 09-27) */
body.cg-game-os .cg-gos-tok { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
body.cg-game-os .cg-gos-tok-perf { display: flex; flex-wrap: wrap; gap: 6px; }
body.cg-game-os .cg-gos-tok-perf span { font-size: 12px; font-weight: 700; padding: 4px 9px; border-radius: 999px; font-variant-numeric: tabular-nums; }
body.cg-game-os .cg-gos-tok-perf .is-up { color: var(--gmo-up); background: rgba(53, 180, 119, .13); }
body.cg-game-os .cg-gos-tok-perf .is-down { color: var(--gmo-down); background: rgba(214, 90, 82, .13); }
body.cg-game-os .cg-gos-tok-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
body.cg-game-os .cg-gos-tok-facts > div { background: var(--gmo-s2); border-radius: 12px; padding: 10px 12px; min-width: 0; }
body.cg-game-os .cg-gos-tok-facts small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gmo-muted); }
body.cg-game-os .cg-gos-tok-facts b { display: block; font-size: 16px; margin-top: 2px; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
body.cg-game-os .cg-gos-tok-facts em { display: block; font-style: normal; font-size: 11px; color: var(--gmo-faint); }
body.cg-game-os .cg-gos-tok-sub { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gmo-muted); margin-bottom: 8px; }
body.cg-game-os .cg-gos-tok-exlist { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
body.cg-game-os .cg-gos-tok-exlist > a,
body.cg-game-os .cg-gos-tok-exrow { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 12px; background: var(--gmo-s2); color: var(--gmo-text); text-decoration: none; }
body.cg-game-os .cg-gos-tok-exlist > a:hover { background: var(--gmo-s3); }
body.cg-game-os .cg-gos-tok-exlist i { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; display: grid; place-items: center; font-style: normal; font-weight: 800; background: var(--gmo-soft); color: var(--gmo-accent); }
body.cg-game-os .cg-gos-tok-exlist b { display: block; font-size: 13px; }
body.cg-game-os .cg-gos-tok-exlist small { display: block; font-size: 11px; color: var(--gmo-muted); }

/* ------------------------------------------------------------- the rest */
body.cg-game-os .cg-event-card,
body.cg-game-os .cg-news-card,
body.cg-game-os .cg-community-card,
body.cg-game-os .cg-investor-card,
body.cg-game-os .cg-guild-card { background: var(--gmo-s2); border-color: transparent; border-radius: 14px; }

/* ------------------------------------------------------------------ phone */
@media (max-width: 767px) {
  body.cg-game-os .cg-hero.cg-hero-game { margin: 12px 12px 0; min-height: 0; }
  body.cg-game-os .cg-hero-game .cg-hero-overlay {
    background: linear-gradient(0deg, rgba(25, 25, 25, .96) 0%, rgba(25, 25, 25, .85) 55%, rgba(25, 25, 25, .25) 100%);
  }
  body.cg-game-os .cg-hero-game .cg-hero-content { padding: 90px 16px 16px; }
  body.cg-game-os .cg-hero-game-logo { width: 72px; height: 72px; border-radius: 16px; }
  body.cg-game-os .cg-hero-title { font-size: 32px; }
  body.cg-game-os .cg-quick-stats-bar { margin: 12px 12px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.cg-game-os .cg-quick-stats-bar > div { border-bottom: 1px solid var(--gmo-line); padding: 11px 14px; }
  body.cg-game-os .cg-quick-stats-bar > div:nth-child(2n) { border-right: 0; }
  body.cg-game-os .cg-tab-nav { margin: 4px 12px 0; }
  body.cg-game-os .cg-content-area { padding: 12px 12px 32px; }
  body.cg-game-os .cg-dapp-section { padding: 16px; }
  body.cg-game-os .cg-gos-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.cg-game-os .cg-gos-gallery--n1 { grid-template-columns: minmax(0, 1fr); }
  body.cg-game-os .cg-gos-about.has-verdict .cg-gos-about-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  body.cg-game-os .cg-gos-about.has-verdict .cg-gos-about-col + .cg-gos-about-col { border-left: 0; padding-left: 0; border-top: 1px solid var(--gmo-line); padding-top: 16px; }
  body.cg-game-os .cg-gos-clamp { max-height: 13em; }
  /* The split card stacks: pros, the medal, cons. */
  body.cg-game-os .cg-gos-pc { padding: 0; }
  body.cg-game-os .cg-gos-pc-card { display: flex; flex-direction: column; }
  body.cg-game-os .cg-gos-pc-side { padding: 20px 18px; }
  body.cg-game-os .cg-gos-pc-medal { position: static; transform: none; order: 2; margin: 0 auto; width: 64px; height: 64px; box-shadow: 0 12px 32px rgba(74, 40, 196, .45); }
  body.cg-game-os .cg-gos-pc-side.is-pros { order: 1; }
  body.cg-game-os .cg-gos-pc-side.is-cons { order: 3; }
  body.cg-game-os .cg-gos-pc-side.is-pros + .cg-gos-pc-side.is-cons { border-left: 0; }
  body.cg-game-os .cg-gos-pc-side.is-pros + .cg-gos-pc-side.is-cons .cg-gos-pc-head { flex-direction: row; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  body.cg-game-os .cg-btn-play-now,
  body.cg-game-os .cg-gos-more .material-symbols-outlined { transition: none; }
}
