/*
 * 设计哲学：竞技舞台工业美学（Competitive Stage Industrialism）
 * 文件职责：全站外部样式，围绕深炭黑、工业灰、冷青、钨丝金建立“视频舞台 + 社区控制台”视觉秩序。
 * 判断标准：任何新增样式都必须强化“芒果视频是游戏视频品牌与内容社区”的专业感，而不是通用模板感。
 */

:root {
  --bg: #060b12;
  --bg-soft: #0d1520;
  --panel: rgba(14, 24, 35, 0.82);
  --panel-strong: rgba(10, 18, 28, 0.95);
  --line: rgba(112, 184, 203, 0.22);
  --line-strong: rgba(128, 223, 239, 0.45);
  --text: #edf7ff;
  --text-soft: #a6bdc8;
  --gold: #d8c287;
  --gold-strong: #f0d68d;
  --cyan: #69ebff;
  --cyan-strong: #98f2ff;
  --orange: #ff9c6b;
  --danger: #ff7c70;
  --success: #71e1b5;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.24);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(105, 235, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(240, 214, 141, 0.12), transparent 24%),
    linear-gradient(180deg, #04070d 0%, #07111b 46%, #08111a 100%);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: soft-light;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.qb9hh2eh {
  position: absolute;
  left: -999px;
  top: auto;
}

.qb9hh2eh:focus {
  left: 20px;
  top: 20px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 18, 0.84);
  border-bottom: 1px solid rgba(126, 201, 222, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(9, 14, 24, 0.9);
  box-shadow: 0 0 0 1px rgba(120, 215, 232, 0.22), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.brand-copy strong {
  display: block;
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.brand-copy span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(121, 221, 237, 0.2);
  background: rgba(12, 21, 31, 0.94);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: 0.28s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  opacity: 0;
  transform: scaleX(0.6);
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transition: 0.28s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--text);
  background: rgba(106, 231, 255, 0.08);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.ywcu8jg {
  padding: 0 0 18px;
}

.42set {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 24, 35, 0.96), rgba(8, 17, 26, 0.94));
  border: 1px solid rgba(115, 211, 230, 0.18);
  box-shadow: var(--shadow-soft);
}

.42set input {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(121, 215, 233, 0.16);
  background: rgba(7, 14, 22, 0.92);
  color: var(--text);
  outline: none;
}

.42set input::placeholder {
  color: rgba(166, 189, 200, 0.85);
}

.42set button,
.cta-button,
.ghost-button,
.23yn9cp3,
.filter-chip,
.inline-button {
  cursor: pointer;
  border: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.42set button,
.cta-button {
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  color: #07111a;
  background: linear-gradient(135deg, var(--gold-strong), #fef0b4 46%, var(--cyan-strong));
  box-shadow: 0 12px 28px rgba(217, 194, 135, 0.26);
}

.42set button:hover,
.cta-button:hover,
.23yn9cp3:hover,
.inline-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding: 62px 0 28px;
  border-bottom: 1px solid rgba(123, 214, 232, 0.1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.95) 0%, rgba(5, 10, 18, 0.88) 38%, rgba(5, 10, 18, 0.54) 65%, rgba(5, 10, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.06), rgba(5, 10, 18, 0.58));
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  transform: scale(1.03);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: end;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 215, 234, 0.2);
  background: rgba(8, 16, 24, 0.75);
  color: var(--cyan-strong);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero h1 span,
.section-heading h2 span,
.page-hero h1 span {
  color: var(--gold-strong);
}

.hero p.lead,
.page-hero p.lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(237, 247, 255, 0.84);
  font-size: 1.08rem;
}

.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.meta-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(119, 211, 231, 0.18);
  background: rgba(9, 17, 27, 0.78);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.meta-chip strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.ghost-button,
.inline-button,
.23yn9cp3 {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(120, 212, 230, 0.2);
  background: rgba(11, 20, 31, 0.8);
  color: var(--text);
}

.ghost-button:hover,
.inline-button:hover,
.23yn9cp3:hover,
.filter-chip:hover {
  background: rgba(27, 42, 56, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.hero-stage {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 18, 27, 0.85), rgba(8, 15, 24, 0.98));
  border: 1px solid rgba(122, 211, 229, 0.16);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(105, 235, 255, 0.08), transparent 30%, rgba(240, 214, 141, 0.08) 100%);
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.stage-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(113, 225, 181, 0.12);
  animation: pulseDot 2.2s infinite;
}

@keyframes pulseDot {
  0%,
  100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.72; }
}

.stage-video {
  position: relative;
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(3, 7, 12, 0.72);
  border: 1px solid rgba(116, 211, 229, 0.14);
}

.stage-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #081019;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #ffca8a);
  box-shadow: 0 16px 28px rgba(255, 156, 107, 0.28);
}

.play-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 13, 20, 0.22);
}

.stage-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric-box {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(123, 215, 234, 0.15);
  background: rgba(10, 18, 27, 0.82);
}

.metric-box span {
  display: block;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.metric-box strong {
  display: block;
  margin-top: 6px;
  font-size: 1.16rem;
  color: var(--text);
}

.breadcrumb {
  padding: 26px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--cyan-strong);
}

main section,
.page-main section {
  padding: 78px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.section-heading p {
  margin: 12px 0 0;
  max-width: 720px;
  color: var(--text-soft);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid,
.video-grid,
.info-grid,
.comment-grid,
.faq-grid,
.2w7hau3,
.ab1s863j,
.stats-grid,
.links-grid {
  display: grid;
  gap: 22px;
}

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

.info-grid,
.comment-grid,
.2w7hau3,
.ab1s863j,
.links-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.video-card,
.info-card,
.comment-card,
.faq-item,
.contact-card,
.lx3n49,
.u28c7a,
.stat-card,
.7u8xg8jg,
.qcne0utz,
.side-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(13, 24, 35, 0.92), rgba(8, 16, 24, 0.98));
  border: 1px solid rgba(122, 212, 230, 0.14);
  box-shadow: var(--shadow-soft);
}

.card::before,
.video-card::before,
.info-card::before,
.comment-card::before,
.contact-card::before,
.lx3n49::before,
.u28c7a::before,
.stat-card::before,
.7u8xg8jg::before,
.qcne0utz::before,
.side-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(104, 235, 255, 0.06), transparent 35%, rgba(240, 214, 141, 0.05));
  pointer-events: none;
}

.card-body,
.info-card,
.comment-card,
.contact-card,
.lx3n49,
.u28c7a,
.stat-card,
.7u8xg8jg,
.qcne0utz,
.side-panel {
  padding: 24px;
}

.stat-card strong,
.info-card strong,
.contact-card strong,
.lx3n49 strong,
.7u8xg8jg strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text);
}

.stat-card span,
.info-card span,
.contact-card span,
.lx3n49 span,
.7u8xg8jg span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(120, 214, 232, 0.12);
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.12), rgba(5, 10, 18, 0.65));
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #07111a;
  background: linear-gradient(135deg, var(--gold-strong), var(--cyan-strong));
  box-shadow: 0 16px 30px rgba(105, 235, 255, 0.25);
  opacity: 0;
  transform: scale(0.88);
  transition: 0.28s ease;
}

.video-card:hover .video-play,
.video-card:focus-within .video-play,
.video-card.is-hovered .video-play {
  opacity: 1;
  transform: scale(1);
}

.video-card:hover .video-cover img,
.video-card:focus-within .video-cover img,
.video-card.is-hovered .video-cover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.video-content {
  padding: 22px;
}

.video-content h3,
.side-panel h3,
.faq-item h3,
.comment-card h3,
.contact-card h3,
.page-hero .mini-card h3 {
  margin: 0;
  font-size: 1.16rem;
}

.video-content p,
.side-panel p,
.faq-item p,
.comment-card p,
.contact-card p,
.page-hero .mini-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.tag-row,
.metric-row,
.filter-row,
.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(105, 235, 255, 0.08);
  border: 1px solid rgba(122, 214, 232, 0.15);
  color: var(--cyan-strong);
  font-size: 0.82rem;
}

.metric-row {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.metric-row strong {
  color: var(--text);
}

.dual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(119, 213, 230, 0.16);
  background: rgba(8, 15, 23, 0.92);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.34s ease, opacity 0.28s ease, padding-top 0.28s ease;
  padding-top: 0;
}

.faq-item.open .answer {
  max-height: 220px;
  opacity: 1;
  padding-top: 14px;
}

.review-head,
.person-head,
.el9rtzq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #051018;
  background: linear-gradient(135deg, var(--cyan-strong), var(--gold-strong));
}

.rating {
  color: var(--gold-strong);
  letter-spacing: 0.14em;
}

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

.lx3n49 {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-layout,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
}

.contact-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122, 211, 229, 0.14);
  box-shadow: var(--shadow-soft);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.qr-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(9, 18, 27, 0.88);
  border: 1px solid rgba(119, 212, 230, 0.14);
  text-align: center;
}

.qr-card img {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.site-footer {
  padding: 34px 0 50px;
  border-top: 1px solid rgba(122, 214, 232, 0.1);
  background: rgba(5, 10, 18, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(10, 18, 27, 0.94);
}

.footer-copy p,
.footer-links p,
.footer-copy li,
.footer-links li {
  color: var(--text-soft);
}

.footer-links ul,
.footer-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.e2k4vzr {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 214, 232, 0.1);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 58px 0 24px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 15, 0.86), rgba(6, 12, 20, 0.78));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  align-items: stretch;
}

.mini-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(9, 17, 27, 0.86);
  border: 1px solid rgba(120, 214, 232, 0.15);
  box-shadow: var(--shadow-soft);
}

.r1ny1r {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(16, 26, 37, 0.9);
  border-radius: 14px;
  color: var(--text-soft);
}

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

.u28c7a {
  text-align: left;
}

.u28c7a strong {
  display: block;
  font-size: 1.05rem;
}

.u28c7a p {
  margin: 10px 0 18px;
  color: var(--text-soft);
}

.qcne0utz {
  display: grid;
  gap: 16px;
}

.e9wxh7 {
  margin: 0;
  padding: 16px;
  overflow: auto;
  border-radius: 16px;
  background: rgba(3, 9, 14, 0.9);
  border: 1px solid rgba(118, 214, 232, 0.12);
  color: #bfefff;
  font-size: 0.88rem;
  line-height: 1.6;
}

.1tv6sb {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  min-width: 260px;
  max-width: min(92vw, 360px);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(9, 18, 28, 0.94);
  border: 1px solid rgba(126, 214, 232, 0.18);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: 0.28s ease;
}

.1tv6sb.show {
  opacity: 1;
  transform: translateY(0);
}

.pink0 {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .dual-layout,
  .contact-layout,
  .page-hero-grid,
  .footer-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .video-grid,
  .stats-grid,
  .2w7hau3,
  .ab1s863j {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    width: 100%;
    padding-top: 12px;
    justify-content: flex-start;
  }

  .primary-nav.open {
    display: flex;
  }

  .42set,
  .feature-grid,
  .video-grid,
  .info-grid,
  .comment-grid,
  .ab1s863j,
  .stats-grid,
  .links-grid,
  .qr-grid,
  .2w7hau3,
  .stage-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy span {
    font-size: 0.84rem;
  }

  .hero,
  main section,
  .page-main section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-stage,
  .card-body,
  .info-card,
  .comment-card,
  .contact-card,
  .lx3n49,
  .u28c7a,
  .stat-card,
  .7u8xg8jg,
  .qcne0utz,
  .side-panel,
  .faq-item {
    padding: 18px;
  }

  .play-badge {
    left: 14px;
    right: 14px;
    justify-content: center;
  }
}
