/* PLOT — CMP banner styles. Independent of styles.css so it loads everywhere. */
.cmp-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99999;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(232, 197, 71, 0.45);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 10, 10, 0.96), rgba(31, 26, 27, 0.96));
  color: #F2EBDC;
  font-family: 'Cairo', 'Tajawal', system-ui, sans-serif;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65), 0 0 28px rgba(232, 197, 71, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: cmp-fade-in 220ms ease;
}

@keyframes cmp-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cmp-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cmp-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1.55;
  flex: 1 1 360px;
}

.cmp-text strong {
  font-family: 'Rajdhani', 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E8C547;
}

.cmp-text a {
  color: #5499E0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cmp-text a:hover { color: #87BAFF; }

.cmp-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cmp-btn {
  font-family: 'Rajdhani', 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  min-height: 40px;
}

.cmp-btn.cmp-accept {
  border: 2px solid #E8C547;
  color: #0E0A0A;
  background: linear-gradient(180deg, #F5D560, #E8C547);
  box-shadow: 0 0 18px rgba(232, 197, 71, 0.45);
}

.cmp-btn.cmp-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(232, 197, 71, 0.65);
}

.cmp-btn.cmp-reject {
  border: 2px solid rgba(58, 127, 216, 0.7);
  color: #DCEAFF;
  background: rgba(26, 63, 122, 0.6);
}

.cmp-btn.cmp-reject:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(58, 127, 216, 0.55);
}

@media (max-width: 600px) {
  .cmp-banner { padding: 14px; }
  .cmp-inner { flex-direction: column; align-items: stretch; }
  .cmp-buttons { justify-content: stretch; }
  .cmp-buttons .cmp-btn { flex: 1; }
}
