.homepage-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, transparent 0, rgba(8, 10, 15, 0.12) 52%, rgba(8, 10, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 10, 15, 0.12) 0, transparent 32%, rgba(8, 10, 15, 0.32) 100%);
}

.homepage-hero {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
}

.album-search {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background: rgba(14, 17, 23, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.album-search__intro {
  margin-bottom: 18px;
  text-align: left;
}

.album-search__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-search__title {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.album-search__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.album-search__select-wrap {
  position: relative;
  min-width: 0;
}

.album-search__select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #17191f;
  border-bottom: 2px solid #17191f;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.album-search__select {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.94);
  color: #17191f;
  font-size: 15px;
  font-weight: 500;
  line-height: 54px;
  text-overflow: ellipsis;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.album-search__select:hover {
  background: #fff;
}

.album-search__select:focus-visible {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.album-search__button {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 14px;
  background: #fff;
  color: #17191f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.album-search__button:hover {
  background: #f2f2f3;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.album-search__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  outline-offset: 3px;
}

.album-search__button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.album-search__button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.album-search__button span {
  color: inherit !important;
}

.home-copyright {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 575.98px) {
  .album-search {
    width: calc(100% - 16px);
    padding: 20px;
    border-radius: 18px;
  }

  .album-search__intro {
    margin-bottom: 15px;
  }

  .album-search__controls {
    grid-template-columns: 1fr;
  }

  .album-search__button {
    width: 100%;
  }

  .home-copyright {
    bottom: 14px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .album-search__select,
  .album-search__button {
    transition: none;
  }
}
