/* ============================================================
   Dark Console Dashboard — homepage theme
   ============================================================ */

:root {
  --bg-0: #0c0e14;
  --bg-1: #12151f;
  --bg-2: #171b28;
  --bg-3: #1d2233;
  --tile: #181c2a;
  --tile-hi: #212739;
  --line: #262b3d;
  --line-soft: #1f2432;
  --text-0: #eef0f7;
  --text-1: #aab0c4;
  --text-2: #767c95;
  --accent: #6a8dff;
  --accent-2: #a267ff;
  --accent-glow: rgba(106, 141, 255, 0.45);
  --accent-glow-2: rgba(162, 103, 255, 0.35);
  --success: #35d0a3;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-tile: 0 6px 18px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  --shadow-tile-hover: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--accent-glow);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text-0);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background-image:
    radial-gradient(circle at 15% 0%, rgba(106, 141, 255, 0.08), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(162, 103, 255, 0.07), transparent 45%);
  padding-bottom: 40px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; }

[v-cloak] > * { }

/* ---------------- Top Bar ---------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text-0);
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px var(--accent-glow);
}

.topbar-search-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s, color .2s, border-color .2s;
}
.topbar-search-btn:active,
.topbar-search-btn:hover {
  color: var(--text-0);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ---------------- Category Tabs ---------------- */
.cat-tabs {
  position: sticky;
  top: 65px;
  z-index: 40;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 0;
}

.cat-tabs-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px;
  scrollbar-width: none;
}
.cat-tabs-inner::-webkit-scrollbar { display: none; }

.cat-tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text-1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .2s;
}
.cat-tab.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ---------------- Search Bar ---------------- */
.search-bar-wrap {
  position: sticky;
  top: 65px;
  z-index: 40;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line-soft);
}
.search-input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text-0);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.search-cancel {
  border: none;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 4px;
}

/* ---------------- Loading ---------------- */
.loading-full {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.loading-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px var(--accent-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Section header ---------------- */
.sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px 12px;
}
.sec-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0.2px;
}
.sec-more {
  border: none;
  background: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}
.sec-cnt {
  font-size: 12px;
  color: var(--text-2);
  background: var(--tile);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ============================================================
   Continue Playing — hero dashboard tile
   ============================================================ */
.dash-hero-sec { padding: 14px 16px 4px; }

.dash-hero {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 210px;
  background: var(--tile);
  box-shadow: var(--shadow-tile);
  border: 1px solid var(--line);
}
.dash-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.dash-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,14,20,0.05) 0%, rgba(12,14,20,0.55) 55%, rgba(12,14,20,0.95) 100%);
}
.dash-hero-body {
  position: relative;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 210px;
  justify-content: flex-end;
}
.dash-hero-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 0 16px var(--accent-glow);
  margin-bottom: 4px;
}
.dash-hero-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.dash-hero-desc {
  font-size: 13px;
  color: var(--text-1);
  margin: 0;
  max-width: 90%;
}
.dash-hero-cta {
  margin-top: 8px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   Library shelf — horizontal scroll tiles
   ============================================================ */
.shelf-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scrollbar-width: none;
}
.shelf-row::-webkit-scrollbar { display: none; }

.shelf-tile {
  position: relative;
  flex: 0 0 128px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s ease;
}
.shelf-tile:active,
.shelf-tile:hover { transform: translateY(-4px); }

.shelf-tile-img {
  width: 128px;
  height: 128px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--tile);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-tile);
  position: relative;
}
.shelf-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.shelf-tile:hover .shelf-tile-img,
.shelf-tile:active .shelf-tile-img {
  border-color: var(--accent);
  box-shadow: var(--shadow-tile-hover);
}
.shelf-tile-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  pointer-events: none;
}
.shelf-tile-nm {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Widget dashboard block — spotlight picks
   ============================================================ */
.widget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
}
.widget-card {
  background: linear-gradient(160deg, var(--tile-hi), var(--tile));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-tile);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget-thumb {
  width: 100%;
  aspect-ratio: 1.4/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-2);
}
.widget-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-info { display: flex; flex-direction: column; gap: 5px; }
.widget-nm {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-0);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-tag {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.widget-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--bg-2);
  overflow: hidden;
}
.widget-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 8px var(--accent-glow);
}

.widget-list {
  margin: 12px 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--tile);
  overflow: hidden;
}
.widget-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
}
.widget-row:last-child { border-bottom: none; }
.widget-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  flex: 0 0 auto;
}
.widget-row-nm {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-0);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-row-cat {
  font-size: 11px;
  color: var(--text-2);
}

/* ============================================================
   Recently Added — thin horizontal strip
   ============================================================ */
.strip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scrollbar-width: none;
}
.strip-row::-webkit-scrollbar { display: none; }

.strip-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  box-shadow: var(--shadow-tile);
}
.strip-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--bg-2);
}
.strip-img img { width: 100%; height: 100%; object-fit: cover; }
.strip-meta { display: flex; flex-direction: column; gap: 2px; }
.strip-nm {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-0);
  margin: 0;
  white-space: nowrap;
}
.strip-badge {
  font-size: 10px;
  color: var(--accent-2);
  font-weight: 700;
}

/* ============================================================
   Channel Grid — dense uniform dashboard tiles
   ============================================================ */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 16px;
}
.channel-card {
  position: relative;
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  padding-bottom: 6px;
  transition: box-shadow .2s, border-color .2s;
}
.channel-card:hover,
.channel-card:active {
  border-color: var(--accent);
  box-shadow: var(--shadow-tile-hover);
}
.channel-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-2);
  overflow: hidden;
}
.channel-img img { width: 100%; height: 100%; object-fit: cover; }
.channel-idx {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: rgba(12,14,20,0.65);
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: 0.4px;
}
.channel-nm {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-1);
  padding: 6px 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Icon rail — stacked rows with left accent (Action / Sports)
   ============================================================ */
.rail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}
.rail-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 14px 10px 16px;
  box-shadow: var(--shadow-tile);
  overflow: hidden;
}
.rail-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px var(--accent-glow);
}
.rail-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--bg-2);
}
.rail-img img { width: 100%; height: 100%; object-fit: cover; }
.rail-body { flex: 1; min-width: 0; }
.rail-nm {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-0);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rail-desc {
  font-size: 11.5px;
  color: var(--text-2);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rail-arrow {
  color: var(--text-2);
  font-size: 18px;
  flex: 0 0 auto;
}

/* ============================================================
   Dashboard tile grid 2-col (Puzzle / Adventure)
   ============================================================ */
.dtile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
}
.dtile {
  background: linear-gradient(160deg, var(--tile-hi), var(--tile));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  transition: box-shadow .2s, border-color .2s;
}
.dtile:hover,
.dtile:active {
  border-color: var(--accent);
  box-shadow: var(--shadow-tile-hover);
}
.dtile-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-2);
  overflow: hidden;
}
.dtile-img img { width: 100%; height: 100%; object-fit: cover; }
.dtile-nm {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-0);
  margin: 0;
  padding: 8px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Rounded widget row (Kids / Girl)
   ============================================================ */
.kids-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scrollbar-width: none;
}
.kids-row::-webkit-scrollbar { display: none; }

.kids-card {
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kids-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tile);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-tile);
}
.kids-img img { width: 100%; height: 100%; object-fit: cover; }
.kids-card:hover .kids-img,
.kids-card:active .kids-img {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px var(--accent-glow-2);
}
.kids-nm {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 96px;
}

/* ============================================================
   Racing — hero dashboard tile
   ============================================================ */
.racing-sec { padding-bottom: 4px; }

.racing-hero {
  position: relative;
  display: block;
  margin: 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 160px;
  background: var(--tile);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-tile);
}
.racing-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.racing-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,14,20,0.9) 15%, rgba(12,14,20,0.15) 80%);
}
.racing-hero-body {
  position: relative;
  z-index: 2;
  padding: 18px;
  max-width: 75%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 160px;
  justify-content: center;
}
.racing-hero-badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.racing-hero-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 2px;
}
.racing-hero-desc {
  font-size: 12px;
  color: var(--text-1);
  margin: 0;
}

/* ============================================================
   All Games / dense dashboard grid
   ============================================================ */
.all-sec { padding-bottom: 8px; }
.all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 16px;
}
.agcard {
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.agcard:hover,
.agcard:active {
  border-color: var(--accent);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-2px);
}
.agcard-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-2);
  overflow: hidden;
}
.agcard-img img { width: 100%; height: 100%; object-fit: cover; }
.agcard-nm {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-1);
  padding: 7px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.more-wrap {
  display: flex;
  justify-content: center;
  padding: 18px 16px 6px;
}
.more-btn {
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text-0);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow-tile);
  transition: box-shadow .2s, border-color .2s;
}
.more-btn:hover,
.more-btn:active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ============================================================
   Filter / Search header + grid
   ============================================================ */
.filter-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 10px;
  position: sticky;
  top: 65px;
  z-index: 30;
  background: rgba(12, 14, 20, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.filter-back {
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text-0);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 10px;
}
.filter-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-0);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-cnt {
  font-size: 12px;
  color: var(--text-2);
  background: var(--tile);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 999px;
}

.grid-sec { padding: 14px 16px 6px; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gcard {
  background: var(--tile);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.gcard:hover,
.gcard:active {
  border-color: var(--accent);
  box-shadow: var(--shadow-tile-hover);
  transform: translateY(-2px);
}
.gcard-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-2);
  overflow: hidden;
}
.gcard-img img { width: 100%; height: 100%; object-fit: cover; }
.gcard-nm {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
  padding: 7px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.empty-msg {
  text-align: center;
  color: var(--text-2);
  padding: 60px 0;
  font-size: 14px;
}
.loadmore-wrap {
  display: flex;
  justify-content: center;
  padding: 18px 0 6px;
}
.loadmore-btn {
  border: 1px solid var(--line);
  background: var(--tile);
  color: var(--text-0);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow-tile);
}
.loadmore-btn:hover,
.loadmore-btn:active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ---------------- Footer ---------------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px 10px;
  color: var(--text-2);
  font-size: 12px;
}
.site-footer a { color: var(--text-1); }
.site-footer a:hover { color: var(--accent); }

/* ---------------- Back to top ---------------- */
.totop-btn {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 4px var(--accent-glow);
  z-index: 45;
}

/* ---------------- Responsive: wider viewports ---------------- */
@media (min-width: 560px) {
  .all-grid,
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .channel-grid { grid-template-columns: repeat(6, 1fr); }
  .widget-grid { grid-template-columns: repeat(4, 1fr); }
  .dtile-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 860px) {
  .all-grid,
  .games-grid { grid-template-columns: repeat(6, 1fr); }
  .dash-hero-title { font-size: 28px; }
}
