/* ===== EXPLORE MORE CANONICAL / FINAL ===== */

#explore-analysis-wrap{
  position: relative !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  margin-top: 12px !important;
  margin-bottom: 10px !important;
  padding: 16px 16px 14px 16px !important;
}

#app-root.theme-dark #explore-analysis-wrap{
  background:
    radial-gradient(circle at top left, rgba(0,200,255,0.05), transparent 26%),
    linear-gradient(180deg, rgba(10,16,24,0.92) 0%, rgba(5,10,16,0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 40px rgba(0,0,0,0.26) !important;
}

#app-root.theme-light #explore-analysis-wrap{
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%) !important;
  border: 1px solid #d9e3ee !important;
  box-shadow: 0 14px 32px rgba(15,23,42,0.08) !important;
}

#explore-analysis-wrap .explore-analysis-title{
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 6px !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-analysis-title{
  color: #f3f7fb !important;
}

#app-root.theme-light #explore-analysis-wrap .explore-analysis-title{
  color: #0f172a !important;
}

#explore-analysis-wrap .explore-analysis-subtitle{
  font-size: 13px !important;
  margin-bottom: 14px !important;
  line-height: 1.45 !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-analysis-subtitle{
  color: rgba(232,241,242,0.78) !important;
}

#app-root.theme-light #explore-analysis-wrap .explore-analysis-subtitle{
  color: #5b6b7d !important;
}

#explore-analysis-wrap .explore-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

#explore-analysis-wrap .explore-group-card{
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 16px 18px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  transition:
    transform 160ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-group-card{
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,255,255,0.04), transparent 34%),
    linear-gradient(180deg, rgba(13,19,28,0.98) 0%, rgba(7,11,19,1) 100%) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 16px 34px rgba(0,0,0,0.24) !important;
}

#app-root.theme-light #explore-analysis-wrap .explore-group-card{
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fafe 100%) !important;
  border: 1px solid #d8e3ee !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    0 12px 24px rgba(15,23,42,0.08) !important;
}

#explore-analysis-wrap .explore-group-card:hover{
  transform: translateY(-2px) !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-group-card:hover{
  border-color: rgba(255,255,255,0.14) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 22px 44px rgba(0,0,0,0.32) !important;
}

#app-root.theme-light #explore-analysis-wrap .explore-group-card:hover{
  border-color: #cbd8e5 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    0 18px 32px rgba(15,23,42,0.11) !important;
}

#explore-analysis-wrap .explore-group-card::before{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 16px !important;
  bottom: 16px !important;
  width: 5px !important;
  border-radius: 999px !important;
}

#explore-analysis-wrap .explore-group-card:nth-child(1)::before{ background:#facc15 !important; }
#explore-analysis-wrap .explore-group-card:nth-child(2)::before{ background:#fde047 !important; }
#explore-analysis-wrap .explore-group-card:nth-child(3)::before{ background:#60a5fa !important; }
#explore-analysis-wrap .explore-group-card:nth-child(4)::before{ background:#fb7185 !important; }

#explore-analysis-wrap .explore-group-title{
  font-size: 16px !important;
  font-weight: 900 !important;
  margin-bottom: 15px !important;
  padding-left: 14px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.015em !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-group-title{ color:#f3f7fb !important; }
#app-root.theme-light #explore-analysis-wrap .explore-group-title{ color:#0f172a !important; }

#explore-analysis-wrap .explore-group-chips{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

#explore-analysis-wrap a.explore-chip{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  transition:
    transform 140ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease !important;
}

#app-root.theme-dark #explore-analysis-wrap a.explore-chip{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 6px 14px rgba(0,0,0,0.16) !important;
}

#app-root.theme-light #explore-analysis-wrap a.explore-chip{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border: 1px solid #d4dfeb !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.97),
    0 5px 12px rgba(15,23,42,0.05) !important;
}

#explore-analysis-wrap a.explore-chip:hover{
  transform: translateY(-1px) !important;
}

#app-root.theme-dark #explore-analysis-wrap a.explore-chip:hover{
  border-color: rgba(255,255,255,0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 20px rgba(0,0,0,0.24) !important;
}

#app-root.theme-light #explore-analysis-wrap a.explore-chip:hover{
  border-color: #c7d5e3 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    0 8px 18px rgba(15,23,42,0.08) !important;
}

#explore-analysis-wrap .explore-chip-symbol{
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-chip-symbol{ color:#f3f7fb !important; }
#app-root.theme-light #explore-analysis-wrap .explore-chip-symbol{ color:#0f172a !important; }

#explore-analysis-wrap .explore-chip-label{
  font-size: 11px !important;
  font-weight: 700 !important;
}

#app-root.theme-dark #explore-analysis-wrap .explore-chip-label{ color:rgba(232,241,242,0.68) !important; }
#app-root.theme-light #explore-analysis-wrap .explore-chip-label{ color:#64748b !important; }

@media (max-width: 1200px){
  #explore-analysis-wrap .explore-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px){
  #explore-analysis-wrap{
    padding: 14px 12px 12px 12px !important;
  }

  #explore-analysis-wrap .explore-grid{
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  #explore-analysis-wrap .explore-group-card{
    padding: 14px 14px !important;
    border-radius: 18px !important;
  }

  #explore-analysis-wrap .explore-group-title{
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  #explore-analysis-wrap a.explore-chip{
    padding: 9px 12px !important;
  }

  #explore-analysis-wrap .explore-group-card:hover,
  #explore-analysis-wrap a.explore-chip:hover{
    transform: none !important;
  }
}
