/* ========================================
   ANNOUNCEMENT BANNER — Dark Premium
   ======================================== */

.announcement-banner {
  background: #060a14;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.announcement-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  position: relative;
}

.announcement-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.announcement-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Badge */
.announcement-banner__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #060a14;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 4px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Text */
.announcement-banner__text {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.announcement-banner__text strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* CTA link */
.announcement-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #60a5fa;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.announcement-banner__cta:hover {
  color: #93bbfd;
  border-bottom-color: rgba(96, 165, 250, 0.3);
}

.announcement-banner__cta svg {
  transition: transform 0.2s ease;
}

.announcement-banner__cta:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 767px) {
  .announcement-banner__inner {
    padding: 14px 20px;
  }

  .announcement-banner__content {
    gap: 10px;
    justify-content: center;
  }

  .announcement-banner__text {
    font-size: 0.76rem;
  }

  .announcement-banner__cta {
    font-size: 0.74rem;
  }
}

@media (max-width: 480px) {
  .announcement-banner__content {
    flex-direction: column;
    gap: 8px;
  }

  .announcement-banner__text {
    font-size: 0.72rem;
  }
}
