:root {
  --bg-primary: #0A192F;
  --bg-secondary: #112240;
  --bg-elevated: #1A2C4E;
  --bg-footer: #081628;
  --accent: #FF6B35;
  --accent-soft: rgba(255, 107, 53, 0.16);
  --text-primary: #FFFFFF;
  --text-secondary: #8892B0;
  --text-muted: #5D6A85;
  --border: #233554;
  --line: rgba(137, 146, 176, 0.22);
  --chart-primary: #64FFDA;
  --chart-secondary: #FFD166;
  --warning: #FF6B6B;
  --success: #3DDC97;
  --font-headline: 'Archivo Black', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'Roboto Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --container: 1280px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-hard: 6px 6px 0 rgba(4, 10, 22, 0.55);
  --shadow-accent: 4px 4px 0 rgba(255, 107, 53, 0.35);
  --border-w: 2px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background:
    linear-gradient(rgba(10, 25, 47, 0.92), rgba(10, 25, 47, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(100, 255, 218, 0.06) 31px 32px);
  background-color: var(--bg-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.6em;
  color: var(--text-primary);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }

a {
  color: var(--chart-primary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--accent); }

ul, ol { list-style: none; }

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

::-webkit-search-decoration,
::-webkit-search-cancel-button,
::-webkit-search-results-button,
::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

[hidden] { display: none !important; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 25, 47, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(35, 53, 84, 0.8);
  box-shadow: 0 8px 32px rgba(2, 8, 18, 0.45);
}

.scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--chart-primary));
  border-radius: 0 2px 2px 0;
  z-index: 210;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border: 2px solid var(--accent);
  transform: translateY(-300%);
  transition: transform 0.3s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.brand-logo {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-divider {
  width: 2px;
  height: 18px;
  background: var(--line);
  transform: rotate(16deg);
  align-self: center;
}

.brand-text {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-link:hover {
  color: var(--text-primary);
  border-color: rgba(100, 255, 218, 0.35);
  background: rgba(17, 34, 64, 0.55);
}

.nav-link[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.08);
  box-shadow: inset 0 -2px 0 var(--accent);
}

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

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(136, 146, 176, 0.4);
  background: rgba(10, 25, 47, 0.6);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.action-btn:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.12);
  box-shadow: var(--shadow-accent);
}

.action-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 rgba(255, 107, 53, 0.35);
}

.btn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.action-btn-icon {
  width: 38px;
  padding: 0;
  justify-content: center;
}

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

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(136, 146, 176, 0.4);
  background: rgba(10, 25, 47, 0.7);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--accent);
}

.nav-toggle .toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

.nav-toggle.is-active .toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.search-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(8, 22, 40, 0.98);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 18px 40px rgba(2, 8, 18, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.search-field {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
  border: 1px solid var(--border);
  background: rgba(17, 34, 64, 0.6);
  padding: 0 14px;
}

.search-field:focus-within {
  border-color: var(--chart-primary);
  box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.16);
}

.search-field .icon {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  height: 42px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.75;
}

.search-input:focus {
  outline: none;
}

.search-hint {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chart-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.search-close:hover {
  border-color: var(--warning);
  color: var(--warning);
  box-shadow: 3px 3px 0 rgba(255, 107, 107, 0.25);
}

.search-close svg {
  width: 16px;
  height: 16px;
}

mark.search-mark {
  background: var(--chart-primary);
  color: var(--bg-primary);
  padding: 0 2px;
  box-shadow: 0 0 0 1px var(--chart-primary);
  border-radius: 1px;
  font-weight: 700;
}

.site-footer {
  background: var(--bg-footer);
  border-top: 4px solid var(--accent);
  margin-top: 60px;
}

.footer-data {
  border-bottom: 1px solid var(--border);
  background: rgba(17, 34, 64, 0.32);
}

.footer-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.data-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  gap: 2px;
}

.data-cell:last-child {
  border-right: none;
}

.data-num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.data-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.footer-main {
  padding-top: 52px;
  padding-bottom: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-brand .brand-logo {
  font-size: 28px;
}

.footer-brand .brand-text {
  font-size: 20px;
}

.footer-trust {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 340px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 12px;
}

.footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 14px;
  transform: translateY(-50%);
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-contact .contact-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  padding-bottom: 22px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-copyright p {
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.footer-legal a {
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.25s var(--ease);
}

.footer-legal a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}

.legal-divider {
  color: var(--border);
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 160;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  background: rgba(10, 25, 47, 0.92);
  color: var(--accent);
  box-shadow: var(--shadow-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s var(--ease);
}

.to-top:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn:active {
  transform: translate(2px, 2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: #FF8655;
  border-color: #FF8655;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: rgba(17, 34, 64, 0.5);
  padding: 5px 14px;
}

.section-label::before {
  content: "#";
  color: var(--chart-primary);
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hard);
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(4, 10, 22, 0.55);
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  white-space: nowrap;
}

.badge[data-color="cyan"] {
  border-color: var(--chart-primary);
  color: var(--chart-primary);
  background: rgba(100, 255, 218, 0.08);
}

.badge[data-color="yellow"] {
  border-color: var(--chart-secondary);
  color: var(--chart-secondary);
  background: rgba(255, 209, 102, 0.08);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .separator {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.breadcrumb .crumb-current {
  color: var(--chart-primary);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hard);
}

.media-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  background:
    linear-gradient(135deg, rgba(100, 255, 218, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(100, 255, 218, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(100, 255, 218, 0.05) 75%),
    linear-gradient(135deg, transparent 75%, rgba(100, 255, 218, 0.05) 75%);
  background-size: 25px 25px;
  border: 1px dashed var(--border);
}

.media-frame img,
.media-frame > .img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-hard);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-card:nth-child(even) {
  border-top-color: var(--chart-primary);
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-card:nth-child(even) .stat-num {
  color: var(--chart-primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  z-index: 300;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-accent);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  max-width: 80vw;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.toast.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(400px, 86vw);
    height: calc(100vh - var(--header-h));
    background: rgba(8, 22, 40, 0.98);
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    box-shadow: -12px 20px 40px rgba(2, 8, 18, 0.5);
    margin-left: 0;
    padding: 24px 20px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 240;
  }

  .site-nav[data-open] {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-link {
    display: block;
    font-size: 17px;
    padding: 14px 16px;
    border: 1px solid transparent;
  }

  .nav-link[aria-current="page"] {
    border-color: var(--accent);
    box-shadow: none;
    background: var(--accent-soft);
  }

  .header-inner {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .brand-logo {
    font-size: 22px;
  }

  .brand-text {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .action-btn {
    height: 36px;
    padding: 0 12px;
  }

  .action-btn-icon {
    width: 36px;
  }

  .footer-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .data-cell {
    border: none;
    border-bottom: 1px solid var(--border);
  }

  .data-num {
    font-size: 34px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .login-text {
    display: none;
  }

  .action-btn {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal {
    display: flex;
    gap: 16px;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .search-inner {
    gap: 8px;
  }

  .search-hint {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .site-nav {
    transition: none;
  }

  .to-top,
  .toast {
    transition: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .to-top,
  .toast,
  .search-panel {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
