/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
@keyframes blink-winner-keyframes {
  0% { background-color: transparent; }
  50% { background-color: var(--blink-color, rgba(255, 0, 0, 0.25)); }
  100% { background-color: transparent; }
}
.blink-winner {
  animation: blink-winner-keyframes 1s linear infinite;
}

.blink-live {
  animation: blink-live-keyframes 2s linear infinite;
}

@keyframes blink-live-keyframes {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 1.5rem;
}

.marquee-content {
  display: inline-block;
  animation: smooth-marquee 20s linear infinite;
}

.marquee-text {
  display: inline-block;
}

@keyframes smooth-marquee {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* For smaller screens, slightly faster animation */
@media (max-width: 640px) {
  .marquee-content {
    animation-duration: 20s;
  }
}

.object-fit-inherit {
  object-fit: inherit;
}

[data-slider-target="dot"] {
  min-height: 1.75rem;
  min-width: 1.75rem;
}
