.top-explore {
  position: relative;
  padding: 120px 40px;
  background:
    radial-gradient(circle at 10% 20%, rgba(195, 221, 255, 0.45), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(223, 237, 255, 0.55), transparent 60%),
    #f6faff;
  overflow: hidden;
}

.top-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(123, 153, 194, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 153, 194, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.top-explore::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(188, 218, 255, 0.28), transparent 20%),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.34), transparent 16%);
  pointer-events: none;
}

.top-explore-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: auto;
}

.top-explore-header {
  text-align: center;
  margin-bottom: 40px;
}

.top-explore-title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #18304f;
}

.top-explore-desc {
  margin: 14px auto 0;
  max-width: 680px;
  color: #5a7290;
  font-size: 15px;
  line-height: 1.9;
}

.top-explore-search-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 320px);
  gap: 22px;
  align-items: start;
}

.top-explore-search-panel,
.top-explore-side {
  display: grid;
  gap: 18px;
}

.top-explore-search-panel {
  padding: 24px;
  min-height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 20px 44px rgba(93, 122, 166, 0.12),
    inset 0 0 0 1px rgba(100, 132, 180, 0.1);
  backdrop-filter: blur(12px);
}

.top-explore-side {
  align-content: start;
  grid-auto-rows: minmax(0, auto);
}

.top-explore-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.top-explore-search-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: inset 0 0 0 1px rgba(108, 137, 179, 0.14);
  font-size: 15px;
  color: #223a59;
}

.top-explore-search-input:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(111, 152, 216, 0.16),
    inset 0 0 0 1px rgba(86, 121, 173, 0.18);
}

.top-explore-search-button {
  min-width: 134px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f4f8f 0%, #3f79c7 52%, #79a9e8 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(56, 97, 152, 0.18);
  transition: all .3s;
}

.top-explore-search-button:hover {
  background: linear-gradient(135deg, #24589f 0%, #4a84d1 52%, #8bb8ef 100%);
  box-shadow: 0 18px 34px rgba(56, 97, 152, 0.22);
}

.top-explore-search-note {
  color: #6b8099;
  font-size: 13px;
}

.top-explore-search-results {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(247, 251, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(122, 148, 183, 0.12);
}

.top-explore-search-results.is-hidden {
  display: none;
}

.top-explore-search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #44617f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.top-explore-search-reset {
  border: 0;
  background: transparent;
  color: #5d79a0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.top-explore-search-status {
  color: #69809c;
  font-size: 14px;
}

.top-explore-search-list {
  display: grid;
  gap: 10px;
}

.top-explore-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: #334155;
  box-shadow: inset 0 0 0 1px rgba(115, 142, 180, 0.1);
  transition: all .3s;
}

.top-explore-result-item:hover {
  background: #ffffff;
  box-shadow:
    0 12px 24px rgba(89, 118, 163, 0.12),
    inset 0 0 0 1px rgba(115, 142, 180, 0.14);
}

.top-explore-result-thumb {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #e3efff 0%, #f5f9ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-explore-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-explore-result-thumb span {
  font-size: 18px;
  font-weight: 800;
  color: #4972a8;
}

.top-explore-result-copy {
  min-width: 0;
}

.top-explore-result-copy strong,
.top-explore-result-copy small {
  display: block;
}

.top-explore-result-copy strong {
  font-size: 15px;
  color: #223a59;
}

.top-explore-result-copy small {
  margin-top: 4px;
  font-size: 12px;
  color: #7087a4;
}

.top-explore-main,
.top-explore-random {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
  border-radius: 22px;
  text-decoration: none;
  transition: all .3s;
}

.top-explore-main {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 132px;
  background: linear-gradient(135deg, #1f4f8f, #3573bf);
  background-image: linear-gradient(135deg, #1f4f8f 0%, #3573bf 52%, #6ea0e4 100%);
  background-size: 200% 100%;
  background-position: 0 0;
  color: #fff;
  box-shadow:
    0 14px 32px rgba(56, 97, 152, .16),
    0 0 22px rgba(89, 141, 216, 0.22);
  position: relative;
  overflow: hidden;
}

.top-explore-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.top-explore-main:hover {
  background-position: 100% 0;
  box-shadow:
    0 18px 36px rgba(56, 97, 152, .24),
    0 0 28px rgba(89, 141, 216, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.top-explore-main:hover::before {
  opacity: 1;
}

.top-explore-main:visited,
.top-explore-main:hover,
.top-explore-main:focus-visible {
  color: #ffffff;
}

.top-explore-main-text {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.top-explore-count {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  opacity: .88;
}

.top-explore-random {
  min-height: 116px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 28px rgba(86, 118, 164, .08),
    inset 0 0 0 1px rgba(106, 134, 175, 0.1);
  color: #334155;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid rgba(104, 132, 173, 0.16);
}

.top-explore-random:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 244, 255, 0.98) 100%);
  box-shadow:
    0 18px 34px rgba(86, 118, 164, .14),
    inset 0 0 0 1px rgba(106, 134, 175, 0.16);
  border-bottom-color: rgba(70, 108, 165, 0.32);
  color: #334155;
}

.top-explore-random::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.top-explore-random::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  color: #6a86a9;
  opacity: 0.7;
  transition: all .3s ease;
}

.top-explore-random:hover::before {
  opacity: 1;
}

.top-explore-random:hover::after {
  color: #315f99;
  opacity: 1;
}

.top-explore-random:hover img {
  transform: scale(1.06);
}

.top-explore-random:visited,
.top-explore-random:hover,
.top-explore-random:focus-visible {
  color: #334155;
}

.top-explore-random:focus-visible {
  box-shadow:
    0 0 0 3px rgba(92, 136, 199, 0.18),
    0 18px 34px rgba(86, 118, 164, .14),
    inset 0 0 0 1px rgba(106, 134, 175, 0.16);
}

.top-explore-random img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 64px;
  transition: transform .3s ease;
}

.top-explore-random-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.top-explore-random-copy small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #6880a2;
}

.top-explore-random-copy strong {
  margin-top: 4px;
  font-size: 18px;
  color: #1f4f8f;
  transition: color .3s ease;
}

.top-explore-random-copy span {
  margin-top: 4px;
  font-size: 13px;
  color: #7187a2;
}

.top-explore-random:hover .top-explore-random-copy strong {
  color: #19487f;
}

.top-explore-popular {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.top-explore-popular-label {
  margin: 0;
  color: #5f7798;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.top-explore-popular-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.top-explore-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #35577f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(112, 141, 184, 0.1);
  transition: all .3s;
}

.top-explore-chip:hover {
  background: #ffffff;
  box-shadow:
    0 10px 20px rgba(84, 115, 159, 0.1),
    inset 0 0 0 1px rgba(112, 141, 184, 0.14);
}

.top-explore-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0 0;
}

.explore-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 22px 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  color: #334155;
  transition: all .3s;
  box-shadow:
    0 12px 28px rgba(86, 118, 164, .08),
    inset 0 0 0 1px rgba(110, 139, 181, 0.1);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid rgba(92, 126, 177, 0.16);
}

.explore-item:hover {
  background: #ffffff;
  box-shadow:
    0 18px 34px rgba(86, 118, 164, .14),
    inset 0 0 0 1px rgba(110, 139, 181, 0.14);
  border-bottom-color: rgba(58, 103, 173, 0.34);
}

.explore-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.explore-item::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #6b87aa;
  opacity: 0.72;
  transition: all .3s ease;
}

.explore-item:hover::before {
  opacity: 1;
}

.explore-item:hover::after {
  color: #2f5f9b;
  opacity: 1;
}

.explore-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  transition: transform .3s ease;
}

.explore-item:hover img {
  transform: scale(1.06);
}

.explore-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  transition: color .3s ease;
}

.explore-item:hover .explore-label {
  color: #1f4f8f;
}

.explore-count {
  font-size: 12px;
  margin-top: 6px;
  color: #7a90ac;
  opacity: .9;
  transition: color .3s ease;
}

.explore-item:hover .explore-count {
  color: #5e7da4;
}

.explore-item:focus-visible {
  box-shadow:
    0 0 0 3px rgba(92, 136, 199, 0.18),
    0 18px 34px rgba(86, 118, 164, .14),
    inset 0 0 0 1px rgba(110, 139, 181, 0.14);
}

@media (max-width: 920px) {
  .top-explore-search-wrap {
    grid-template-columns: 1fr;
  }

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

  .top-explore-popular {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .top-explore {
    padding: 90px 20px;
  }

  .top-explore-title {
    font-size: 28px;
  }

  .top-explore-header {
    margin-bottom: 28px;
  }

  .top-explore-search {
    grid-template-columns: 1fr;
  }

  .top-explore-search-button {
    width: 100%;
  }

  .top-explore-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-explore-side {
    grid-template-columns: 1fr;
  }

  .top-explore-main,
  .top-explore-random {
    padding: 20px 18px;
  }

  .top-explore-main {
    width: 100%;
    min-height: 0;
    padding: 18px 18px 8px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    box-shadow:
      0 14px 28px rgba(56, 97, 152, .18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid rgba(18, 54, 103, 0.32);
  }

  .top-explore-main::after {
    content: "↗";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
  }

  .top-explore-main-text {
    font-size: 17px;
    line-height: 1.35;
    width: 100%;
    text-align: center;
  }

  .top-explore-count {
    margin-top: 0;
    font-size: 12px;
    width: 100%;
    text-align: center;
  }

  .top-explore-random {
    display: none;
  }

  .top-explore-popular {
    margin-top: 18px;
  }

  .explore-item {
    min-height: 136px;
    border-radius: 16px;
  }
}
