﻿:root {
  --shot-bg: #2b3038;
  --shot-panel: #2b2e37;
  --shot-text: #eef0f5;
  --shot-muted: #9ea5b2;
  --shot-border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--shot-bg);
  color: var(--shot-text);
  font-family: "PingFang SC", "Hiragino Sans GB", "HarmonyOS Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.theme-switching {
  animation: shot-theme-breathe 0.9s ease;
}

.shot-theme-ripple {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
  background: var(--ripple-color, rgba(255, 255, 255, 0.86));
  animation: shot-theme-ripple 0.95s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes shot-theme-breathe {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shot-theme-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) scale(95);
    opacity: 0;
  }
}

html[data-theme-transition='1']::view-transition-group(root) {
  animation-duration: 0.95s;
}

html[data-theme-transition='1']::view-transition-old(root) {
  animation: shot-theme-vt-old 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

html[data-theme-transition='1']::view-transition-new(root) {
  animation: shot-theme-vt-new 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  clip-path: circle(0 at var(--theme-switch-x, 50%) var(--theme-switch-y, 50%));
}

@keyframes shot-theme-vt-old {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
  100% {
    opacity: 0.34;
    transform: scale(0.985);
    filter: saturate(0.9);
  }
}

@keyframes shot-theme-vt-new {
  0% {
    clip-path: circle(0 at var(--theme-switch-x, 50%) var(--theme-switch-y, 50%));
    opacity: 0.8;
  }
  100% {
    clip-path: circle(150vmax at var(--theme-switch-x, 50%) var(--theme-switch-y, 50%));
    opacity: 1;
  }
}

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

.shot-wrap {
  width: 1280px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.shot-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
}

.shot-header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 18px;
}

.shot-brand img {
  width: 106px;
  display: none;
}

.shot-brand {
  display: inline-flex;
  align-items: center;
  min-width: 106px;
}

.shot-brand-name {
  display: none;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f0f2f8;
}

.shot-brand.has-logo img {
  display: block;
}

.shot-brand.has-name .shot-brand-name {
  display: block;
}

.shot-brand.is-empty {
  visibility: hidden;
}

.shot-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #e8ebf1;
  flex: 1;
}

.shot-nav a {
  opacity: 0.95;
  white-space: nowrap;
}

.shot-nav a:hover {
  opacity: 1;
}

.shot-nav-category {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  opacity: 0.95;
  white-space: nowrap;
  cursor: pointer;
}

.shot-nav-category i {
  margin-left: 4px;
  font-size: 12px;
}

.shot-nav-category:hover {
  opacity: 1;
}

.shot-nav-category.is-active {
  color: #ffffff;
}

.shot-nav-drop {
  display: none;
  position: fixed;
  left: 0;
  top: 68px;
  width: 260px;
  max-width: calc(100vw - 20px);
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(20, 24, 34, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(8, 12, 24, 0.4);
  z-index: 36;
  backdrop-filter: blur(10px);
}

.shot-nav-drop.is-open {
  display: block;
}

.shot-nav-drop-title {
  font-size: 12px;
  color: #d9e3f6;
  margin-bottom: 8px;
  padding: 0 2px;
}

.shot-nav-drop-tags {
  display: grid;
  gap: 6px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  border: 0;
}

.shot-nav-hot-tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.15;
  color: #ced9ed;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-nav-hot-tag:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.shot-badge {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7d6e, #ff4f51);
  color: #fff;
  font-size: 11px;
}

.shot-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shot-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f4f6fc;
  font-size: 12px;
}

.shot-pill[data-submit-open] {
  cursor: pointer;
}

.shot-pill-blue {
  background: linear-gradient(135deg, #43a0ff, #4f7dff);
}

.shot-icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--shot-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #eceff8;
  font-size: 14px;
}

body.is-light {
  --shot-bg: #edf3fb;
  --shot-text: #1d2a3d;
  --shot-muted: #6d7e98;
  --shot-border: rgba(30, 46, 76, 0.12);
  background: #edf3fb;
  color: #1d2a3d;
}

body.is-light .shot-header {
  background: linear-gradient(180deg, rgba(240, 246, 255, 0.95), rgba(240, 246, 255, 0.72));
  border-bottom: 1px solid rgba(27, 46, 80, 0.1);
}

body.is-light .shot-nav,
body.is-light .shot-nav-category {
  color: #364f70;
}

body.is-light .shot-nav-category:hover,
body.is-light .shot-nav-category.is-active {
  color: #1f3653;
}

body.is-light .shot-brand-name {
  color: #253d5e;
}

body.is-light .shot-icon-btn {
  background: rgba(35, 55, 83, 0.08);
  color: #2f4663;
}

body.is-light .shot-pill {
  background: rgba(26, 52, 86, 0.12);
  color: #2b4363;
}

body.is-light .shot-footer-inner {
  border-color: rgba(58, 84, 121, 0.15);
  background: rgba(245, 250, 255, 0.94);
}

body.is-light .shot-footer-brand {
  color: #294462;
}

body.is-light .shot-footer-copy {
  color: #5c7698;
}

body.is-light .shot-footer-note {
  color: #7088a7;
}

body.is-light .shot-footer-links,
body.is-light .shot-footer-links a {
  color: #6a84a6;
}

body.is-light .shot-footer-links a:hover {
  color: #2f4b6d;
}

body.is-light .shot-nav-drop {
  background: rgba(247, 251, 255, 0.97);
  border: 1px solid rgba(58, 84, 120, 0.2);
  box-shadow: 0 12px 26px rgba(35, 57, 91, 0.16);
}

body.is-light .shot-nav-drop-title {
  color: #3a5478;
}

body.is-light .shot-nav-hot-tag {
  color: #3a5578;
  background: rgba(52, 85, 132, 0.08);
}

body.is-light .shot-nav-hot-tag:hover {
  color: #1f3653;
  background: rgba(61, 96, 147, 0.16);
}

body.is-light .shot-hero-video {
  filter: saturate(1.02) hue-rotate(302deg) brightness(0.92) contrast(1);
}

body.is-light .shot-hero-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.28), rgba(219, 230, 249, 0.44) 64%, rgba(207, 220, 243, 0.62) 100%),
    linear-gradient(180deg, rgba(230, 238, 252, 0.25) 0%, rgba(223, 234, 251, 0.42) 48%, rgba(211, 224, 246, 0.58) 100%);
}

body.is-light .shot-hero-content h1 {
  color: #233750;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}

body.is-light .shot-hero-content p {
  color: #3f5777;
}

body.is-light .shot-keywords a {
  color: #3f5677;
  background: rgba(235, 242, 253, 0.86);
  border-color: rgba(51, 72, 103, 0.16);
}

body.is-light .shot-cards-dock::before {
  background: linear-gradient(180deg, rgba(237, 243, 251, 0) 0%, rgba(237, 243, 251, 0.86) 10px, #edf3fb 18px, #edf3fb 100%);
}

body.is-light .shot-card {
  background: linear-gradient(180deg, #f6f9ff, #eaf1fb);
  box-shadow: 0 6px 16px rgba(51, 79, 117, 0.12);
}

body.is-light .shot-card-text strong {
  color: #253b57;
}

body.is-light .shot-card-text small {
  color: #4a678e;
}

body.is-light .shot-metric-card .shot-card-text small {
  color: #3c5a84;
  font-size: 13px;
}

body.is-light .shot-metric-unit {
  color: #5e7696;
}

body.is-light .shot-metric-hint {
  color: #5f7597;
}

body.is-light .shot-v5-rank-col,
body.is-light .shot-v5-media-col,
body.is-light .shot-latest-panel {
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fd 100%);
  border: 1px solid rgba(59, 84, 121, 0.16);
  box-shadow: 0 8px 22px rgba(61, 88, 128, 0.1);
}

body.is-light .shot-v5-notice {
  background: linear-gradient(90deg, rgba(235, 243, 255, 0.98), rgba(226, 238, 255, 0.98));
  color: #3b5679;
}

body.is-light .shot-v5-rank-list,
body.is-light .shot-v5-cloud-list {
  background: rgba(232, 241, 252, 0.96);
}

body.is-light .shot-v5-rank-item,
body.is-light .shot-v5-media-card,
body.is-light .shot-latest-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(66, 91, 129, 0.16);
}

body.is-light .shot-v5-tab-btn {
  background: #e6eefb;
  color: #4a6385;
}

body.is-light .shot-v5-tab-btn:hover {
  background: #dce8fa;
  color: #2f4a6e;
}

body.is-light .shot-v5-media-title,
body.is-light .shot-latest-title,
body.is-light .shot-v5-head h2,
body.is-light .shot-v5-rank-head h3,
body.is-light .shot-v5-cloud-box h3,
body.is-light .shot-latest-head h2 {
  color: #263f5f;
}

body.is-light .shot-v5-media-meta,
body.is-light .shot-v5-media-desc,
body.is-light .shot-latest-meta,
body.is-light .shot-latest-desc,
body.is-light .shot-metric-hint {
  color: #5a6f8e;
}

body.is-light .shot-v5-rank-no {
  color: #ff7e59;
}

body.is-light .shot-v5-rank-name {
  color: #2b4466;
}

body.is-light .shot-v5-rank-meta {
  color: #627d9f;
}

body.is-light .shot-v5-cloud-tag {
  background: rgba(60, 89, 132, 0.08);
}

body.is-light .shot-v5-cloud-tag:hover {
  color: #1f3653;
  background: rgba(60, 89, 132, 0.16);
}

body.is-light .shot-empty {
  background: rgba(238, 245, 255, 0.92);
  border: 1px dashed rgba(66, 91, 129, 0.24);
  color: #5d7699;
}

body.is-light .shot-latest-tip {
  color: #607a9e;
}

body.is-light .shot-v5-media-pager {
  background: #e5eefb;
}

body.is-light .shot-v5-page-btn,
body.is-light .shot-v5-page-ellipsis {
  background: #f5f9ff;
  color: #4e6482;
  border: 1px solid rgba(66, 91, 129, 0.14);
}

body.is-light .shot-v5-page-btn:hover {
  background: #edf4ff;
}

.shot-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--shot-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.shot-hero {
  position: relative;
  min-height: 580px;
  padding-top: 92px;
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}

.shot-hero-video,
#shotHeroCanvas,
.shot-hero-overlay {
  position: absolute;
  inset: 0;
}

.shot-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  transform: scale(1.12);
  filter: saturate(1.15) hue-rotate(285deg) brightness(0.65) contrast(1.06);
}

#shotHeroCanvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shot-hero-overlay {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(187, 65, 225, 0.16), rgba(16, 3, 22, 0.46) 64%, rgba(13, 3, 18, 0.66) 100%),
    linear-gradient(180deg, rgba(14, 6, 24, 0.12) 0%, rgba(21, 8, 35, 0.24) 44%, rgba(30, 9, 46, 0.36) 78%, rgba(34, 18, 50, 0.42) 100%);
}

.shot-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(180deg, rgba(36, 39, 47, 0) 0%, rgba(36, 39, 47, 0.26) 100%);
}

.shot-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 54px;
}

.shot-hero-content h1 {
  margin: 0;
  font-size: 47px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.shot-hero-content p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.shot-search {
  margin: 30px auto 0;
  width: min(760px, calc(100% - 20px));
  height: 56px;
  border-radius: 999px;
  background: rgba(248, 227, 244, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  padding: 0 16px 0 22px;
  box-shadow: 0 18px 38px rgba(37, 10, 38, 0.35);
}

.shot-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #54435a;
  font-size: 16px;
  outline: none;
}

.shot-search input::placeholder {
  color: #8f7993;
}

.shot-search button {
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  color: #75617b;
  font-size: 17px;
  cursor: pointer;
}

.shot-keywords {
  margin-top: 12px;
}

.shot-keywords a {
  display: inline-block;
  margin: 3px;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 12px;
  color: #d5bfd7;
  background: rgba(34, 14, 37, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.shot-search-strip {
  margin: 8px auto 0;
  width: min(760px, calc(100% - 20px));
  height: 68px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  box-shadow: inset 0 12px 22px rgba(255, 185, 255, 0.18);
}

.shot-search-strip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) hue-rotate(278deg) brightness(0.64);
}

.shot-cards-dock {
  position: relative;
  margin-top: -44px;
  z-index: 9;
  isolation: isolate;
}

.shot-cards-dock::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(43, 48, 56, 0) 0%, rgba(43, 48, 56, 0.88) 10px, var(--shot-bg) 18px, var(--shot-bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.shot-cards-dock::after {
  content: none;
}

.shot-top-cards {
  position: relative;
  width: 1280px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.shot-card {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3a3e4d, #2f3340);
  border: 0;
  box-shadow: 0 8px 20px rgba(10, 8, 16, 0.22);
}

.shot-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 12px;
  flex-shrink: 0;
}

.shot-c1 {
  background: linear-gradient(140deg, #ff5d8c, #ff7c46);
}

.shot-c2 {
  background: linear-gradient(140deg, #ff8b45, #ffb145);
}

.shot-c3 {
  background: linear-gradient(140deg, #ff6f80, #ff4a6d);
}

.shot-c4 {
  background: linear-gradient(140deg, #28c7d6, #3b9cff);
}

.shot-card-text strong {
  display: block;
  font-size: 18px;
  color: #f3f5f8;
}

.shot-card-text strong em {
  font-style: normal;
  font-size: 11px;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbd3d, #ff7d5f);
  color: #fff;
  vertical-align: middle;
}

.shot-card-text small {
  display: block;
  margin-top: 4px;
  color: #8f96a3;
  font-size: 13px;
}

.shot-metric-card .shot-card-text strong {
  font-size: 15px;
  color: #e8f1ff;
}

.shot-metric-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}

.shot-metric-card .shot-card-text {
  min-width: 0;
}

.shot-metric-card .shot-card-text small {
  margin-top: 0;
  color: #dce8fb;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.shot-metric-unit {
  font-style: normal;
  margin-left: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #9eb1cc;
}

.shot-metric-hint {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.25;
  color: #9aaacc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-main {
  margin-top: 12px;
  padding-bottom: 8px;
  position: relative;
  z-index: 8;
}

.shot-footer {
  padding: 14px 0 26px;
}

.shot-footer-inner {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(30, 36, 48, 0.62);
  padding: 12px 14px;
  text-align: center;
}

.shot-footer-inner p {
  margin: 0;
}

.shot-footer-brand {
  font-size: 14px;
  font-weight: 600;
  color: #dbe5f7;
}

.shot-footer-links {
  margin-top: 6px !important;
  font-size: 11px;
  color: #9fb2cd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.shot-footer-links a {
  color: #9fb2cd;
  transition: color 0.18s ease;
}

.shot-footer-links a + a::before {
  content: "·";
  display: inline-block;
  margin: 0 8px 0 0;
  color: #8ea4c3;
}

.shot-footer-links a:hover {
  color: #d8e6fb;
}

.shot-footer-copy {
  margin-top: 6px !important;
  font-size: 12px;
  color: #9db0cc;
}

.shot-footer-note {
  margin-top: 4px !important;
  font-size: 12px;
  color: #8da1be;
}

.shot-tg-panel {
  border-radius: 12px;
}

.shot-tg-notice {
  min-height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 14px;
  color: #f1869e;
  background: linear-gradient(90deg, rgba(94, 43, 68, 0.62), rgba(82, 66, 90, 0.46));
  border: 1px solid rgba(242, 110, 145, 0.24);
}

.shot-tg-notice p {
  margin: 0;
  font-size: 13px;
}

.shot-tg-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(300px, 1fr);
  gap: 14px;
}

.shot-tg-stream,
.shot-tg-meta {
  min-width: 0;
}

.shot-tg-stream {
  background: #303645;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
}

.shot-tg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.shot-tg-head h2 {
  margin: 0;
  font-size: 18px;
}

.shot-tg-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.shot-tg-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  color: #acb7cb;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  padding: 7px 10px;
  cursor: pointer;
}

.shot-tg-filter-btn.is-active {
  color: #fff;
  border-color: rgba(112, 183, 255, 0.56);
  background: linear-gradient(135deg, #4aa8ff, #6f8dff);
}

.shot-tg-hero {
  margin-bottom: 12px;
}

.shot-tg-hero-link {
  display: grid;
  grid-template-columns: 41% 1fr;
  gap: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: #394051;
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 220px;
}

.shot-tg-hero-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-tg-hero-body {
  padding: 12px 12px 12px 0;
  align-self: center;
}

.shot-tg-hero-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: #f4f9ff;
}

.shot-tg-hero-desc {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #cdd8ea;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shot-tg-hero-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.shot-tg-hero-meta span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #edf4ff;
}

.shot-tg-grid {
  display: grid;
  gap: 10px;
}

.shot-tg-card {
  border-radius: 10px;
  overflow: hidden;
  background: #373e4f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 132px 1fr;
}

.shot-tg-card-cover {
  display: block;
  height: 100%;
  min-height: 96px;
  background: #272c37;
}

.shot-tg-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-tg-card-body {
  padding: 10px;
  min-width: 0;
}

.shot-tg-card-title {
  margin: 0;
  font-size: 14px;
  color: #edf4fc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-tg-card-desc {
  margin: 7px 0 0;
  font-size: 12px;
  color: #9faacd;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-tg-card-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #a8b3c5;
}

.shot-tg-meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.shot-tg-side-panel {
  background: #323949;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
}

.shot-tg-side-panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.shot-tg-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.shot-tg-stat-item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 9px 10px;
}

.shot-tg-stat-item strong {
  display: block;
  font-size: 16px;
  color: #f2f6fe;
}

.shot-tg-stat-item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #9aa5b6;
}

.shot-tg-channels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.shot-tg-channels li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  font-size: 13px;
}

.shot-tg-channels em {
  font-style: normal;
  color: #9ea9bb;
  font-size: 12px;
}

.shot-empty {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: #9aa5b6;
  padding: 18px 12px;
  text-align: center;
  font-size: 13px;
}

.shot-tg-panel {
  background: transparent;
}

.shot-v5-panel {
  background: transparent;
}

.shot-v5-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.shot-v5-notice {
  min-height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: #f2c4ce;
  flex: 1;
  background: linear-gradient(90deg, rgba(95, 50, 70, 0.58), rgba(56, 74, 103, 0.52));
  overflow: hidden;
}

.shot-v5-notice p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.shot-v5-marquee-track {
  display: inline-block;
  white-space: nowrap;
  padding-right: 42px;
  animation: shot-v5-notice-marquee 20s linear infinite;
}

@keyframes shot-v5-notice-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shot-v5-marquee-track {
    animation: none;
  }
}

.shot-v5-channel-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.shot-v5-tab-btn {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #adb8cc;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.shot-v5-tab-btn:hover {
  color: #edf3ff;
  background: rgba(255, 255, 255, 0.15);
}

.shot-v5-tab-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ff6f7c, #ff9f63);
  box-shadow: 0 6px 16px rgba(255, 118, 116, 0.25);
}

.shot-v5-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 2.05fr);
  gap: 14px;
}

.shot-v5-col {
  min-width: 0;
}

.shot-v5-rank-col,
.shot-v5-media-col {
  background: linear-gradient(180deg, #384253 0%, #303849 100%);
  border-radius: 12px;
  padding: 14px;
}

.shot-v5-media-col {
  background: linear-gradient(180deg, #3c4759 0%, #313a4a 100%);
}

.shot-v5-head {
  margin-bottom: 10px;
}

.shot-v5-head h2 {
  margin: 0;
  font-size: 18px;
}

.shot-v5-head-gap {
  margin-top: 14px;
}

.shot-v5-rank-boards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.shot-v5-cloud-box {
  margin-top: 12px;
  border-radius: 10px;
  background: transparent;
  padding: 0;
}

.shot-v5-cloud-box h3 {
  margin: 0 0 10px;
  padding-left: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  color: #e9f0fc;
}

.shot-v5-cloud-box h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #20ceb5;
}

.shot-v5-cloud-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  min-height: 120px;
  border-radius: 10px;
  background: rgba(43, 50, 61, 0.9);
  padding: 12px;
}

.shot-v5-cloud-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 7px;
  color: var(--tag-color, #b8c6de);
  background: rgba(255, 255, 255, 0.04);
  border: none;
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.shot-v5-cloud-tag:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.shot-v5-rank-board {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.shot-v5-rank-head {
  padding: 0 0 8px;
}

.shot-v5-rank-head h3 {
  margin: 0;
  padding-left: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  color: #e9f0fc;
}

.shot-v5-rank-head h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #20ceb5;
}

.shot-v5-rank-list {
  padding: 8px;
  display: grid;
  gap: 4px;
  border-radius: 10px;
  background: rgba(31, 37, 50, 0.6);
}

.shot-v5-rank-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  padding: 8px;
  color: #dbe4f2;
  background: rgba(255, 255, 255, 0.04);
}

.shot-v5-rank-no {
  font-size: 12px;
  color: #f7a57e;
  text-align: center;
}

.shot-v5-rank-name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-v5-rank-meta {
  font-size: 12px;
  font-weight: 400;
  color: #99a4bb;
}

.shot-v5-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shot-v5-media-pager {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  border-radius: 0;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.shot-v5-page-btn {
  border: 0;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 3px;
  background: #3a4049;
  color: #b9c3d2;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
}

.shot-v5-page-btn:hover {
  background: #474f5b;
  color: #d9e2ef;
}

.shot-v5-page-btn.is-active {
  background: #1fc8ad;
  color: #fff;
}

.shot-v5-page-btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.shot-v5-page-next,
.shot-v5-page-jump-trigger {
  min-width: 80px;
  font-size: 13px;
  padding: 0 12px;
  color: #c7d1de;
}

.shot-v5-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  border-radius: 3px;
  background: #3a4049;
  color: #99a5b8;
  font-size: 14px;
  line-height: 1;
}

.shot-v5-page-jump-wrap {
  position: relative;
  width: 80px;
  height: 34px;
}

.shot-v5-page-jump-wrap .shot-v5-page-jump-trigger {
  width: 100%;
  height: 100%;
}

.shot-v5-page-jump-editor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  border: 1px solid #19c7af;
  border-radius: 3px;
  background: #2f343c;
  opacity: 0;
  pointer-events: none;
}

.shot-v5-page-jump-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #dbe7f6;
  padding: 0 8px;
  font-size: 13px;
  line-height: 1;
}

.shot-v5-page-jump-input::-webkit-outer-spin-button,
.shot-v5-page-jump-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shot-v5-page-jump-input[type='number'] {
  -moz-appearance: textfield;
}

.shot-v5-page-jump-go {
  width: 30px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #c9d5e8;
  font-size: 18px;
  cursor: pointer;
}

.shot-v5-page-jump-wrap:hover .shot-v5-page-jump-editor,
.shot-v5-page-jump-wrap.is-open .shot-v5-page-jump-editor,
.shot-v5-page-jump-wrap:focus-within .shot-v5-page-jump-editor {
  opacity: 1;
  pointer-events: auto;
}

.shot-v5-page-jump-wrap:hover .shot-v5-page-jump-trigger,
.shot-v5-page-jump-wrap.is-open .shot-v5-page-jump-trigger,
.shot-v5-page-jump-wrap:focus-within .shot-v5-page-jump-trigger {
  opacity: 0;
  pointer-events: none;
}

.shot-v5-media-card {
  border-radius: 6px;
  overflow: hidden;
  background: rgba(30, 34, 46, 0.66);
}

.shot-v5-media-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: #232a37;
}

.shot-v5-media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-v5-media-badge {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 6px 0;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff676f, #ff9a5c);
}

.shot-v5-media-score {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 0 6px;
  min-width: 54px;
  height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #ffd68e;
  background: rgba(26, 33, 46, 0.82);
}

.shot-v5-media-body {
  padding: 10px;
  min-width: 0;
}

.shot-v5-media-title {
  display: block;
  margin: 0;
  font-size: 14px;
  color: #edf4fc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-v5-media-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #a8b4cb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-v5-media-desc {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #90a0bc;
  height: 32px;
  overflow: hidden;
}

.shot-latest-panel {
  margin-top: 12px;
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #3a4558 0%, #303a4b 100%);
}

.shot-latest-head {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shot-latest-head h2 {
  margin: 0;
  padding-left: 12px;
  position: relative;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
  color: #e9f0fc;
}

.shot-latest-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #20ceb5;
}

.shot-latest-tip {
  font-size: 12px;
  color: #aab6cb;
}

.shot-latest-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.shot-latest-card {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(27, 33, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-latest-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #232a37;
}

.shot-latest-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-latest-channel,
.shot-latest-drive {
  position: absolute;
  top: 0;
  height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
}

.shot-latest-channel {
  left: 0;
  border-radius: 0 0 10px 0;
  color: #f5f9ff;
  background: linear-gradient(135deg, #ff6d72, #ff9d59);
  max-width: 62%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-latest-drive {
  right: 0;
  border-radius: 0 0 0 10px;
  color: #f4f8ff;
  background: rgba(23, 31, 44, 0.9);
  max-width: 65%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-latest-drive[data-drive='quark'] {
  color: #fff;
  background: linear-gradient(135deg, #17c08b, #1dcf73);
}

.shot-latest-drive[data-drive='baidu'] {
  color: #fff;
  background: linear-gradient(135deg, #3b78ff, #59a2ff);
}

.shot-latest-drive[data-drive='xunlei'] {
  color: #fff;
  background: linear-gradient(135deg, #ff9c2f, #ffb94b);
}

.shot-latest-drive[data-drive='uc'] {
  color: #fff;
  background: linear-gradient(135deg, #ff8b33, #ff6f3b);
}

.shot-latest-body {
  padding: 10px;
  min-width: 0;
}

.shot-latest-title {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #edf4fc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-latest-desc {
  margin: 6px 0 0;
  height: 32px;
  line-height: 1.35;
  font-size: 12px;
  color: #90a0bc;
  overflow: hidden;
}

.shot-latest-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #a8b4cb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-v5-side-col {
  display: grid;
  gap: 14px;
  align-content: start;
}

.shot-v5-box {
  background: linear-gradient(180deg, #31394a 0%, #2a3140 100%);
  border-radius: 10px;
  padding: 12px;
}

.shot-v5-box h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.shot-v5-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.shot-v5-stat-item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 10px;
}

.shot-v5-stat-item strong {
  display: block;
  font-size: 16px;
  color: #f2f6fe;
}

.shot-v5-stat-item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #9aa5b6;
}

.shot-v5-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.shot-v5-time-item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.shot-v5-time-item a {
  display: block;
  padding: 9px 10px;
}

.shot-v5-time-title {
  display: block;
  font-size: 13px;
  color: #eaf0f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-v5-time-meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #98a2b2;
}

.shot-v5-time-meta em {
  font-style: normal;
  color: #aeb9ca;
}

.shot-v5-channels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.shot-v5-channels li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  font-size: 13px;
}

.shot-v5-channels em {
  font-style: normal;
  color: #9ea9bb;
  font-size: 12px;
}

.shot-float-tools {
  position: fixed;
  right: 18px;
  top: 52%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shot-float-tools a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 46, 56, 0.95);
  border: 1px solid var(--shot-border);
  color: #d8deea;
}

body.shot-submit-open {
  overflow: hidden;
}

.shot-submit-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.shot-submit-modal.is-open {
  display: block;
}

.shot-submit-mask {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.62);
  backdrop-filter: blur(2px);
}

.shot-submit-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #394358 0%, #2f3748 100%);
  box-shadow: 0 20px 45px rgba(8, 12, 20, 0.45);
}

.shot-submit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.shot-submit-head h3 {
  margin: 0;
  font-size: 18px;
  color: #edf3ff;
}

.shot-submit-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #dbe5f8;
  cursor: pointer;
}

.shot-submit-form {
  padding: 14px 16px 16px;
  display: grid;
  gap: 10px;
}

.shot-submit-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.shot-submit-field {
  display: grid;
  gap: 6px;
}

.shot-submit-field-wide {
  grid-column: 1 / -1;
}

.shot-submit-field span {
  font-size: 12px;
  color: #aab7cd;
}

.shot-submit-field input,
.shot-submit-field select,
.shot-submit-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(23, 30, 44, 0.65);
  color: #ecf3ff;
  font-size: 13px;
  padding: 10px 12px;
  outline: none;
}

.shot-submit-field textarea {
  resize: vertical;
  min-height: 84px;
}

.shot-submit-field input:focus,
.shot-submit-field select:focus,
.shot-submit-field textarea:focus {
  border-color: rgba(87, 170, 255, 0.72);
  box-shadow: 0 0 0 2px rgba(77, 151, 255, 0.16);
}

.shot-submit-status {
  min-height: 20px;
  font-size: 12px;
  color: #a8b6cb;
}

.shot-submit-status.is-error {
  color: #ff8d93;
}

.shot-submit-status.is-success {
  color: #3bd0ac;
}

.shot-submit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.shot-submit-cancel,
.shot-submit-ok {
  height: 36px;
  border-radius: 9px;
  border: 0;
  padding: 0 16px;
  font-size: 13px;
  cursor: pointer;
}

.shot-submit-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #d5e0f1;
}

.shot-submit-ok {
  background: linear-gradient(135deg, #45a2ff, #4e80ff);
  color: #fff;
}

.shot-submit-ok:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

body.is-light .shot-submit-mask {
  background: rgba(118, 136, 160, 0.34);
}

body.is-light .shot-submit-panel {
  border-color: rgba(65, 91, 128, 0.2);
  background: linear-gradient(180deg, #f9fcff 0%, #eef4fd 100%);
  box-shadow: 0 18px 40px rgba(56, 84, 124, 0.2);
}

body.is-light .shot-submit-head {
  border-bottom-color: rgba(65, 91, 128, 0.13);
}

body.is-light .shot-submit-head h3 {
  color: #2b4364;
}

body.is-light .shot-submit-close {
  border-color: rgba(65, 91, 128, 0.2);
  background: rgba(72, 100, 142, 0.08);
  color: #365275;
}

body.is-light .shot-submit-field span {
  color: #60789a;
}

body.is-light .shot-submit-field input,
body.is-light .shot-submit-field select,
body.is-light .shot-submit-field textarea {
  border-color: rgba(65, 91, 128, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #28415f;
}

body.is-light .shot-submit-status {
  color: #5f7597;
}

body.is-light .shot-submit-status.is-error {
  color: #de5768;
}

body.is-light .shot-submit-status.is-success {
  color: #0f9c78;
}

body.is-light .shot-submit-cancel {
  background: #e8eef8;
  color: #405b7d;
}

@media (max-width: 640px) {
  .shot-submit-panel {
    width: calc(100vw - 16px);
  }

  .shot-submit-form {
    padding: 12px;
    gap: 8px;
  }

  .shot-submit-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shot-submit-actions {
    justify-content: stretch;
  }

  .shot-submit-cancel,
  .shot-submit-ok {
    flex: 1;
  }
}

@media (max-width: 1180px) {
  .shot-cards-dock {
    margin-top: 18px;
  }

  .shot-top-cards {
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shot-tg-shell {
    grid-template-columns: 1fr;
  }

  .shot-tg-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .shot-float-tools {
    right: 10px;
  }

}

@media (max-width: 920px) {
  .shot-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .shot-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 60px;
    background: rgba(26, 28, 35, 0.95);
    border: 1px solid var(--shot-border);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .shot-nav-category {
    width: 100%;
    text-align: left;
  }

  .shot-nav-drop {
    display: none !important;
  }

  .shot-nav.is-open {
    display: flex;
  }

  .shot-actions .shot-pill,
  .shot-actions .shot-icon-btn:nth-last-child(-n + 2) {
    display: none;
  }

  .shot-hero {
    min-height: 620px;
    padding-bottom: 24px;
  }

  .shot-hero-content h1 {
    font-size: 34px;
  }

  .shot-hero-content p {
    font-size: 14px;
  }

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

  .shot-tg-hero,
  .shot-tg-hero-link {
    min-height: 240px;
  }

  .shot-tg-hero-link {
    grid-template-columns: 44% 1fr;
  }

}

@media (max-width: 640px) {
  .shot-wrap {
    width: auto;
    max-width: calc(100% - 20px);
  }

  .shot-top-cards {
    gap: 10px;
  }

  .shot-card {
    min-height: 76px;
    padding: 10px;
  }

  .shot-card-text strong {
    font-size: 15px;
  }

  .shot-card-text small {
    font-size: 12px;
  }

  .shot-metric-card .shot-card-text small {
    font-size: 14px;
  }

  .shot-metric-hint {
    font-size: 10px;
  }

  .shot-float-tools {
    display: none;
  }

  .shot-tg-panel,
  .shot-tg-side-panel {
    padding: 12px;
  }

  .shot-tg-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shot-tg-filters {
    justify-content: flex-start;
  }

  .shot-tg-grid {
    grid-template-columns: 1fr;
  }

  .shot-tg-hero-link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .shot-tg-hero-cover {
    height: 200px;
  }

  .shot-tg-hero-body {
    padding: 10px 12px 12px;
  }

  .shot-tg-card {
    grid-template-columns: 1fr;
  }

  .shot-tg-card-cover {
    height: 180px;
    min-height: 180px;
  }

  .shot-tg-hero-title {
    font-size: 18px;
  }
}

@media (max-width: 1180px) {
  .shot-v5-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .shot-v5-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shot-v5-channel-tabs {
    justify-content: flex-start;
  }

  .shot-v5-rank-boards {
    grid-template-columns: 1fr;
  }

  .shot-v5-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .shot-v5-rank-col,
  .shot-v5-media-col,
  .shot-v5-box {
    padding: 12px;
  }

  .shot-v5-media-grid {
    grid-template-columns: 1fr;
  }

  .shot-latest-panel {
    padding: 12px;
  }

  .shot-latest-grid {
    grid-template-columns: 1fr;
  }

  .shot-footer {
    padding: 10px 0 18px;
  }

  .shot-footer-inner {
    padding: 10px 12px;
  }

  .shot-footer-brand {
    font-size: 13px;
  }

  .shot-footer-links {
    font-size: 10px;
    gap: 8px;
  }

  .shot-footer-copy,
  .shot-footer-note {
    font-size: 11px;
  }
}

/* Mobile 370 baseline tune */
@media (max-width: 640px) {
  .shot-wrap {
    max-width: calc(100% - 12px);
  }

  .shot-header-inner {
    height: 54px;
    gap: 6px;
  }

  .shot-brand {
    min-width: 0;
    max-width: min(48vw, 180px);
    overflow: hidden;
  }

  .shot-brand img {
    width: 76px;
  }

  .shot-brand-name {
    font-size: 18px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shot-actions {
    gap: 5px;
  }

  .shot-menu-toggle,
  .shot-actions .shot-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 13px;
  }

  .shot-nav {
    left: 6px;
    right: 6px;
    top: 52px;
    max-height: 72vh;
    overflow: auto;
  }

  .shot-hero {
    min-height: 520px;
    padding-top: 66px;
    padding-bottom: 8px;
  }

  .shot-hero-content {
    padding-top: 18px;
    padding-bottom: 4px;
  }

  .shot-hero-content h1 {
    font-size: clamp(24px, 8.6vw, 32px);
    line-height: 1.2;
  }

  .shot-hero-content p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .shot-search {
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    height: 46px;
    padding: 0 8px 0 12px;
  }

  .shot-search input {
    font-size: 14px;
  }

  .shot-search button {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .shot-keywords {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 100%;
  }

  .shot-keywords a {
    margin: 0;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 6px;
  }

  .shot-cards-dock {
    margin-top: -14px;
  }

  .shot-top-cards {
    width: auto;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .shot-card {
    min-height: 64px;
    padding: 8px;
    border-radius: 9px;
  }

  .shot-card-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  .shot-card-text strong {
    font-size: 13px;
  }

  .shot-metric-card .shot-card-text strong {
    font-size: 12px;
  }

  .shot-card-text small {
    font-size: 11px;
  }

  .shot-metric-card .shot-card-text small {
    font-size: 11px;
  }

  .shot-metric-unit {
    font-size: 10px;
  }

  .shot-metric-hint {
    margin-top: 2px;
    font-size: 10px;
  }

  .shot-main {
    margin-top: 8px;
  }

  .shot-v5-topbar {
    gap: 8px;
  }

  .shot-v5-notice {
    font-size: 11px;
  }

  .shot-v5-channel-tabs {
    justify-content: flex-start;
    gap: 6px;
  }

  .shot-v5-tab-btn {
    font-size: 11px;
    padding: 6px 10px;
  }

  .shot-v5-rank-col,
  .shot-v5-media-col,
  .shot-v5-box {
    padding: 10px;
  }

  .shot-v5-head h2,
  .shot-v5-rank-head h3,
  .shot-v5-cloud-box h3,
  .shot-latest-head h2 {
    font-size: 16px;
  }

  .shot-v5-rank-list {
    padding: 6px;
    gap: 3px;
  }

  .shot-v5-rank-item {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 6px;
    padding: 6px;
  }

  .shot-v5-rank-no {
    font-size: 11px;
  }

  .shot-v5-rank-name,
  .shot-v5-rank-meta {
    font-size: 11px;
  }

  .shot-v5-cloud-list {
    min-height: 0;
    padding: 8px;
    gap: 6px;
  }

  .shot-v5-cloud-tag {
    font-size: 11px;
    padding: 4px 7px;
  }

  .shot-v5-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .shot-v5-media-body {
    padding: 8px;
  }

  .shot-v5-media-title {
    font-size: 12px;
  }

  .shot-v5-media-meta {
    margin-top: 4px;
    font-size: 11px;
  }

  .shot-v5-media-desc {
    display: none;
  }

  .shot-v5-media-pager {
    margin-top: 8px;
    gap: 4px;
    width: 100%;
  }

  .shot-v5-page-btn,
  .shot-v5-page-ellipsis {
    height: 28px;
    min-width: 28px;
    font-size: 11px;
    padding: 0 8px;
  }

  .shot-v5-page-next,
  .shot-v5-page-jump-trigger {
    min-width: 62px;
    padding: 0 8px;
    font-size: 11px;
  }

  .shot-v5-page-jump-wrap {
    width: 62px;
    height: 28px;
  }

  .shot-v5-page-jump-input {
    font-size: 11px;
    padding: 0 6px;
  }

  .shot-v5-page-jump-go {
    width: 24px;
    font-size: 14px;
  }

  .shot-latest-panel {
    margin-top: 10px;
    padding: 10px;
  }

  .shot-latest-head {
    margin-bottom: 8px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .shot-latest-tip {
    font-size: 11px;
    line-height: 1.35;
  }

  .shot-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .shot-latest-card {
    border-radius: 8px;
  }

  .shot-latest-channel,
  .shot-latest-drive {
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }

  .shot-latest-body {
    padding: 8px;
  }

  .shot-latest-title {
    font-size: 12px;
  }

  .shot-latest-desc {
    margin-top: 4px;
    height: 30px;
    font-size: 11px;
  }

  .shot-latest-meta {
    margin-top: 4px;
    font-size: 11px;
  }
}

@media (max-width: 370px) {
  .shot-wrap {
    max-width: calc(100% - 8px);
  }

  .shot-header-inner {
    height: 52px;
  }

  .shot-brand img {
    width: 70px;
  }

  .shot-brand-name {
    font-size: 16px;
  }

  .shot-hero {
    min-height: 496px;
    padding-top: 64px;
  }

  .shot-hero-content h1 {
    font-size: clamp(22px, 8vw, 28px);
  }

  .shot-hero-content p {
    font-size: 12px;
  }

  .shot-search {
    height: 44px;
    margin-top: 12px;
  }

  .shot-search button {
    width: 30px;
    height: 30px;
  }

  .shot-top-cards {
    gap: 6px;
  }

  .shot-card {
    min-height: 62px;
    padding: 7px;
  }

  .shot-card-icon {
    width: 26px;
    height: 26px;
    margin-right: 7px;
  }

  .shot-metric-card .shot-card-text strong,
  .shot-metric-card .shot-card-text small {
    font-size: 10px;
  }

  .shot-v5-media-grid,
  .shot-latest-grid {
    gap: 6px;
  }
}



