@charset "utf-8";

:root {
  --bg: #07111f;
  --bg-2: #0b1627;
  --panel: #0f1d31;
  --panel-2: #11243d;
  --line: rgba(148, 163, 184, 0.18);
  --text: #eaf2ff;
  --muted: #9ab0ca;
  --accent: #45b6ff;
  --accent-2: #18c37e;
  --accent-3: #f2b84b;
  --danger: #ff5c5c;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.topbar {
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 13px;
  color: var(--muted);
}

.topbar-inner,
.nav-shell,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-inner {
  min-height: 40px;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-links a {
  color: #d2e4ff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(69, 182, 255, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  color: #dbe8fb;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(69, 182, 255, 0.12);
}

.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: #0b1627;
  box-shadow: var(--shadow);
}

.nav-item:hover .nav-drop {
  display: grid;
  gap: 6px;
}

.nav-drop a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: #d8e6fa;
}

.nav-drop a:hover {
  background: rgba(24, 195, 126, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.cta-btn,
.menu-toggle,
.back-top,
.mobile-bottom-bar button,
.mobile-bottom-bar a,
.search-form button {
  border: 0;
  border-radius: 12px;
  min-height: 48px;
}

.icon-btn,
.menu-toggle,
.back-top {
  width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.12);
  color: #fff;
  cursor: pointer;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(69, 182, 255, 0.16);
  color: #dff2ff;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.score-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(11, 22, 39, 0.96);
}

.score-ticker {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 54px;
  padding: 10px 0;
}

.score-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--danger), #ff8362);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.score-window {
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.score-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-height: 100%;
  animation: ticker-scroll 34s linear infinite;
}

.score-ticker:hover .score-track,
.score-ticker:focus-within .score-track {
  animation-play-state: paused;
}

.score-placeholder,
.score-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  white-space: nowrap;
}

.score-item {
  color: #e8f2ff;
}

.score-league {
  color: #8fc7ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.score-score {
  color: #fff;
  font-weight: 900;
}

.score-meta {
  color: var(--muted);
  font-size: 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.62);
  animation: live-pulse 1.7s ease-in-out infinite;
}

.hero {
  padding: 42px 0 24px;
  background:
    radial-gradient(circle at top right, rgba(69, 182, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(24, 195, 126, 0.12);
  border: 1px solid rgba(24, 195, 126, 0.22);
  color: #b9ffe0;
  font-size: 13px;
  font-weight: 900;
}

.hero-title {
  margin: 16px 0 0;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: #c3d2e8;
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #74c9ff);
  color: #07111f;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #f3f8ff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(69, 182, 255, 0.4);
  color: #d8eaff;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-media {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
}

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

.hero-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-note strong {
  font-size: 18px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-band {
  padding: 60px 0;
}

.section-band.soft {
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 6px 0 0;
  font-size: 34px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.section-desc {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
}

.section-link {
  color: #cfe8ff;
  font-weight: 800;
  white-space: nowrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.stat-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.grid-news,
.grid-matches,
.grid-topics {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card:hover {
  border-color: rgba(69, 182, 255, 0.45);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #0c1829;
}

.card-media picture,
.card-media img {
  width: 100%;
  height: 100%;
}

.card-media img {
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.card-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: #d5e7ff;
  font-size: 12px;
  font-weight: 800;
}

.badge-live {
  background: rgba(255, 92, 92, 0.12);
  color: #ffd0d0;
}

.badge-live .live-dot {
  margin-right: 8px;
}

.topic-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.topic-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1627;
}

.topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-copy h3 {
  margin: 0;
  font-size: 21px;
  overflow-wrap: anywhere;
}

.topic-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 52px 0 28px;
}

.page-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.page-banner picture,
.page-banner img {
  width: 100%;
  height: 100%;
}

.page-banner img {
  object-fit: cover;
  aspect-ratio: 21 / 8;
  opacity: 0.34;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.25));
}

.page-banner-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.page-banner-copy h1 {
  margin: 10px 0 0;
  font-size: 44px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.breadcrumbs {
  color: #c6d4ea;
  font-size: 14px;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.content-article {
  display: grid;
  gap: 18px;
}

.content-box {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.article-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.article-cover {
  margin-top: 22px;
  border-radius: 18px;
}

.article-body {
  margin-top: 22px;
}

.article-tags {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.article-tags strong {
  color: #fff;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.article-nav a,
.article-nav span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #e9f3ff;
}

.article-nav a:hover {
  background: rgba(69, 182, 255, 0.12);
}

.prose {
  color: #e7f0ff;
  font-size: 16px;
}

.prose p {
  margin: 0 0 18px;
}

.prose img {
  margin: 18px 0;
  border-radius: 16px;
}

.sidebar {
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.side-head {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.side-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.side-head h2 {
  margin: 0;
  font-size: 22px;
}

.side-nav,
.tag-cloud,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.side-nav {
  display: grid;
}

.side-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #e2edff;
  font-weight: 700;
}

.side-link:hover {
  background: rgba(69, 182, 255, 0.12);
}

.tag-cloud a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dfeaf8;
  font-size: 13px;
}

.tag-cloud a:hover,
.footer-links a:hover {
  background: rgba(24, 195, 126, 0.14);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #e6f0ff;
}

.pager .current {
  background: linear-gradient(135deg, var(--accent), #74c9ff);
  color: #07111f;
}

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

.contact-info,
.contact-form,
.faq-grid {
  display: grid;
  gap: 18px;
}

.info-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #d8e5f8;
}

.info-list strong {
  display: inline-block;
  min-width: 72px;
  color: #ffffff;
}

.info-list a {
  color: #dce8f7;
}

.info-list a:hover {
  color: #ffffff;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: #dbe8fb;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(69, 182, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(69, 182, 255, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-grid details {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: var(--panel);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #08111e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand p,
.footer-contact p {
  color: var(--muted);
}

.footer-contact ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #dce8f7;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.mobile-bottom-bar {
  display: none;
}

.mobile-drawer,
.search-drawer,
.site-mask {
  display: none;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.55);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255, 92, 92, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .score-track,
  .live-dot {
    animation: none;
  }
}

@media (max-width: 1023px) {
  .desktop-nav,
  .desktop-only {
    display: none !important;
  }

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

  .nav-shell {
    min-height: 72px;
  }

  .topbar-links {
    display: none;
  }

  .hero-inner,
  .content-shell,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-news,
  .grid-matches,
  .grid-topics,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-title,
  .hero-title,
  .page-banner-copy h1 {
    font-size: 40px;
  }

  .page-banner img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 20px, 1000px);
  }

  .topbar {
    display: none;
  }

  .score-label {
    min-width: 88px;
  }

  .score-strip {
    position: sticky;
    top: 0;
    z-index: 39;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-title,
  .article-title,
  .page-banner-copy h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .grid-news,
  .grid-matches,
  .grid-topics,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .section-head {
    display: block;
  }

  .section-link {
    display: inline-flex;
    margin-top: 10px;
  }

  .page-banner-copy {
    padding: 18px;
  }

  .page-banner img {
    aspect-ratio: 4 / 3;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(7, 17, 31, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-bar a,
  .mobile-bottom-bar button {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 62px;
    color: #d9e8fb;
    background: transparent;
    border-radius: 0;
  }

  .mobile-bottom-bar span {
    font-size: 12px;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 86vw);
  height: 100vh;
  z-index: 60;
  padding: 18px;
  background: #08111e;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 18px 0 38px rgba(0, 0, 0, 0.28);
  transition: left 0.24s ease;
}

.mobile-drawer.is-open {
  left: 0;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 900;
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #ecf3ff;
  font-weight: 800;
}

.mobile-nav a.sub {
  padding-left: 28px;
  color: #b8cae3;
}

.mobile-search {
  margin-top: 18px;
}

.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  align-items: start;
  justify-content: center;
  padding: 96px 18px 18px;
  background: rgba(7, 17, 31, 0.68);
}

.search-drawer.is-open,
.site-mask.is-open {
  display: flex;
}

.search-drawer-inner {
  width: min(680px, 100%);
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #08111e;
  box-shadow: var(--shadow);
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  flex: 1;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.search-form button {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--accent), #74c9ff);
  color: #07111f;
  font-weight: 900;
  cursor: pointer;
}

.search-form-large {
  flex-wrap: wrap;
}

.search-form-large input {
  min-width: 240px;
}

.search-form-large button {
  white-space: nowrap;
}

.site-mask {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.58);
}

.site-mask.is-open {
  display: block;
}

.noindex-note {
  color: var(--muted);
  font-size: 13px;
}
