.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;

  width: 300px;
  background-color: #1a1a1a;
  padding: 10px 0; 
  border-radius: 12px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.03);

  z-index: 1000;
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;

  pointer-events: none;
  visibility: hidden;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  padding: 0; 
}

.dropdown-content .section-title {
  padding: 0 12px;

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  color: #9a9a9a;
  text-align: center;

  line-height: 1;
  margin-top: 24px;    
  margin-bottom: 12px; 
}

.dropdown-section:first-child .section-title {
  margin-top: 6px;
}

.dropdown-content *,
.dropdown-content *::before,
.dropdown-content *::after {
  margin: 0;
  padding: 0;
  float: none;
  background: none;
  border: none;
  box-shadow: none;
}

.dropdown-content font,
.dropdown-content br {
  display: none !important;
}

.dropdown-content a {
  display: block;
  width: 100%; 
  margin: 0;
  
  padding: 6px 25px;
  font-size: 14px;
  line-height: 1.2;
  color: #d0d0d0;
  text-decoration: none;
  white-space: nowrap;
  text-align: left;
  transition: color 0.2s ease; /* Transition only the color */
}

.dropdown-content a:hover {
  background-color: transparent !important; 
  color: #5d81ff;
  text-decoration: none;
}