/* OnlySpins Casino - Custom Animations & Styling */


/* Keyframe Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes gildedGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  }
}

@keyframes parallaxFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes chipHalo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes cardLift {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}

/* Custom Utility Classes */
.floating-card {
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-card:hover {
  animation: cardLift 0.3s ease forwards;
}

.gilded-glow {
  animation: gildedGlow 2s ease-in-out infinite;
}

.parallax-element {
  animation: parallaxFloat 8s ease-in-out infinite;
}

.chip-halo {
  position: relative;
}

.chip-halo::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed #ffd700;
  border-radius: 50%;
  animation: chipHalo 10s linear infinite;
}

.diagonal-sheen {
  position: relative;
  overflow: hidden;
}

.diagonal-sheen::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  animation: diagonalSheen 3s ease-in-out infinite;
}

/* Gradient Backgrounds */
.amethyst-plum-gradient {
  background: linear-gradient(135deg, #9966cc 0%, #663399 100%);
}

.midnight-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #9966cc, #663399);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #aa77dd, #774499);
}

/* Focus Rings */
.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

/* Prose Styling for Readability */
.prose {
  line-height: 1.7;
  color: #e2e8f0;
  max-width: none;
}

.prose h1 {
  color: #ffd700;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prose h2 {
  color: #ffd700;
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.5rem;
}

.prose h3 {
  color: #aa77dd;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  text-align: justify;
}

.prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.prose ul,
.prose ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.prose li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.prose li::marker {
  color: #ffd700;
}

.prose strong {
  color: #ffd700;
  font-weight: 600;
}

.prose em {
  color: #aa77dd;
  font-style: italic;
}

.prose table {
  width: 100%;
  overflow-x: auto;
  display: block;
  border-collapse: collapse;
}

.prose th,
.prose td {
  word-wrap: break-word;
}

.prose th {
  background: rgba(153, 102, 204, 0.3);
  color: #ffd700;
  font-weight: 600;
}

.prose td {
  background: rgba(26, 26, 46, 0.3);
}

.prose blockquote {
  border-left: 4px solid #ffd700;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #aa77dd;
  background: rgba(153, 102, 204, 0.1);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

/* Mobile Navigation */
.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Bonus Badge Styling */
.bonus-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: gildedGlow 3s ease-in-out infinite;
}

/* Game Card Hover Effects */
.game-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(153, 102, 204, 0.4);
}

/* Payment Method Icons */
.payment-icon {
  width: 40px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0.9);
}

/* Responsive Design Helpers */
@media (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

/* FAQ Schema Styling */
.faq-item {
  border-bottom: 1px solid #374151;
  padding: 1.5rem 0;
}

.faq-question {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.faq-answer {
  color: #e2e8f0;
  line-height: 1.6;
}
