:root {
  --bg: #090910;
  --text: #dcdce8;
  --gold: #f0d060;
  --gold-dark: #c9a030;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  min-height: 100%;
}

button,
input {
  font: inherit;
  color: inherit;
}

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

.hidden {
  display: none !important;
}

.container {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.header {
  padding: 0px 20px 12px 1px;
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(9, 9, 16, 0.98) 0%, rgba(9, 9, 16, 0.95) 82%, rgba(9, 9, 16, 0.88) 100%);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 58%;
  right: 8px;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 180'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23c0c0c8' stop-opacity='0.12'/%3E%3Cstop offset='100%25' stop-color='%23888890' stop-opacity='0.06'/%3E%3C/linearGradient%3E%3ClinearGradient id='g2' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23a8a8b0' stop-opacity='0.10'/%3E%3Cstop offset='100%25' stop-color='%23787880' stop-opacity='0.05'/%3E%3C/linearGradient%3E%3ClinearGradient id='g3' x1='100%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%239898a0' stop-opacity='0.08'/%3E%3Cstop offset='100%25' stop-color='%23b0b0b8' stop-opacity='0.05'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M20 60 L100 30 L180 60 L100 90 Z' fill='url(%23g1)' stroke='%23b0b0b8' stroke-width='1.5' stroke-opacity='0.18'/%3E%3Cpath d='M20 60 L20 130 L100 160 L100 90 Z' fill='url(%23g2)' stroke='%23b0b0b8' stroke-width='1.2' stroke-opacity='0.14'/%3E%3Cpath d='M180 60 L180 130 L100 160 L100 90 Z' fill='url(%23g3)' stroke='%23b0b0b8' stroke-width='1.2' stroke-opacity='0.12'/%3E%3Cellipse cx='70' cy='78' rx='30' ry='26' fill='none' stroke='%23c0c0c8' stroke-width='1.2' stroke-opacity='0.18'/%3E%3Cellipse cx='70' cy='78' rx='22' ry='19' fill='none' stroke='%23c0c0c8' stroke-width='0.8' stroke-opacity='0.12'/%3E%3Cellipse cx='70' cy='78' rx='13' ry='11' fill='none' stroke='%23c0c0c8' stroke-width='0.6' stroke-opacity='0.08'/%3E%3Cg stroke='%23c0c0c8' stroke-width='0.8' stroke-opacity='0.12' fill='none'%3E%3Cline x1='70' y1='52' x2='70' y2='104'/%3E%3Cline x1='40' y1='78' x2='100' y2='78'/%3E%3Cline x1='52' y1='60' x2='88' y2='96'/%3E%3Cline x1='88' y1='60' x2='52' y2='96'/%3E%3C/g%3E%3Ccircle cx='70' cy='78' r='4' fill='%23c0c0c8' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  pointer-events: none;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.93) 0%, rgba(201, 168, 76, 0.62) 30%, transparent 100%);
  opacity: 0.5;
}

.title-group {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 1;
}

.title-en {
  font-size: 13px;
  color: rgba(21, 21, 21, 0.9);
  width: 174px;
  text-align: center;
  margin: 0 0 2px 16px;
  background: #cccccccc;
  padding-left: 3px;
  letter-spacing: 6px;
}

.main-title-row {
  display: flex;
  align-items: flex-start;
  margin-left: 14px;
  margin-top: 2px;
}

.main-title {
  font-size: 33px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
}

.main-title-ver {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 4px;
  margin-top: 4px;
  padding: 3px 5px 1px;
  border: 1px solid rgba(240, 208, 96, 0.35);
  border-radius: 4px;
}

.sub-title {
  font-size: 13px;
  color: #c9a84c;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 18px;
  margin-left: 16px;
}

.stats {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 8px 16px;
}

.stats-text {
  font-size: 12px;
  color: rgba(220, 220, 232, 0.5);
}

.stats-divider {
  color: rgba(220, 220, 232, 0.2);
}

.update-time {
  margin-left: auto;
  margin-right: 24px;
}

.header-right {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}

.share-wrap,
.jump-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.share-icon,
.menu-icon {
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.3);
  border-radius: 4px;
  display: flex;
  position: relative;
}

.menu-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-line {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.share-icon {
  align-items: center;
  justify-content: center;
}

.share-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: absolute;
}

.share-dot-tl {
  top: 7px;
  left: 7px;
}

.share-dot-tr {
  top: 7px;
  right: 7px;
}

.share-dot-b {
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
}

.share-line {
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
}

.share-line-l {
  top: 10px;
  left: 11px;
  transform: rotate(-45deg);
}

.share-line-r {
  top: 10px;
  right: 10px;
  transform: rotate(45deg);
}

.filter-section {
  padding: 10px 16px 2px 12px;
  display: flex;
  position: fixed;
  top: 135px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg);
}

.search-hint {
  flex: 1;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.search-hint-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0d060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.search-hint-text {
  font-size: 12px;
  color: rgba(220, 220, 232, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.search-hint-reset {
  margin-left: auto;
  font-size: 18px;
  color: rgba(220, 220, 232, 0.55);
}

.loading-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.loading-text {
  font-size: 12px;
  color: rgba(220, 220, 232, 0.45);
  letter-spacing: 2px;
}

.loading-dots {
  display: flex;
  gap: 6px;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a84c;
  animation: loading-anim 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loading-anim {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.power-list {
  width: 100%;
  padding: 189px 16px 30px 0;
}

.power-item {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 1px;
  cursor: pointer;
}

.power-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--bar-w, 0%);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.power-item:active {
  background: rgba(201, 168, 76, 0.08);
}

.power-item-titanium::before {
  background: linear-gradient(90deg, transparent 0%, rgba(180, 180, 220, 0.22) 100%);
}

.power-item-platinum::before {
  background: linear-gradient(90deg, transparent 0%, rgba(42, 142, 204, 0.22) 100%);
}

.power-item-gold::before {
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.20) 100%);
}

.power-item-silver::before {
  background: linear-gradient(90deg, transparent 0%, rgba(100, 120, 160, 0.14) 100%);
}

.power-item-bronze::before {
  background: linear-gradient(90deg, transparent 0%, rgba(160, 80, 32, 0.12) 100%);
}

.power-item-default::before {
  background: linear-gradient(90deg, transparent 0%, rgba(80, 80, 80, 0.3) 100%);
}

.rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #090910;
  margin-right: 2px;
  margin-left: 14px;
  flex-shrink: 0;
  line-height: 1;
}

.rank-high {
  font-size: 14px;
}

.rank-mid {
  font-size: 12px;
}

.rank-low {
  font-size: 10px;
}

.rank-high.rank-1 {
  background: linear-gradient(145deg, #f0d060, #c9a030);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.rank-high.rank-2 {
  background: linear-gradient(145deg, #c8c8d8, #888898);
  box-shadow: 0 2px 6px rgba(140, 140, 160, 0.3);
}

.rank-high.rank-3 {
  background: linear-gradient(145deg, #c87030, #8a4010);
  box-shadow: 0 2px 6px rgba(160, 80, 32, 0.3);
}

.rank-mid,
.rank-low,
.rank-4,
.rank-5,
.rank-6,
.rank-7,
.rank-8,
.rank-9 {
  background: #ffffff22;
  color: rgba(220, 220, 232, 0.5);
}

.info-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding-inline: 8px;
}

.info-area-center {
  justify-content: center;
}

.name-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.pplp-sm-text {
  font-size: 10px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  margin-top: 1px;
}

.empty-tip {
  text-align: center;
  padding: calc(env(safe-area-inset-top, 0px) + 220px) 0 40px;
  font-size: 12px;
  color: rgba(220, 220, 232, 0.3);
  letter-spacing: 1px;
}

.refresh-tip {
  position: fixed;
  right: 18px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  font-size: 10px;
  color: rgba(220, 220, 232, 0.22);
}

.detail-overlay,
.more-overlay,
.search-overlay,
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.detail-overlay,
.more-overlay,
.search-overlay {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(5, 5, 10, 0.85);
}

.detail-sheet,
.more-sheet,
.search-sheet {
  width: 100%;
  border-radius: 24px 24px 0 0;
  animation: sheet-up 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes sheet-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.sheet-handle {
  width: 34px;
  height: 4px;
  background: rgba(220, 220, 232, 0.15);
  border-radius: 999px;
  margin: 10px auto 0;
}

.detail-sheet {
  background: linear-gradient(to bottom, #1a2a45d7 0%, #121e35ee 25%, #0c1420 100%);
  height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 0 22px calc(env(safe-area-inset-bottom, 0px) + 26px);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.75);
}

.sheet-bg {
  width: 100%;
  height: 220px;
  overflow: hidden;
  line-height: 0;
  border-radius: 24px 24px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 82%, #121c31 100%);
}

.sheet-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sheet-bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(to bottom,
      rgba(14, 14, 24, 0.08) 0%,
      rgba(18, 28, 49, 0.65) 58%,
      rgba(18, 28, 49, 0.92) 82%,
      rgba(18, 28, 49, 1) 100%);
  pointer-events: none;
}

.sheet-header {
  height: 136px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2px;
}

.sheet-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sheet-brand {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  color: rgba(220, 220, 232, 0.95);
  font-weight: 500;
  letter-spacing: 3px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.9);
}

.sheet-model {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.sheet-pplp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  min-height: 26px;
}

.sheet-pplp-badge,
.report-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.report-btn {
  gap: 3px;
}

.report-btn-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(9, 9, 16, 0.75);
}

.report-btn-arrow {
  font-size: 12px;
  color: rgba(9, 9, 16, 0.5);
}

.tag-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(9, 9, 16, 0.75);
}

.pplp-v {
  font-size: 10px;
  font-weight: 600;
  color: rgba(9, 9, 16, 0.6);
  position: relative;
  top: -4px;
  left: 1px;
}

.report-btn-alone {
  width: fit-content;
  margin-top: 8px;
}

.sheet-metrics {
  display: flex;
  gap: 7px;
  margin: 26px 0 24px;
  position: relative;
  z-index: 1;
}

.metric-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  gap: 6px;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.metric-gold {
  color: var(--gold);
}

.metric-rank {
  letter-spacing: 1px;
}

.metric-label {
  font-size: 12px;
  color: rgba(220, 220, 232, 0.4);
  font-weight: 500;
}

.sheet-specs {
  position: relative;
  z-index: 1;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  font-size: 12px;
  color: rgba(220, 220, 232, 0.65);
  font-weight: 500;
  flex-shrink: 0;
}

.spec-val-row {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.spec-val {
  font-size: 13px;
  color: #f0f0f0;
  font-weight: 400;
  text-align: right;
}

.spec-val.dim,
.spec-unit.dim {
  color: rgba(220, 220, 232, 0.3);
}

.spec-unit {
  font-size: 12px;
  color: rgba(220, 220, 232, 0.4);
  font-weight: 400;
  margin-left: 2px;
}

.more-sheet {
  background: #101a2edd;
  padding: 0 22px calc(env(safe-area-inset-bottom, 0px) + 26px);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
}

.more-title {
  display: block;
  text-align: left;
  padding-left: 20px;
  font-size: 21px;
  font-weight: 300;
  color: rgba(180, 180, 180, 0.5);
  letter-spacing: 2px;
  margin: 22px 0 20px;
}

.more-list {
  display: flex;
  flex-direction: column;
}

.more-item {
  width: 100%;
  padding: 18px 0 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  text-align: left;
}

.more-item:last-child {
  border-bottom: none;
  margin-bottom: 16px;
}

.more-item-icon {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.more-item:nth-child(1) .more-item-icon {
  background: #4a90d9;
}

.more-item:nth-child(2) .more-item-icon {
  background: #e74c3c;
}

.more-item:nth-child(3) .more-item-icon {
  background: #2ecc71;
}

.more-item:nth-child(4) .more-item-icon {
  background: #e67e22;
}

.more-item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.more-item-text {
  font-size: 18px;
  color: #eeeeeedd;
  letter-spacing: 3px;
}

.more-item-sub {
  font-size: 13px;
  color: rgba(200, 200, 210, 0.3);
  letter-spacing: 1px;
  margin-top: 2px;
}

.more-item-arrow {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.search-sheet {
  background: #101a2e;
  max-height: min(91vh, var(--search-sheet-max-height, 88vh));
  overflow-y: auto;
  padding: 2px 22px 25px;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
}

.search-sheet-header {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 16px;
}

.search-sheet-title {
  font-size: 21px;
  font-weight: 300;
  color: rgba(180, 180, 180, 0.5);
  letter-spacing: 2px;
}

.search-sheet-input {
  width: 100%;
  height: 36px;
  background: rgba(141, 141, 141, 0.01);
  border: 1px solid rgba(212, 212, 212, 0.3);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 12px;
  color: #e9e9eb;
  margin: 0 0 18px;
}

.search-sheet-input::placeholder {
  color: rgba(220, 220, 232, 0.4);
}

.search-suggest {
  margin: -8px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgb(6 16 35);
  overflow: hidden;
}

.search-suggest-list {
  max-height: var(--search-suggest-max-height, 240px);
  overflow-y: auto;
}

.search-suggest-item {
  width: 100%;
  border: none;
  background: transparent;
  color: #e9e9eb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.search-suggest-item:last-child {
  border-bottom: none;
}

.search-suggest-item:active {
  background: rgba(240, 208, 96, 0.12);
}

.search-suggest-main {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.search-suggest-meta {
  font-size: 10px;
  color: rgba(220, 220, 232, 0.56);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.search-group {
  margin-bottom: 16px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}

.search-group-title {
  font-size: 12px;
  color: #f0d060cc;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  white-space: nowrap;
  background: rgba(240, 208, 96, 0.12);
  border: 1px solid rgba(240, 208, 96, 0.025);
  border-radius: 8px;
}

.search-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  background: rgba(185, 185, 185, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(220, 220, 232, 0.95);
  cursor: pointer;
}

.search-tag-active {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.4);
  color: var(--gold);
  font-weight: 500;
}

.search-actions {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}

.search-confirm {
  flex: 2;
  height: 40px;
  border: 1px solid rgba(212, 168, 67, 0.03);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.25), rgba(160, 120, 32, 0.15));
  box-shadow: 0 2px 14px rgba(212, 168, 67, 0.12);
}

.search-confirm-text {
  font-size: 14px;
  color: #f0d060cc;
  font-weight: 600;
  letter-spacing: 1px;
}

.search-reset-btn {
  flex: 1;
  height: 40px;
  border: 1px solid rgba(240, 208, 96, 0.0005);
  border-radius: 12px;
  background: rgba(240, 208, 96, 0.1);
}

.search-reset-text {
  font-size: 14px;
  color: rgba(220, 220, 232, 0.75);
  font-weight: 500;
  letter-spacing: 2px;
}

.modal-overlay {
  background: rgba(8, 10, 28, 0.92);
  backdrop-filter: blur(1.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(168deg, #141e33 0%, #0c1220aa 100%);
  border: 1px solid rgba(100, 160, 255, 0.15);
  border-radius: 20px;
  padding: 28px 54px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(60, 120, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.modal-icon {
  width: 44px;
  height: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lock-shackle {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(140, 180, 255, 0.7);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}

.lock-body {
  width: 44px;
  height: 40px;
  background: linear-gradient(135deg, rgba(80, 130, 255, 0.3), rgba(60, 100, 220, 0.15));
  border: 1px solid rgba(100, 160, 255, 0.25);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-keyhole {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(140, 180, 255, 0.5);
  position: relative;
}

.lock-keyhole::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: rgba(140, 180, 255, 0.5);
  border-radius: 0 0 2px 2px;
}

.modal-title {
  font-size: 26px;
  font-weight: 400;
  color: #e8ecf4ee;
  letter-spacing: 4px;
  margin: 8px 0 6px 4px;
}

.modal-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(180, 180, 180, 0.5);
}

@media (min-width: 768px) {
  .container {
    max-width: 460px;
    margin-inline: auto;
    border-inline: 1px solid rgba(255, 255, 255, 0.05);
  }

  .detail-overlay,
  .more-overlay,
  .search-overlay,
  .modal-overlay {
    max-width: 460px;
    margin-inline: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}