     :root {
      color-scheme: dark;
      --bg: #06080a;
      --ink: #f4f7fb;
      --muted: #9aa7b5;
      --line: rgba(213, 226, 240, .14);
      --panel: #0d141a;
      --panel-2: #121c24;
      --native: #63e6d2;
      --crossover: #f5bd61;
      --accent: #86c7ff;
      --ember: #ff7a45;
      --glow: rgba(134, 199, 255, .18);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 16% -12%, rgba(255, 122, 69, .20), transparent 30%),
        radial-gradient(circle at 84% -10%, rgba(99, 230, 210, .16), transparent 32%),
        linear-gradient(180deg, #101820 0%, #071014 38%, var(--bg) 100%);
      color: var(--ink);
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
    }
    header {
      position: relative;
      overflow: hidden;
      padding: 56px 32px 34px;
      background:
        radial-gradient(circle at 50% -40%, rgba(134, 199, 255, .22), transparent 40%),
        linear-gradient(90deg, rgba(255, 122, 69, .12), transparent 26%, rgba(99, 230, 210, .11) 76%, transparent),
        linear-gradient(180deg, rgba(11, 18, 23, .98), rgba(6, 9, 12, .96));
    }
    .wrap { max-width: 1360px; margin: 0 auto; }
    h1 {
      margin: 0 0 12px;
      font-size: clamp(34px, 4.5vw, 68px);
      line-height: 1;
      text-align: center;
      text-wrap: pretty;
      text-shadow: 0 0 34px rgba(134, 199, 255, .24), 0 12px 44px rgba(0, 0, 0, .45);
    }
    .full{
       max-width: 100% !important;
    }
    .note {
      max-width: 820px;
      margin: 0 auto;
      color: #c3ccd6;
      font-size: 14px;
      line-height: 1.6;
      text-align: center;
    }
    .toolbar {
      position: sticky;
      top: 0;
      z-index: 5;
      background:
        radial-gradient(circle at 50% -240%, rgba(134, 199, 255, .22), transparent 44%),
        linear-gradient(90deg, rgba(255, 122, 69, .12), transparent 26%, rgba(99, 230, 210, .11) 76%, transparent),
        linear-gradient(180deg, rgba(6, 9, 12, .96), rgba(6, 9, 12, .90));
      backdrop-filter: blur(16px) saturate(1.2);
      padding: 34px 32px;
    }
    .controls {
      display: grid;
      grid-template-columns: minmax(180px, 1fr) auto auto;
      gap: 10px;
      align-items: center;
      max-width: 1100px;
      padding: 8px;
      border: 1px solid rgba(213, 226, 240, .12);
      border-radius: 8px;
      background: rgba(12, 18, 23, .72);
      box-shadow: 0 18px 50px rgba(0,0,0,.24);
    }
    input, select, button {
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: rgba(8, 13, 18, .92);
      color: var(--ink);
      font: inherit;
      padding: 0 12px;
    }
    input::placeholder { color: #6f7d8a; }
    button { cursor: pointer; }
    button:hover, select:hover, input:focus {
      border-color: rgba(125, 183, 255, .48);
      outline: none;
    }
    button.active {
      background: #10283a;
      color: var(--ink);
      border-color: rgba(134, 199, 255, .38);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.24);
    }
    .platform-buttons { display: flex; gap: 8px; }
    main { padding: 30px 32px 64px; }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
      gap: 20px;
    }
    .game-card {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 366px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent 34%),
        linear-gradient(180deg, rgba(17, 28, 36, .98), rgba(8, 14, 19, .98));
      box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .game-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: radial-gradient(circle at 50% 0%, var(--glow), transparent 46%);
      opacity: 0;
      transition: opacity .18s ease;
    }
    .game-card:hover {
      transform: translateY(-3px);
      border-color: rgba(134, 199, 255, .36);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(134, 199, 255, .08);
    }
    .game-card:hover::before { opacity: 1; }
    .rank {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      min-width: 36px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(5, 8, 11, .86);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border: 1px solid rgba(255,255,255,.12);
    }
    .poster {
      position: relative;
      aspect-ratio: 460 / 215;
      background: #0b1117;
      overflow: hidden;
    }
    .poster::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 62%, rgba(5, 8, 11, .36));
      pointer-events: none;
    }
    .poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.06) contrast(1.02);
      transition: transform .24s ease, filter .24s ease;
    }
    .game-card:hover .poster img {
      transform: scale(1.025);
      filter: saturate(1.12) contrast(1.04);
    }
    .poster-empty {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 14px;
    }
    .body { padding: 16px 17px 17px; display: flex; flex-direction: column; gap: 8px; }
    .topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .platform {
      display: inline-flex;
      align-items: center;
      height: 24px;
      padding: 0 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }
    .platform.native { color: var(--native); background: rgba(45, 212, 191, .13); border: 1px solid rgba(110, 231, 216, .28); }
    .platform.crossover { color: var(--crossover); background: rgba(246, 195, 106, .13); border: 1px solid rgba(246, 195, 106, .28); }
    h2 {
      margin: 2px 0 0;
      font-size: 19px;
      line-height: 1.2;
      word-break: break-word;
      text-wrap: pretty;
    }
    .english {
      min-height: 19px;
      margin: 0;
      color: #9aa7b5;
      font-size: 13px;
      line-height: 1.45;
      word-break: break-word;
    }
    .rating { color: #ffbd55; font-size: 15px; letter-spacing: 0; text-shadow: 0 0 18px rgba(255, 189, 85, .14); }
    .tags { display: flex; flex-wrap: wrap; gap: 6px; min-height: 26px; }
    .tag {
      display: inline-flex;
      align-items: center;
      height: 24px;
      padding: 0 8px;
      border: 1px solid rgba(148, 163, 184, .16);
      border-radius: 999px;
      color: #c7d0da;
      background: rgba(213, 226, 240, .055);
      font-size: 12px;
    }
    .open {
      margin-top: auto;
      width: fit-content;
      color: var(--accent);
      font-size: 14px;
      font-weight: 650;
      text-decoration: none;
    }
    .open_video{
      margin-top: auto;
      width: fit-content;
      font-size: 14px;
      font-weight: 650;
      text-decoration: none;
      margin-left: 10px;
      color: #ffa700;
    }
    .open:hover { color: #b9dcff; }
    .open.disabled { color: var(--muted); }
    .empty-state {
      display: none;
      padding: 60px 0;
      text-align: center;
      color: var(--muted);
    }
    @media (max-width: 820px) {
      header, .toolbar, main { padding-left: 16px; padding-right: 16px; }
      .controls { grid-template-columns: 1fr; }
      .platform-buttons { overflow-x: auto; }
    }