.mangariom-static-bar {
  width: 100%;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.mangariom-static-bar .container {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  justify-content: space-between;
}

.mangariom-text {
  font-weight: 900;
  color: var(--mr-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 3px 4px #0000004a;
}

/* Bell Icon Animation */
.mangariom-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2rem;
  vertical-align: middle;
  animation: ring-bell 2s infinite ease-in-out;
}

@keyframes ring-bell {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  45% {
    transform: rotate(5deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Mangariom Stats Notification UI/UX */
.mangariom-stats-bar {
  background: linear-gradient(135deg, var(--mr-bg-start), var(--mr-bg-end));
  color: var(--mr-text);
  border-bottom: 2px solid rgba(106, 74, 0, 0.35);
  box-shadow:
    0 8px 24px rgba(106, 74, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
  animation: statsBarSlideIn 0.5s ease-out both;
}

.mangariom-stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.45) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: statsBarShine 3s ease-in-out infinite;
  pointer-events: none;
}

.mangariom-subtitle {
  color: rgba(61, 42, 0, 0.95);
  font-weight: 600;
}

.mangariom-stats-bar div.buttons {
  display: flex;
  gap: 10px;
}

.mangariom-btn {
  background: var(--mr-btn-bg);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(61, 42, 0, 0.35);
  transition: 0.2s ease;
  font-size: 13px;
  border: 1px solid;
}
.mangariom-btn:hover {
  background: var(--mr-btn-hover);
  transform: translateY(-2px);
  color: #ffd201;
  box-shadow: 0 4px 8px rgba(21, 101, 192, 0.4);
  animation: none;
}

/* Hope campaign variant */
.mangariom-hope-bar {
  border-bottom: 1px solid rgba(255, 238, 190, 0.45);
  box-shadow:
    0 14px 30px rgba(5, 11, 22, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mangariom-hope-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 201, 106, 0.2), transparent 30%),
    radial-gradient(circle at 85% 40%, rgba(117, 215, 255, 0.2), transparent 28%);
  pointer-events: none;
}

.mangariom-hope-bar .container {
  position: relative;
  z-index: 2;
}

.mangariom-hope-bar .mangariom-text {
  text-shadow: 0 2px 10px rgba(5, 9, 20, 0.45);
}

.mangariom-hope-bar .mangariom-title {
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
}

.mangariom-hope-bar .mangariom-subtitle {
  color: rgba(245, 249, 255, 0.9);
  font-size: 0.92rem;
}

.mangariom-hope-bar .mangariom-icon {
  animation: hopeFlicker 2.8s ease-in-out infinite;
}

.mangariom-hope-bar .mangariom-btn {
  color: #2c1a00;
  border-color: rgba(255, 242, 212, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.mangariom-hope-bar .mangariom-btn:hover {
  color: #1f1100;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.33);
}

.mangariom-hope-bar .mangariom-btn-alt {
  background: rgba(255, 255, 255, 0.14);
  color: #f4f8ff;
  border-color: rgba(255, 255, 255, 0.45);
}

.mangariom-hope-bar .mangariom-btn-alt:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

@keyframes hopeFlicker {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 212, 121, 0.5));
  }
  50% {
    transform: translateY(-1px) scale(1.05);
    filter: drop-shadow(0 0 7px rgba(255, 212, 121, 0.7));
  }
}

@keyframes statsBarSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes statsBarShine {
  0%,
  60% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* Mobile Improvements */
/* Mobile Improvements */
@media (max-width: 768px) {
  .mangariom-static-bar .container {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
    text-align: center;
  }

  .mangariom-text {
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }

  .mangariom-icon {
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .mangariom-text span {
    font-size: 14px;
  }

  .mangariom-hope-bar .mangariom-title {
    font-size: 0.98rem;
  }

  .mangariom-hope-bar .mangariom-subtitle {
    font-size: 0.84rem;
  }

  .mangariom-btn {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    border-radius: 50px;
  }

  .mangariom-stats-bar div.buttons {
    width: 100%;
    text-align: center;
  }
}
