/* ============================================================
   AION Culture — Status widget styles
   ============================================================ */
.aion-status-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1F2A44;
  color: #F4EFE7;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 28px;
  box-shadow: 0 6px 18px rgba(31, 42, 68, 0.25);
  max-width: 380px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.aion-status-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(31, 42, 68, 0.32);
  color: #F4EFE7;
}
.aion-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #B08A4C;
  display: inline-block;
  flex-shrink: 0;
  animation: aion-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(176, 138, 76, 0.7);
}
.aion-status-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B08A4C;
  font-weight: 700;
  margin-right: 4px;
  flex-shrink: 0;
}
.aion-status-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
.aion-status-widget.aion-status-live .aion-status-dot {
  background: #2E7D32;
  animation: aion-pulse-live 2s ease-in-out infinite;
}
.aion-status-widget.aion-status-countdown .aion-status-dot {
  background: #B08A4C;
}
@keyframes aion-pulse {
  0%   { transform: scale(1);   opacity: 1;   box-shadow: 0 0 0 0 rgba(176, 138, 76, 0.7); }
  70%  { transform: scale(1.4); opacity: 0.7; box-shadow: 0 0 0 8px rgba(176, 138, 76, 0); }
  100% { transform: scale(1);   opacity: 1;   box-shadow: 0 0 0 0 rgba(176, 138, 76, 0); }
}
@keyframes aion-pulse-live {
  0%   { transform: scale(1);   opacity: 1;   box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  70%  { transform: scale(1.3); opacity: 0.85; box-shadow: 0 0 0 10px rgba(46, 125, 50, 0); }
  100% { transform: scale(1);   opacity: 1;   box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}
@media (max-width: 640px) {
  .aion-status-widget {
    right: 12px;
    bottom: 12px;
    font-size: 12px;
    padding: 8px 12px;
    max-width: calc(100vw - 24px);
  }
  .aion-status-text { max-width: calc(100vw - 130px); }
}
