.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.genre-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.genre-item:hover {
  background: #e9ecef;
  border-color: #bbb;
}

.img-fluid {
  max-width: 400px;
  height: auto;
}

.logo-img {
  display: block;
  width: 400px;
  height: auto;
  margin-top: 40px;
}

.top-hero {
  position: relative;
  overflow: hidden;
}

.top-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 153, 0.55), transparent 35%),
    radial-gradient(circle at bottom right, rgba(188, 216, 193, 0.6), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #fff 48%, #f7f2e8 100%);
}

.top-hero__panel {
  position: relative;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 25px 60px rgba(52, 39, 22, 0.12);
}

.top-hero__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff1cf;
  color: #8f5a14;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.top-hero__logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
}

.top-hero__title {
  color: #2a2118;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
}

.top-hero__lead {
  max-width: 34rem;
  color: #54453a;
  font-size: 1.08rem;
  line-height: 1.8;
}

.top-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top-hero__chips span {
  padding: 8px 14px;
  border: 1px solid #e7d8c5;
  border-radius: 999px;
  background: #fff;
  color: #76563b;
  font-size: 0.92rem;
}

.top-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.top-hero__visual {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-hero__card {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(44, 34, 22, 0.14);
}

.top-hero__card--main {
  padding: 18px;
  transform: none;
  width: min(100%, 560px);
}

.top-hero__card--note {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: min(320px, 82%);
  padding: 18px 20px;
}

.top-hero__photo {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  letter-spacing: 0.02em;
}

@media (max-width: 991.98px) {
  .top-hero__panel {
    padding: 24px;
  }

  .top-hero__visual {
    align-items: stretch;
  }

  .top-hero__card--main {
    width: 100%;
  }

  .top-hero__card--note {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 575.98px) {
  .top-hero__actions {
    flex-direction: column;
  }

  .top-hero__actions .btn {
    width: 100%;
  }
}