:root {
  --dv-ink: #0f2a3d;
  --dv-teal: #00a3a3;
  --dv-mist: #e8f4f5;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--dv-ink);
  background:
    radial-gradient(circle at 10% 20%, #f4fbff 0%, #f7fafb 34%, #f8f8f8 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.45;
}

.bg-shape-1 {
  width: 320px;
  height: 320px;
  background: #7dd7d7;
  right: -120px;
  top: -70px;
}

.bg-shape-2 {
  width: 280px;
  height: 280px;
  background: #9fc3db;
  left: -100px;
  bottom: 20%;
}

.brand-datavue {
  height: 34px;
}

.brand-powerq {
  height: 30px;
}

.divider {
  color: #9cb1bc;
}

.beta-pill {
  letter-spacing: 0.04em;
}

.eyebrow {
  color: var(--dv-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--dv-mist);
  color: #0b3a3a;
  font-size: 0.8rem;
  border: 1px solid #d2ebeb;
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 50px rgba(10, 39, 62, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
}

.powered-badge {
  max-width: 260px;
  width: 100%;
}

.panel {
  background: #fff;
  border: 1px solid #e8eef1;
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(15, 42, 61, 0.06);
}

.search-spotlight {
  background:
    radial-gradient(80% 120% at 50% 0%, #ffffff 0%, #f4fbfc 58%, #eff8f9 100%);
  border: 1px solid #d8eaee;
}

.spotlight-inner {
  max-width: 920px;
}

.search-shell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  border: 1px solid #d8e3e8;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(15, 42, 61, 0.12);
  padding: 0.4rem 1.1rem;
  max-width: 820px;
  width: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.search-shell:focus-within {
  border-color: #77b8cb;
  box-shadow: 0 16px 42px rgba(15, 42, 61, 0.2);
  transform: translateY(-1px);
}

.search-icon {
  font-size: 1.25rem;
  color: #6f8997;
  user-select: none;
}

.search-input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0.7rem 0.3rem;
  font-size: 1.2rem;
  color: var(--dv-ink);
  background: transparent;
}

.search-input::placeholder {
  color: #7d97a4;
}

.search-suggest {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dbe7ec;
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(15, 42, 61, 0.16);
  padding: 0.4rem;
  max-height: 340px;
  overflow: auto;
  z-index: 20;
}

.suggest-item {
  border: 0;
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
}

.suggest-count {
  font-size: 0.78rem;
  color: #58717f;
  padding: 0.35rem 0.55rem 0.2rem 0.55rem;
}

.suggest-item:hover,
.suggest-item.is-active {
  background: #eef7fb;
}

.suggest-title {
  display: block;
  color: #16384b;
  font-weight: 600;
}

.suggest-meta {
  display: block;
  color: #6a8291;
  font-size: 0.82rem;
}

.search-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.hint-chip {
  border: 1px solid #d2e5eb;
  background: #fff;
  color: #275062;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.85rem;
  line-height: 1;
}

.hint-chip:hover {
  background: #edf7fa;
}

.hint-chip:focus-visible {
  outline: 2px solid #4aa5bf;
  outline-offset: 2px;
}

.queue-card {
  border: 1px solid #e3ecef;
  border-radius: 0.85rem;
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.queue-meta {
  font-size: 0.8rem;
  color: #4f6572;
}

.queue-pos {
  font-size: 0.78rem;
  color: #0f4a5f;
  font-weight: 700;
  border: 1px solid #b9d9e5;
  background: #e8f5fb;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.queue-title {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #cfe4ec;
  background: #edf7fa;
  color: #275062;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.queue-chip-price {
  color: #0f4a5f;
  border-color: #b9d9e5;
  background: #e8f5fb;
}

.queue-context {
  min-height: 2.6rem;
}

.btn-primary {
  --bs-btn-bg: var(--dv-ink);
  --bs-btn-border-color: var(--dv-ink);
  --bs-btn-hover-bg: #153b54;
  --bs-btn-hover-border-color: #153b54;
}

.micro-ad {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 188px;
  min-height: 72px;
  padding: 0.35rem 0.35rem 0.25rem 0.35rem;
  border: 1px solid #d7e7ee;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(15, 42, 61, 0.12);
  z-index: 40;
}

.micro-ad.micro-ad-hidden {
  display: none;
}

.micro-ad-label {
  font-size: 0.68rem;
  color: #6c8492;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.25rem 0.1rem;
}

@media (max-width: 767px) {
  .search-input {
    font-size: 1rem;
  }

  .search-shell {
    padding: 0.35rem 0.8rem;
  }

  .micro-ad {
    display: none;
  }
}
