
#promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 998;
  display: none;
}

.promo-section {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: white;
  padding: 29px;
  border-radius: 8px;
  display: none;
  justify-content: space-between;
  align-items: center;
  max-width: 1424px;
  width: 90%;
  z-index: 1000;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.promo-section .promo-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: -0.3px;
}

.promo-section .promo-body {
  font-weight: 400;
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.29px;
}

.promo-section .promo-body span {
  font-weight: 500;
}

.promo-section .promo-text {
  font-weight: 500;
  font-size: 19px;
  position: relative;
  line-height: 1.2;
  cursor: default;
}

.promo-section .promo-text span {
  color: #76C2FB;
}

.promo-section .promo-copy-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745;
  color: white !important;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo-section .promo-copy-label.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.promo-section .promo-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.promo-section .promo-close-btn img {
  display: block;
  width: 20px;
  height: 20px;
}

.promo-section .promo-close-btn:hover img {
  opacity: 0.7;
}

.promo-section.open {
  display: flex;
  opacity: 1;
  z-index: 10000;
}


@media (max-width: 767px) {
  .promo-section {
    padding-top: 60px;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .promo-section .promo-title {
    font-size: 39px;
    line-height: 40px;
  }
  .promo-section .promo-body {
    font-size: 17px;
    line-height: 25px;
  }
  .promo-section .promo-text {
    order: -1;
    font-size: 18px;
  }
}
