/* =========================================================
   Sweet Kebab — International Kebab Day Countdown
   Drop-in banner. All scoped under .skbanner.
   Target: July 4, 12:00 CEST (10:00 UTC)
   ========================================================= */
.skbanner {
  --sk-gold: #e8c372;
  --sk-gold-glow: rgba(232, 195, 114, 0.15);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  position: relative;
  width: 100%;
  color: #f4eeda;
  background: linear-gradient(135deg, rgba(26, 17, 12, 0.95) 0%, rgba(45, 23, 15, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 195, 114, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Add a glowing radial backlight behind the timer */
.skbanner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 100px;
  background: radial-gradient(circle, rgba(232, 195, 114, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle moving light sheen */
.skbanner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 247, 233, 0.05) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: sk-sheen 6s infinite linear;
  pointer-events: none;
}

@keyframes sk-sheen {
  0% { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

.skbanner__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
}

/* Pulsing Kebab Icon */
.skbanner__mark {
  width: 24px;
  height: 24px;
  flex: none;
  animation: sk-pulse 3s infinite ease-in-out;
}

@keyframes sk-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.08) rotate(3deg); filter: drop-shadow(0 0 4px var(--sk-gold)); }
}

.skbanner__main {
  font-size: clamp(13px, 2.4vw, 15.5px);
  letter-spacing: .01em;
  line-height: 1.3;
}

.skbanner__label {
  font-weight: 500;
  opacity: .92;
}

.skbanner__day {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-style: italic;
  color: var(--sk-gold);
}

.skbanner__clock {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 195, 114, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
  margin: 0 4px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.05);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.skbanner__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .62;
  display: block;
  margin-top: 3px;
}

.skbanner__x {
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #f4eeda;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.skbanner__x:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 640px) {
  .skbanner__inner { padding: 10px 14px; gap: 8px; }
  .skbanner__mark { width: 20px; height: 20px; }
  .skbanner__main { font-size: 13px; }
  .skbanner__x { right: 6px; }
}
