.promo-banner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #edf5f5;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.promo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #0043a4 0%, #0066cc 100%);
  padding: 15px 30px;
  border-radius: 60px;
  box-shadow: 0 10px 25px rgba(0, 67, 164, 0.3);
  position: relative;
  z-index: 10;
}

.promo-header img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.promo-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.manipulators-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 30px;
  padding: 40px 30px;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  border: 2px dashed #0043a4;
}

.manipulator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  width: 100%;
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.image-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  z-index: 1;
}

.manipulator-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 1;
}

.manipulator-card:first-child .manipulator-image {
  transform: translateX(-15%) scale(1.05);
}

.manipulator-card:last-child .manipulator-image {
  transform: translateX(15%) scale(1.05);
}

.manipulator-card:hover .manipulator-image {
  transform: scale(1.08);
}

.manipulator-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
  width: 100%;
  background: linear-gradient(135deg, #0043a4 0%, #0066cc 100%);
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 67, 164, 0.3);
  position: relative;
  z-index: 3;
  margin-top: -10px;
}

.content-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manipulator-name {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.manipulator-name strong {
  color: #ffa500;
  text-shadow: 0 2px 4px rgba(255, 165, 0, 0.4);
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.old-price {
  font-size: 22px;
  color: #ff6b6b;
  text-decoration: line-through;
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.new-price {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: linear-gradient(to right, #f80202, #feb47b);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
  border: none;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
}

.btn:active {
  transform: translateY(1px);
}

.decoration {
  position: absolute;
  z-index: 0;
}

.decoration-1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 50%;
  top: -30px;
  left: -30px;
}

.decoration-2 {
  width: 80px;
  height: 80px;
  background: rgba(0, 103, 204, 0.1);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 1023px) {
  .manipulators-container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 40px 20px;
  }

  .manipulator-card {
    width: 100%;
    max-width: 100%;
  }

  .manipulator-content {
    height: 220px;
  }

  .manipulator-card:first-child .manipulator-image,
  .manipulator-card:last-child .manipulator-image {
    transform: scale(1);
  }

  .manipulator-card:hover .manipulator-image {
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 32px;
  }

  .promo-header {
    padding: 12px 25px;
  }

  .promo-header img {
    width: 60px;
  }

  .manipulator-name {
    font-size: 26px;
  }

  .new-price {
    font-size: 28px;
  }

  .old-price {
    font-size: 18px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 180px;
  }

  .manipulator-content {
    height: 200px;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .promo-title {
    font-size: 28px;
  }

  .manipulator-name {
    font-size: 22px;
  }

  .new-price {
    font-size: 24px;
  }

  .manipulators-container {
    padding: 30px 15px;
  }

  .manipulator-content {
    height: 190px;
    padding: 15px 10px;
  }

  .btn {
    max-width: 160px;
    padding: 10px 20px;
  }
}
