/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 24 2025 | 15:19:37 */
/* ===========================
   TOP BANNER — BRIGHTLEAF STYLE
   =========================== */

.topbanner {
  background: linear-gradient(90deg, #975BE5 0%, #7E3AE0 100%);
  color: #ffffff;
  padding: 7px 22px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0px;
  margin: 0 auto 0 auto;
  max-width: 100%;
  box-shadow: 0 6px 20px rgba(151, 91, 229, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbanner a {
  text-decoration: none;
}

/* BUTTON */
.topbannerbutton {
  background: #ffffff;
  color: #7E3AE0 !important;
  padding: 2px 6px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
  box-shadow: 0 3px 10px rgba(255,255,255,0.2);
}

.topbannerbutton:hover {
  background: #7E3AE0;
  color: #ffffff !important;
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 600px) {
  .topbanner {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  .topbannerbutton {
    padding: 7px 16px;
  }
}

