/* ========== Soft Cinema · 柔雾浅色 + 海军蓝 ========== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap");

:root {
  --gp-ink: #0f2744;
  --gp-ink-soft: #1e3a5f;
  --gp-sky: #2563a8;
  --gp-sky-soft: #e8f0fa;
  --gp-bg: #f5f7fb;
  --gp-bg-alt: #eef2f7;
  --gp-surface: #ffffff;
  --gp-muted: #64748b;
  --gp-line: #e2e8f0;
  --gp-max: 1120px;
  --gp-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --gp-display: "Manrope", "Noto Sans SC", sans-serif;
  --gp-radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--gp-font);
  color: var(--gp-ink);
  background: var(--gp-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.gp-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gp-wrap {
  width: min(100% - 1.75rem, var(--gp-max));
  margin-inline: auto;
}

/* Header */
.gp-top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gp-line);
}

.gp-top__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 66px;
}

.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.gp-brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--gp-ink), var(--gp-sky));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.gp-brand__name {
  font-family: var(--gp-display);
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10.5rem;
}

.gp-nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.gp-nav > a,
.gp-nav__btn {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--gp-ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.25rem 0;
  position: relative;
}

.gp-nav > a.is-active,
.gp-nav > a:hover,
.gp-nav__btn:hover {
  color: var(--gp-sky);
}

.gp-nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gp-sky);
  border-radius: 2px;
}

.gp-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.gp-nav__drop {
  position: relative;
}

.gp-nav__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  box-shadow: 0 16px 36px rgba(15, 39, 68, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 70;
}

.gp-nav__drop:hover .gp-nav__panel,
.gp-nav__drop.is-open .gp-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.gp-nav__panel a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.gp-nav__panel a:hover {
  background: var(--gp-sky-soft);
  color: var(--gp-sky);
}

.gp-search {
  margin-left: auto;
  display: none;
  align-items: center;
  min-width: 200px;
  max-width: 280px;
  flex: 1;
  background: var(--gp-bg);
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  overflow: hidden;
}

.gp-search__ico {
  width: 16px;
  height: 16px;
  margin-left: 14px;
  color: var(--gp-muted);
  flex-shrink: 0;
}

.gp-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.6rem 0.55rem;
  font: inherit;
  min-width: 0;
}

.gp-search button {
  border: 0;
  background: var(--gp-ink);
  color: #fff;
  min-height: 38px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}

.gp-login {
  display: none;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--gp-ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
}

.gp-login:hover {
  background: var(--gp-ink);
  color: #fff;
}

.gp-burger {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gp-line);
  background: var(--gp-surface);
  border-radius: 10px;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.gp-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--gp-ink);
  transition: 0.2s ease;
}

.gp-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gp-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.gp-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.gp-drawer {
  display: none;
  border-top: 1px solid var(--gp-line);
  background: var(--gp-surface);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.gp-drawer.is-open {
  display: block;
  max-height: 80vh;
  overflow: auto;
}

.gp-drawer__inner {
  padding: 1rem 0 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.gp-drawer__inner > a {
  font-weight: 700;
}

.gp-drawer__label {
  margin: 0.35rem 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gp-muted);
  font-weight: 700;
}

.gp-drawer__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.gp-drawer__cats a {
  padding: 0.55rem 0.7rem;
  background: var(--gp-bg);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.gp-drawer__search {
  display: flex;
  gap: 8px;
}

.gp-drawer__search input {
  flex: 1;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.gp-drawer__search button,
.gp-login--block {
  border: 0;
  background: var(--gp-sky);
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}

/* Hero */
.gp-hero {
  position: relative;
  min-height: clamp(380px, 58vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--gp-ink);
  color: #fff;
}

.gp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.gp-hero__mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 39, 68, 0.92) 0%, rgba(15, 39, 68, 0.62) 55%, rgba(37, 99, 168, 0.35) 100%),
    linear-gradient(180deg, transparent 40%, rgba(15, 39, 68, 0.85) 100%);
}

.gp-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2.2rem, 6vw, 3.5rem) 0;
  max-width: 36rem;
  animation: gp-fade-up 0.5s ease both;
}

.gp-hero__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #93c5fd;
}

.gp-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--gp-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.gp-hero__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.gp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.gp-btn:hover {
  transform: translateY(-1px);
}

.gp-btn--primary {
  background: #fff;
  color: var(--gp-ink);
}

.gp-btn--soft {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.gp-btn--soft:hover {
  background: #fff;
  color: var(--gp-ink);
}

@keyframes gp-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Sections / cards */
.gp-block {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.gp-block--alt {
  background: var(--gp-bg-alt);
}

.gp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.gp-section-head__sub {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: var(--gp-sky);
  font-weight: 700;
}

.gp-section-head h2 {
  margin: 0;
  font-family: var(--gp-display);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gp-section-head__more {
  color: var(--gp-sky);
  font-weight: 750;
  font-size: 0.9rem;
  white-space: nowrap;
}

.gp-section-head__more:hover {
  text-decoration: underline;
}

.gp-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gp-cats__item {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0.45rem;
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.15s ease;
}

.gp-cats__item:hover {
  border-color: var(--gp-sky);
  color: var(--gp-sky);
  background: var(--gp-sky-soft);
}

.gp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.85rem;
}

.gp-card {
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gp-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.06);
}

.gp-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--gp-ink);
  overflow: hidden;
}

.gp-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gp-card:hover .gp-card__cover img {
  transform: scale(1.04);
}

.gp-card__score {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.2rem 0.45rem;
  background: rgba(15, 39, 68, 0.88);
  color: #fff;
  border-radius: 6px;
  font-family: var(--gp-display);
  font-weight: 800;
  font-size: 0.75rem;
}

.gp-card__time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 0.18rem 0.4rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}

.gp-card__body {
  padding: 0.85rem 0.9rem 1rem;
}

.gp-card__body h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-card__body h3 a:hover {
  color: var(--gp-sky);
}

.gp-card__desc {
  margin: 0.4rem 0 0;
  color: var(--gp-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: var(--gp-muted);
}

.gp-card__meta a {
  color: var(--gp-sky);
  font-weight: 750;
}

.gp-features {
  display: grid;
  gap: 0.85rem;
}

.gp-features article {
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  padding: 1.2rem 1.1rem;
}

.gp-features h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.gp-features p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer */
.gp-foot {
  margin-top: auto;
  background: var(--gp-ink);
  color: rgba(255, 255, 255, 0.78);
}

.gp-foot__grid {
  display: grid;
  gap: 1.75rem;
  padding: 2.4rem 0 1.8rem;
}

.gp-foot__brand {
  margin: 0 0 0.5rem;
  font-family: var(--gp-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.gp-foot__lead {
  margin: 0;
  max-width: 28rem;
  line-height: 1.65;
  font-size: 0.92rem;
}

.gp-foot h3 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 0.95rem;
}

.gp-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.gp-foot ul a:hover {
  color: #93c5fd;
}

.gp-foot__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-foot__bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0 1.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.gp-foot__bottom-row p {
  margin: 0 0 0.4rem;
}

.gp-foot__bottom-row a:hover {
  color: #fff;
}

/* Category */
.gp-cat__banner {
  background: linear-gradient(120deg, var(--gp-ink), var(--gp-sky));
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.4rem) 0;
}

.gp-crumb {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.gp-crumb a:hover {
  color: #fff;
}

.gp-cat__banner h1 {
  margin: 0 0 0.35rem;
  font-family: var(--gp-display);
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  font-weight: 800;
}

.gp-cat__banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.gp-cat__body {
  padding: 1.35rem 0 3rem;
}

.gp-cat__filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.gp-cat__filters a {
  flex: 0 0 auto;
  padding: 0.4rem 0.85rem;
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.gp-cat__filters a.is-active {
  background: var(--gp-ink);
  border-color: var(--gp-ink);
  color: #fff;
}

.gp-cat__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--gp-muted);
}

.gp-cat__toolbar strong {
  color: var(--gp-ink);
}

.gp-cat__toolbar select,
.gp-cat__toolbar button {
  min-height: 36px;
  margin-left: 6px;
  padding: 0 0.7rem;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: var(--gp-surface);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.gp-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 1.5rem 0;
}

.gp-pager button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: var(--gp-surface);
  font-weight: 700;
  cursor: pointer;
}

.gp-pager button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gp-pager button.is-active,
.gp-pager button:not(:disabled):hover {
  background: var(--gp-ink);
  border-color: var(--gp-ink);
  color: #fff;
}

.gp-about {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gp-line);
}

.gp-about h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.gp-about p {
  margin: 0;
  color: var(--gp-muted);
  line-height: 1.7;
}

.gp-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gp-muted);
}

/* Play */
.gp-play__stage {
  background: #0b1220;
  padding-bottom: 1rem;
}

.gp-play__tip {
  margin: 0;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 650;
  color: #fff;
  background: var(--gp-ink-soft);
}

.gp-player {
  width: min(100%, 900px);
  margin: 0.85rem auto 0;
  aspect-ratio: 16 / 9;
  max-height: min(50vh, 460px);
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  position: relative;
}

.gp-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gp-play__layout {
  display: grid;
  gap: 1.15rem;
  padding: 1.4rem 0 2.75rem;
}

.gp-play__main {
  display: grid;
  gap: 1rem;
}

.gp-comments__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.gp-comments__head h2 {
  margin: 0;
}

.gp-comments__head span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gp-sky);
}

.gp-comments__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.gp-comment {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--gp-line);
}

.gp-comment:first-child {
  border-top: 0;
  padding-top: 0.35rem;
}

.gp-comment__avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gp-ink);
}

.gp-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.7rem;
  margin-bottom: 0.35rem;
}

.gp-comment__meta strong {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--gp-ink);
}

.gp-comment__meta time {
  font-size: 0.75rem;
  color: var(--gp-muted);
}

.gp-comment__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}

.gp-comment__likes {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gp-muted);
}

.gp-panel {
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  padding: 1.2rem 1.1rem;
}

.gp-panel h1 {
  margin: 0 0 0.75rem;
  font-family: var(--gp-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.3;
}

.gp-panel h2 {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.gp-play__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--gp-muted);
}

.gp-play__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.gp-play__meta a {
  padding: 0.15rem 0.5rem;
  background: var(--gp-sky-soft);
  color: var(--gp-sky);
  border-radius: 999px;
  font-weight: 750;
}

.gp-play__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.gp-play__actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--gp-ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.gp-play__actions button.is-on {
  background: var(--gp-sky);
}

.gp-play__actions em {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gp-sky);
  font-weight: 650;
}

.gp-play__desc {
  margin: 0 0 0.85rem;
  line-height: 1.7;
  color: #334155;
}

.gp-play__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.gp-play__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem 0.55rem;
  background: var(--gp-bg);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gp-muted);
}

.gp-play__side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.gp-related {
  display: grid;
  gap: 0.7rem;
}

.gp-related__item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.35rem;
  border-radius: 8px;
}

.gp-related__item:hover {
  background: var(--gp-sky-soft);
}

.gp-related__item img {
  width: 92px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--gp-ink);
}

.gp-related__item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-related__item p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gp-muted);
}

.gp-play__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gp-play__cats a {
  padding: 0.4rem 0.7rem;
  background: var(--gp-bg);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 650;
}

.gp-play__cats a:hover {
  background: var(--gp-sky-soft);
  color: var(--gp-sky);
}

/* Auth */
.gp-auth {
  display: grid;
  place-items: center;
  padding: 3rem 1rem 4rem;
  min-height: 50vh;
}

.gp-auth__card {
  width: min(100%, 400px);
  display: grid;
  gap: 0.75rem;
  background: var(--gp-surface);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  padding: 1.6rem 1.3rem;
}

.gp-auth__card h1 {
  margin: 0;
  font-family: var(--gp-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.gp-auth__card p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 0.9rem;
}

.gp-auth__card input {
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.gp-auth__card input:focus {
  outline: 2px solid rgba(37, 99, 168, 0.25);
  border-color: var(--gp-sky);
}

.gp-auth__card em {
  font-style: normal;
  color: #b45309;
  font-size: 0.875rem;
}

.gp-auth__card .gp-btn {
  width: 100%;
  background: var(--gp-ink);
  color: #fff;
}

.gp-auth__card > a {
  font-weight: 700;
  color: var(--gp-sky);
  justify-self: start;
}

.gp-auth__card--center {
  text-align: center;
  place-items: center;
}

.gp-auth__card--center strong {
  font-family: var(--gp-display);
  font-size: 3rem;
  color: var(--gp-sky);
  line-height: 1;
}

.gp-auth__card--center .gp-btn {
  width: auto;
  margin-top: 0.35rem;
}

.gp-player button:hover {
  color: #93c5fd !important;
}

.slider {
  background: linear-gradient(
    to right,
    var(--gp-sky) 0%,
    var(--gp-sky) var(--progress, 0%),
    #6b7280 var(--progress, 0%),
    #6b7280 100%
  ) !important;
}

.slider::-webkit-slider-thumb {
  background: var(--gp-sky) !important;
}

.slider::-moz-range-thumb {
  background: var(--gp-sky) !important;
}

/* ABABSEO */
.ababseo-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.ababseo-mark__plane-wrap {
  position: relative;
  width: 36px;
  height: 28px;
  flex-shrink: 0;
}

.ababseo-mark__plane {
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  color: #93c5fd;
  animation: ababseo-fly 3.6s ease-in-out infinite;
}

.ababseo-mark__plane svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ababseo-mark__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.05;
}

.ababseo-mark__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b9bb0;
}

.ababseo-mark__name {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  background: linear-gradient(105deg, #93c5fd 0%, #fff 45%, #60a5fa 75%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ababseo-shimmer 5s ease-in-out infinite;
}

@keyframes ababseo-fly {
  0% {
    transform: translate(0, 2px) rotate(-8deg);
  }
  25% {
    transform: translate(8px, -6px) rotate(4deg);
  }
  50% {
    transform: translate(14px, 1px) rotate(-2deg);
  }
  75% {
    transform: translate(6px, -7px) rotate(8deg);
  }
  100% {
    transform: translate(0, 2px) rotate(-8deg);
  }
}

@keyframes ababseo-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Responsive */
@media (min-width: 720px) {
  .gp-cats {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .gp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gp-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .gp-foot__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .gp-brand__name {
    max-width: none;
  }
}

@media (min-width: 960px) {
  .gp-nav,
  .gp-search,
  .gp-login {
    display: flex;
  }

  .gp-burger,
  .gp-drawer,
  .gp-drawer.is-open {
    display: none;
  }

  .gp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gp-play__layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  }
}

@media (max-width: 719px) {
  .gp-hero {
    min-height: 340px;
  }

  .gp-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-player {
    border-radius: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-hero__inner,
  .ababseo-mark__plane,
  .ababseo-mark__name {
    animation: none;
  }
}
