/* ==========================================================================
   Sticky Performer Bottom Banner Component — DISONESTA Theme
   ========================================================================== */

.sticky-performer-bar {
  background: rgba(18, 16, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  bottom: 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.65), 0 0 16px rgba(251, 93, 128, 0.12);
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  transform: translateY(110%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.38s ease;
  visibility: hidden;
  z-index: 9999;
}

.sticky-performer-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.sticky-performer-bar.is-closed {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(110%) !important;
  visibility: hidden !important;
}

.sticky-performer-bar__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: clamp(20px, 3.5vw, 56px);
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
  padding: 22px 80px;
  position: relative;
  width: 100%;
}

.sticky-performer-bar__performer {
  align-items: center;
  display: flex;
  gap: 24px;
  min-width: 0;
}

.sticky-performer-bar__avatar-wrap {
  flex: 0 0 auto;
  height: 140px;
  margin-top: -50px;
  position: relative;
  width: 140px;
}

.sticky-performer-bar__avatar {
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8), 0 0 28px rgba(251, 93, 128, 0.7);
  display: block;
  height: 140px;
  object-fit: cover;
  width: 140px;
}

.sticky-performer-bar__info {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.sticky-performer-bar__title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  text-align: center;
}

.sticky-performer-bar__name {
  color: #ffffff;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-performer-bar__sub {
  color: #d8cde0;
  font-size: 1.25rem;
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}

.sticky-performer-bar__sub strong {
  color: #ffffff;
  font-weight: 800;
}

.sticky-performer-bar__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.sticky-performer-bar__btn {
  align-items: center;
  background: var(--home-pink, #fb5d80);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(251, 93, 128, 0.65);
  color: #ffffff !important;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  padding: 16px 44px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.sticky-performer-bar__btn:hover {
  background: #ff7293;
  box-shadow: 0 0 38px rgba(251, 93, 128, 0.95);
  transform: scale(1.05);
}

.sticky-performer-bar__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #c4b9cc;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.sticky-performer-bar__close span {
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.sticky-performer-bar__close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 980px) {
  .sticky-performer-bar__inner {
    justify-content: space-between;
    padding: 14px 60px 14px 18px;
  }
  .sticky-performer-bar__avatar-wrap {
    height: 60px;
    margin-top: 0;
    width: 60px;
  }
  .sticky-performer-bar__avatar {
    border-width: 3px;
    height: 60px;
    width: 60px;
  }
  .sticky-performer-bar__name {
    font-size: 1.25rem;
  }
  .sticky-performer-bar__sub {
    font-size: 0.9rem;
  }
  .sticky-performer-bar__btn {
    font-size: 0.98rem;
    padding: 11px 24px;
  }
  .sticky-performer-bar__close {
    height: 34px;
    right: 16px;
    width: 34px;
  }
  .sticky-performer-bar__close span {
    font-size: 1.35rem;
  }
}
