:root {
  --bg: #0b1833;
  --card: #0f224a;
  --tab: #1b3a7a;
  --tab-active: #2d58c6;
  --text: #e9f0ff;
  --muted: #9fb4e7;
  --accent: #6ee7ff;
  --badge: #18b87a;
  --shadow: 0 10px 22px rgba(0, 0, 0, .25);
  --radius: 18px;
}

.gamev8list {
  padding: 32px 18px 56px;
}
.gamev8list .wrap {
  max-width: 1200px;
  margin: auto;
}
.gamev8list h1 {
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.gamev8list .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.gamev8list .tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--tab);
  color: var(--text);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-weight: 600;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.gamev8list .tab:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  border-color: #3a63c9;
}
.gamev8list .tab.active {
  background: var(--tab-active);
}
.gamev8list .tab .count {
  background: #0b1833;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #2f4fa3;
}
.gamev8list .toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gamev8list .search {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 260px;
          flex: 1 1 260px;
  background: #0c1b3a;
  border: 1px solid #294586;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  outline: none;
}
.gamev8list .grid {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.gamev8list .card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf6ff), to(#cfe8ff));
  background: linear-gradient(180deg, #eaf6ff 0%, #cfe8ff 100%);
  border: 1px solid #d6e8ff;
  padding: 16px;
  -webkit-box-shadow: 0 10px 24px rgba(19, 91, 175, 0.15);
          box-shadow: 0 10px 24px rgba(19, 91, 175, 0.15);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  color: #134a99;
}
.gamev8list .card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(90% 90% at 0% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
}
.gamev8list .card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 16px 28px rgba(19, 91, 175, 0.22);
          box-shadow: 0 16px 28px rgba(19, 91, 175, 0.22);
}
.gamev8list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.gamev8list .icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: inset 0 0 0 1px rgba(80, 140, 220, 0.25), 0 6px 14px rgba(0, 90, 200, 0.15);
          box-shadow: inset 0 0 0 1px rgba(80, 140, 220, 0.25), 0 6px 14px rgba(0, 90, 200, 0.15);
}
.gamev8list .title {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15;
  color: #1e60c9;
}
.gamev8list .sub {
  color: #2b7ddf;
  font-size: 13px;
  margin-top: 2px;
}
.gamev8list .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gamev8list .badge {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  border: 1px solid #d8e7ff;
}
.gamev8list .badge.ok {
  background: rgba(24, 184, 122, 0.12);
  border-color: #8be0c1;
  color: #0f9f6a;
}
.gamev8list .gid {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 12px;
  color: #5b88d2;
  opacity: 0.9;
}
.gamev8list .empty {
  opacity: 0.7;
  padding: 32px 10px;
}
.gamev8list .footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}
.gamev8list .meta-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.gamev8list .meta-desc .desc {
  margin: 0;
  color: #1662a8;
  font-size: 13px;
  line-height: 1.4;
}
.gamev8list .btn-play {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #2f6fde;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(47, 111, 222, 0.25);
  -webkit-box-shadow: 0 6px 16px rgba(47, 111, 222, 0.25);
          box-shadow: 0 6px 16px rgba(47, 111, 222, 0.25);
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.gamev8list .btn-play:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 22px rgba(47, 111, 222, 0.28);
          box-shadow: 0 10px 22px rgba(47, 111, 222, 0.28);
}
.gamev8list .btn-play:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 4px 12px rgba(47, 111, 222, 0.25);
          box-shadow: 0 4px 12px rgba(47, 111, 222, 0.25);
}