.oes-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu,
    Cantarell, 'Helvetica Neue', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
  width: 100%;
  box-sizing: border-box;
}

.oes-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.oes-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

.oes-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.oes-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px 8px;
  min-width: 36px;
}

.oes-time-block span:first-child {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.oes-time-block .oes-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  opacity: 0.9;
}

.oes-sep {
  font-weight: bold;
  font-size: 16px;
  margin-top: -6px;
}

.oes-banner .oes-btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.oes-banner .oes-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .oes-banner-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .oes-timer {
    margin: 0 auto;
  }
}
