/* ============================================================
   glamsite — "GLAM." premium glamour dark/pink editorial theme
   Playfair Display + DM Sans · pink #e8198a · gold #c4963a
   ============================================================ */

:root {
  --bg: #07050a;
  --paper: #f2ece8;
  --paper-dim: rgba(242, 236, 232, 0.42);
  --paper-mute: rgba(242, 236, 232, 0.28);
  --paper-soft: rgba(242, 236, 232, 0.6);
  --pink: #e8198a;
  --pink-bright: #f040a8;
  --gold: #c4963a;
  --plum: #7d3a6e;
  --panel: rgba(13, 10, 18, 0.5);
  --panel-strong: rgba(13, 10, 18, 0.8);
  --line: rgba(232, 25, 138, 0.1);
  --line-2: rgba(232, 25, 138, 0.18);
  --line-3: rgba(232, 25, 138, 0.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1480px;
  --pad: 38px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.gs-body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.gs-body a {
  color: inherit;
  text-decoration: none;
}

.gs-body img {
  display: block;
  max-width: 100%;
}

.gs-body ::selection {
  background: rgba(232, 25, 138, 0.32);
}

.gs-serif {
  font-family: var(--serif);
}

.gs-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.gs-page main {
  flex: 1;
}

.gs-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

@keyframes gs-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================ promo strip ============================ */
.gs-promo {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(232, 25, 138, 0.07), transparent 55%);
}

.gs-promo-row {
  display: flex;
  gap: 26px;
  align-items: center;
  height: 38px;
  font-size: 12px;
  letter-spacing: 0.04em;
  overflow-x: auto;
  scrollbar-width: none;
  text-transform: uppercase;
}

.gs-promo-row::-webkit-scrollbar { display: none; }

.gs-promo-row a {
  white-space: nowrap;
  color: var(--paper-dim);
  transition: color 0.2s;
}

.gs-promo-row a:hover { color: var(--pink); }

/* ============================ header ============================ */
.gs-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 5, 10, 0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.gs-top-row {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 74px;
}

.gs-brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-shrink: 0;
}

.gs-mark {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.gs-mark .dot { color: var(--pink); }

.gs-brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.gs-search {
  flex: 1;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.gs-search input {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-3);
  background: var(--panel-strong);
  color: var(--paper);
  padding: 0 48px 0 20px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.gs-search input::placeholder { color: var(--paper-mute); }
.gs-search input:focus { border-color: rgba(232, 25, 138, 0.5); }

.gs-search button {
  position: absolute;
  right: 5px;
  top: 4px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.gs-search button svg { width: 15px; height: 15px; }

.gs-top-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gs-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 25, 138, 0.2);
  background: transparent;
  color: var(--paper-soft);
  display: grid;
  place-items: center;
}

.gs-icon-btn svg { width: 18px; height: 18px; }

.gs-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--plum), var(--pink));
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 25, 138, 0.4);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

/* nav */
.gs-main {
  border-top: 1px solid var(--line);
}

.gs-nav-row {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gs-nav-row::-webkit-scrollbar { display: none; }

.gs-nav-row a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--paper-soft);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.gs-nav-row a:hover { color: var(--paper); }
.gs-nav-row a.active { color: var(--pink); font-weight: 700; }

/* ============================ category chips ============================ */
.gs-chips {
  display: flex;
  gap: 9px;
  align-items: center;
  overflow-x: auto;
  padding: 22px 0 8px;
  scrollbar-width: none;
}

.gs-chips::-webkit-scrollbar { display: none; }

.gs-chip {
  white-space: nowrap;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  transition: 0.2s;
}

.gs-chip:hover { border-color: rgba(232, 25, 138, 0.5); color: var(--paper); }

.gs-chip.on {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--bg);
  font-weight: 700;
}

/* ============================ hero ============================ */
.gs-hero {
  position: relative;
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(232, 25, 138, 0.15);
  box-shadow: 0 32px 72px -20px rgba(0, 0, 0, 0.9);
}

.gs-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(177deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px);
}

.gs-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 5, 10, 0.94) 0%, rgba(7, 5, 10, 0.55) 44%, rgba(7, 5, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 5, 10, 0.9), transparent 55%);
}

.gs-hero-inner {
  position: relative;
  z-index: 2;
  padding: 56px 60px;
  max-width: 660px;
}

.gs-hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.gs-pill-gold {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196, 150, 58, 0.45);
  padding: 5px 14px;
  border-radius: 999px;
}

.gs-hero-cat {
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.gs-hero-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.gs-hero-desc {
  font-size: 16px;
  color: rgba(242, 236, 232, 0.7);
  max-width: 500px;
  margin-bottom: 26px;
  line-height: 1.65;
}

.gs-hero-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  color: var(--paper-dim);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gs-tagbox {
  border: 1px solid rgba(242, 236, 232, 0.2);
  border-radius: 6px;
  padding: 3px 9px;
  letter-spacing: 0.06em;
}

.gs-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.gs-btn-pink {
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 15px 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--pink);
  color: #fff;
  transition: background 0.2s;
}

.gs-btn-pink:hover { background: var(--pink-bright); }

.gs-btn-ghost {
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  padding: 15px 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(242, 236, 232, 0.08);
  color: var(--paper);
  border: 1px solid rgba(242, 236, 232, 0.18);
  transition: 0.2s;
}

.gs-btn-ghost:hover { border-color: rgba(232, 25, 138, 0.5); color: var(--pink); }

/* ============================ sections ============================ */
.gs-section { margin-top: 56px; }
.gs-section--last { padding-bottom: 90px; }

.gs-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.gs-sec-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gs-sec-title h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}

.gs-sec-note {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.gs-spark { font-size: 15px; color: var(--pink); line-height: 1; }
.gs-spark.gold { color: var(--gold); font-size: 16px; }

.gs-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  animation: gs-pulse 2s infinite;
  flex-shrink: 0;
}

.gs-see-all {
  font-size: 13px;
  color: var(--paper-dim);
  display: flex;
  gap: 5px;
  align-items: center;
  white-space: nowrap;
  transition: color 0.2s;
}

.gs-see-all:hover { color: var(--pink); }

/* ============================ grids & rails ============================ */
.gs-grid {
  display: grid;
  gap: 22px 16px;
}

.gs-grid.g6 { grid-template-columns: repeat(6, 1fr); }
.gs-grid.g5 { grid-template-columns: repeat(5, 1fr); }

.gs-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 25, 138, 0.25) transparent;
}

.gs-rail > .gs-card { width: 258px; }

/* ============================ card ============================ */
.gs-card { display: flex; flex-direction: column; gap: 8px; }
.gs-card-link { display: flex; flex-direction: column; gap: 8px; }

.gs-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  overflow: hidden;
  transition: transform 0.25s;
}

.gs-card-link:hover .gs-thumb { transform: translateY(-2px); }

.gs-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background: repeating-linear-gradient(177deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px);
  pointer-events: none;
  z-index: 1;
}

.gs-badge-dur {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.72);
  color: var(--paper);
  padding: 2px 6px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}

.gs-badge-hd {
  position: absolute;
  left: 7px;
  bottom: 7px;
  z-index: 2;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--pink);
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
}

.gs-card-title {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.32;
  color: var(--paper);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gs-card-meta,
.gs-side-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--paper-dim);
}

.gs-card-meta .chan,
.gs-side-meta .chan,
.gs-rank-meta .chan { color: var(--pink); font-weight: 500; }

.gs-dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--paper-mute);
  display: inline-block;
}

/* g5/g6 cards slightly larger title on listing grids */
.gs-grid.g5 .gs-card-title { font-size: 13.5px; }

/* ============================ ranked list ============================ */
.gs-ranked {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 44px;
}

.gs-rank-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 25, 138, 0.08);
  transition: 0.2s;
}

.gs-rank-item:hover { border-color: rgba(232, 25, 138, 0.2); }

.gs-rank-no {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(196, 150, 58, 0.45);
  width: 50px;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.gs-rank-thumb {
  position: relative;
  width: 128px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.gs-rank-info { min-width: 0; flex: 1; }

.gs-rank-title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--paper);
  margin-bottom: 5px;
}

.gs-rank-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--paper-dim);
}

/* ============================ collections ============================ */
.gs-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gs-collection {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: block;
  border: 1px solid rgba(232, 25, 138, 0.14);
  transition: 0.3s;
}

.gs-collection:hover { border-color: rgba(232, 25, 138, 0.35); }

.gs-collection-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 5, 10, 0.92), rgba(7, 5, 10, 0.08) 65%);
}

.gs-collection-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  z-index: 2;
}

.gs-collection-count {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}

.gs-collection-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--paper);
}

/* ============================ archive head ============================ */
.gs-arc-head {
  padding: 44px 0 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.gs-arc-kicker {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.gs-arc-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.06;
  margin-bottom: 12px;
}

.gs-arc-count {
  font-size: 14px;
  color: var(--paper-dim);
  padding-bottom: 22px;
}

.gs-arc-count b { color: var(--paper); }

.gs-intro {
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

/* ============================ filter / sort ============================ */
.gs-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gs-sort-label {
  font-size: 12.5px;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
}

.gs-sort-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.gs-sort-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--paper-soft);
  background: var(--panel-strong);
  border: 1px solid var(--line-3);
  border-radius: 999px;
  padding: 9px 18px;
  transition: 0.2s;
}

.gs-sort-pill:hover { border-color: rgba(232, 25, 138, 0.5); color: var(--paper); }
.gs-sort-pill.on { background: var(--paper); color: var(--bg); border-color: var(--paper); font-weight: 700; }

.gs-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--paper-dim);
  font-size: 15px;
}

/* ============================ pager (Pagy series_nav) ============================ */
.gs-pager { margin: 54px 0 12px; }

.gs-pager nav.pagy.series-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gs-pager a {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--paper-soft);
  font-size: 14px;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: 0.2s;
  font-variant-numeric: tabular-nums;
}

.gs-pager a:hover { border-color: rgba(232, 25, 138, 0.45); color: var(--paper); }

.gs-pager a[role="separator"] {
  border-color: transparent;
  background: transparent;
}

.gs-pager a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.45;
}

.gs-pager a[aria-current="page"] {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
  font-weight: 700;
}

/* ============================ watch page ============================ */
.gs-watch { padding-top: 30px; padding-bottom: 80px; }

.gs-watch-grid {
  display: grid;
  grid-template-columns: 1fr 388px;
  gap: 36px;
  align-items: start;
}

.gs-main-col { min-width: 0; }

.gs-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232, 25, 138, 0.15);
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.85);
  background: #000;
}

.gs-player-video { width: 100%; height: 100%; display: block; object-fit: contain; background: #000; }

.gs-player-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper-dim);
  font-size: 14px;
}

.gs-cta-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  width: 100%;
  background: var(--pink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  transition: background 0.2s;
}

.gs-cta-full:hover { background: var(--pink-bright); }

.gs-v-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.12;
  margin: 22px 0 14px;
}

.gs-v-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.gs-v-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--paper-dim);
  flex-wrap: wrap;
}

.gs-v-cat .gs-cat-link { color: var(--pink); font-weight: 600; }
.gs-cat-sep { color: var(--paper-mute); }

.gs-v-actions { display: flex; gap: 9px; align-items: center; }

.gs-act {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--paper-soft);
  border: 1px solid var(--line-2);
  background: var(--panel);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}

.gs-act:hover { border-color: rgba(232, 25, 138, 0.4); color: var(--paper); }

/* channel */
.gs-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.gs-channel-ava {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--plum), var(--pink));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.gs-channel-info { flex: 1; min-width: 0; }
.gs-channel-info h4 { font-size: 15.5px; font-weight: 700; color: var(--paper); margin-bottom: 3px; }
.gs-channel-info span { font-size: 12.5px; color: var(--paper-dim); }
.gs-channel-link { color: var(--paper-dim); }
.gs-channel-link:hover { color: var(--pink); }

.gs-sub {
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--bg);
  transition: 0.2s;
}

.gs-sub:hover { background: var(--pink); color: #fff; }

/* tags */
.gs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.gs-tag {
  font-size: 12.5px;
  color: var(--paper-soft);
  background: var(--panel-strong);
  border: 1px solid var(--line-2);
  padding: 6px 14px;
  border-radius: 999px;
  transition: 0.2s;
}

.gs-tag:hover { border-color: rgba(232, 25, 138, 0.5); color: var(--paper); }
.gs-tag--category { color: var(--pink); }

/* description */
.gs-desc {
  font-size: 14.5px;
  color: var(--paper-soft);
  line-height: 1.78;
  padding-top: 18px;
}

.gs-desc a { color: var(--pink); }
.gs-desc a:hover { text-decoration: underline; }
.gs-desc p + p { margin-top: 0.9rem; }

/* sidebar */
.gs-side-col { min-width: 0; }

.gs-ad { margin-bottom: 24px; }
.gs-ad-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 8px;
}
.gs-ad-slot {
  display: flex;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.gs-side-head-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.gs-side-head { font-weight: 700; font-size: 20px; }

.gs-side-note {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.gs-side-list { display: flex; flex-direction: column; gap: 12px; }

.gs-side-item {
  display: flex;
  gap: 12px;
  padding: 6px;
  margin: -6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.gs-side-item:hover { background: rgba(13, 10, 18, 0.6); }

.gs-side-thumb {
  position: relative;
  width: 152px;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}

.gs-side-info { min-width: 0; flex: 1; padding-top: 2px; }

.gs-side-info h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--paper);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

/* ============================ footer ============================ */
.gs-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  padding: 52px 0 64px;
  margin-top: 80px;
  background: linear-gradient(0deg, rgba(13, 10, 18, 0.45), transparent);
}

.gs-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.gs-tag-cloud__pill {
  font-size: 12.5px;
  color: var(--paper-soft);
  background: var(--panel-strong);
  border: 1px solid var(--line-2);
  padding: 6px 14px;
  border-radius: 999px;
  transition: 0.2s;
}

.gs-tag-cloud__pill:hover { border-color: rgba(232, 25, 138, 0.5); color: var(--pink); }

.gs-foot-intro {
  color: var(--paper-dim);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 2rem;
}

.gs-foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.gs-foot-brand .gs-mark { font-size: 26px; margin-bottom: 14px; display: inline-block; }
.gs-foot-brand p {
  font-size: 13.5px;
  color: var(--paper-dim);
  max-width: 300px;
  line-height: 1.72;
}

.gs-foot-col h4 {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.gs-foot-col a {
  display: block;
  font-size: 13.5px;
  color: var(--paper-dim);
  margin-bottom: 11px;
  transition: color 0.2s;
}

.gs-foot-col a:hover { color: var(--pink); }

.gs-foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12px;
  color: var(--paper-mute);
}

/* ============================ glow palettes (g1–g10) ============================ */
.gs-glow-g1 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(232, 25, 138, 0.72) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(61, 10, 40, 0.92) 0%, transparent 55%), linear-gradient(160deg, #1a0520 0%, #07050a 100%); }
.gs-glow-g2 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(196, 150, 58, 0.72) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(92, 46, 15, 0.92) 0%, transparent 55%), linear-gradient(160deg, #2a1a08 0%, #07050a 100%); }
.gs-glow-g3 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(125, 58, 110, 0.82) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(42, 10, 61, 0.92) 0%, transparent 55%), linear-gradient(160deg, #1a0530 0%, #07050a 100%); }
.gs-glow-g4 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(200, 80, 100, 0.78) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(80, 20, 35, 0.92) 0%, transparent 55%), linear-gradient(160deg, #2a0815 0%, #07050a 100%); }
.gs-glow-g5 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(196, 40, 40, 0.72) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(80, 10, 10, 0.92) 0%, transparent 55%), linear-gradient(160deg, #1e0505 0%, #07050a 100%); }
.gs-glow-g6 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(220, 190, 130, 0.62) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(80, 60, 20, 0.82) 0%, transparent 55%), linear-gradient(160deg, #1a1505 0%, #07050a 100%); }
.gs-glow-g7 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(240, 64, 168, 0.72) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(100, 10, 80, 0.92) 0%, transparent 55%), linear-gradient(160deg, #220040 0%, #07050a 100%); }
.gs-glow-g8 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(30, 140, 140, 0.68) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(10, 50, 60, 0.92) 0%, transparent 55%), linear-gradient(160deg, #051820 0%, #07050a 100%); }
.gs-glow-g9 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(220, 100, 70, 0.78) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(80, 25, 15, 0.92) 0%, transparent 55%), linear-gradient(160deg, #200c05 0%, #07050a 100%); }
.gs-glow-g10 { background: radial-gradient(ellipse 130% 90% at 72% 8%, rgba(160, 170, 200, 0.62) 0%, transparent 52%), radial-gradient(ellipse 100% 75% at 15% 88%, rgba(40, 45, 70, 0.92) 0%, transparent 55%), linear-gradient(160deg, #0f1020 0%, #07050a 100%); }

/* ============================ responsive ============================ */
@media (max-width: 1200px) {
  .gs-grid.g6 { grid-template-columns: repeat(4, 1fr); }
  .gs-grid.g5 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1080px) {
  .gs-watch-grid { grid-template-columns: 1fr; }
  .gs-side-col { margin-top: 10px; }
  .gs-side-thumb { width: 180px; }
}

@media (max-width: 900px) {
  :root { --pad: 20px; }
  .gs-grid.g6 { grid-template-columns: repeat(3, 1fr); }
  .gs-grid.g5 { grid-template-columns: repeat(3, 1fr); }
  .gs-ranked { grid-template-columns: 1fr; gap: 4px; }
  .gs-collections { grid-template-columns: repeat(2, 1fr); }
  .gs-hero { min-height: 420px; }
  .gs-hero-inner { padding: 40px 32px; }
  .gs-hero-title { font-size: 44px; }
  .gs-arc-title { font-size: 36px; }
  .gs-foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .gs-search { order: 3; flex-basis: 100%; max-width: none; margin: 0; }
  .gs-top-row { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 14px; }
  .gs-brand { margin-right: auto; }
}

@media (max-width: 620px) {
  .gs-grid.g6 { grid-template-columns: repeat(2, 1fr); }
  .gs-grid.g5 { grid-template-columns: repeat(2, 1fr); }
  .gs-collections { grid-template-columns: 1fr; }
  .gs-hero-title { font-size: 34px; }
  .gs-v-title { font-size: 24px; }
  .gs-foot-top { grid-template-columns: 1fr; gap: 24px; }
  .gs-foot-bottom { flex-direction: column; gap: 8px; }
}
