/* /assets/css/promo.css */
.promo-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  z-index: 9999;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  color: #fff;
}

.promo-bottom { bottom: 12px; }
.promo-top { top: 12px; }

.promo-bar .promo-left { display: flex; flex-direction: column; gap: 2px; }
.promo-bar .promo-title { font-weight: 700; font-size: 14px; }
.promo-bar .promo-body { font-size: 12px; opacity: .92; }

.promo-actions { display:flex; gap: 8px; align-items: center; }
.promo-btn {
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  color: #fff;
}

.promo-icons a {
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  opacity: .95;
  padding: 6px 8px;
  border-radius: 10px;
  display: inline-block;
  background: rgba(255,255,255,.12);
}

/* Card */
.promo-card {
  border-radius: 16px;
  padding: 14px;
  margin: 12px 0;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  color: #fff;
}

.promo-card .promo-title { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.promo-card .promo-body { font-size: 14px; opacity: .92; margin-bottom: 10px; }
.promo-card .promo-actions { justify-content: flex-start; flex-wrap: wrap; }