/* ==========================================
   KEKKAFIRST PROMO BAR
========================================== */

.promo-bar {
  width: 100%;
  box-sizing: border-box;
  background: #0B65FA;
  color: #FFFFFF;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}


/* ==========================================
   PROMO CONTENT
========================================== */

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.promo-text {
  color: #FFFFFF;
  text-align: center;
}


/* ==========================================
   PROMO LINK
========================================== */

.promo-bar a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo-bar strong {
  font-weight: 700;
}


/* ==========================================
   PING INDICATOR
========================================== */

.promo-ping {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 12px;
  height: 12px;
  min-width: 12px;

  flex-shrink: 0;
}


/* Animated outer circle */

.promo-ping-wave {
  position: absolute;
  display: inline-flex;

  width: 16px;
  height: 16px;

  border-radius: 9999px;
  background: #FFFFFF;
  opacity: 0.75;

  animation: promoPing 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}


/* Solid center dot */

.promo-ping-dot {
  position: relative;
  display: inline-flex;

  width: 12px;
  height: 12px;

  border-radius: 9999px;
  background: #FFFFFF;
}


/* Ping animation */

@keyframes promoPing {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 680px) {

  .promo-bar {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
  }

  .promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    margin: 0 auto;
  }

  .promo-text {
    color: #FFFFFF;
    text-align: left;
  }


  /* Smaller indicator on mobile */

  .promo-ping {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  .promo-ping-wave {
    width: 12px;
    height: 12px;
  }

  .promo-ping-dot {
    width: 9px;
    height: 9px;
  }
}