/* src/styles.css */
.rsm-tile--no-transition {
  transition: none !important;
}
.rsm-tile--blur-fast {
  filter: blur(5px);
}
.rsm-tile--blur-medium {
  filter: blur(3px);
}
.rsm-tile--blur-slow {
  filter: blur(2px);
}
.rsm-tile--blur-turtle {
  filter: blur(1px);
}
.rsm-window--gradient {
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 1) 75%,
      transparent 100%);
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 1) 75%,
      transparent 100%);
}
.rsm-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: none;
  transition: filter 0.15s ease;
}
.rsm-tiles {
  will-change: transform;
}
.rsm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  user-select: none;
  line-height: 1;
}
.rsm-btn:active {
  transform: scale(0.96);
}
.rsm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.rsm-btn--shuffle {
  background-color: #ffffff;
  color: #1a1a2e;
  box-shadow: 0 2px 12px rgba(39, 147, 158, 0.35);
}
.rsm-btn--shuffle:hover {
  box-shadow: 0 4px 20px rgba(39, 147, 158, 0.5);
  transform: translateY(-1px);
}
.rsm-btn--stop {
  background-color: #e63946;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(230, 57, 70, 0.4);
}
.rsm-btn--stop:hover {
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.55);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .rsm-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
/*# sourceMappingURL=index.css.map */