/* Slotshopper Custom CSS */

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

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

@keyframes chipGlow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(217, 119, 6, 0.5); }
  50% { box-shadow: 0 0 22px 6px rgba(217, 119, 6, 0.9); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.chip-glow {
  animation: chipGlow 2.4s ease-in-out infinite;
}

.float-anim {
  animation: parallaxFloat 5s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

/* Prose Styles */
.prose {
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 100%;
}

.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fbbf24;
  margin-top: 2.2em;
  margin-bottom: 0.75em;
  border-bottom: 2px solid rgba(180, 83, 9, 0.4);
  padding-bottom: 0.35em;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #34d399;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1.2em;
  color: #d1fae5;
}

.prose a {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: #f59e0b;
}

.prose ul {
  list-style: disc;
  padding-left: 1.6em;
  margin-bottom: 1.2em;
  color: #d1fae5;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.6em;
  margin-bottom: 1.2em;
  color: #d1fae5;
}

.prose li {
  margin-bottom: 0.4em;
}

.prose blockquote {
  border-left: 4px solid #d97706;
  padding-left: 1em;
  color: #a7f3d0;
  font-style: italic;
  margin: 1.5em 0;
  background: rgba(6, 78, 59, 0.4);
  border-radius: 0 6px 6px 0;
  padding: 0.8em 1.2em;
}

.prose table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.prose table th {
  background: rgba(6, 78, 59, 0.8);
  color: #fbbf24;
  font-weight: 700;
  padding: 0.65em 1em;
  text-align: left;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.prose table td {
  padding: 0.55em 1em;
  border: 1px solid rgba(6, 78, 59, 0.6);
  color: #d1fae5;
  background: rgba(2, 44, 34, 0.5);
}

.prose table tr:nth-child(even) td {
  background: rgba(6, 78, 59, 0.35);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5em 0;
  border: 2px solid rgba(217, 119, 6, 0.4);
}

.prose strong {
  color: #fbbf24;
  font-weight: 700;
}

.prose code {
  background: rgba(6, 78, 59, 0.6);
  color: #34d399;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Scrollable table wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

/* Word cloud */
.word-cloud span {
  display: inline-block;
  margin: 0.3em 0.4em;
  color: #fbbf24;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
  cursor: default;
}

.word-cloud span:hover {
  color: #34d399;
  transform: scale(1.12);
}

/* Nav */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu */
#mobile-menu {
  background: #022c22;
  border-top: 2px solid rgba(217, 119, 6, 0.5);
}

/* Slot card hover */
.slot-card {
  transition: transform 0.25s, box-shadow 0.25s;
}

.slot-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.35);
}

/* CTA button */
.btn-primary {
  background: linear-gradient(135deg, #b45309, #d97706);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.75em 1.8em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fbbf24;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.72em 1.8em;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #d97706;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-secondary:hover {
  background: rgba(217, 119, 6, 0.15);
  transform: translateY(-2px);
}

/* Step badge */
.step-badge {
  width: 2.8em;
  height: 2.8em;
  border-radius: 50%;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(217, 119, 6, 0.6);
}

/* Promo card */
.promo-card {
  background: linear-gradient(160deg, rgba(6,78,59,0.85), rgba(2,44,34,0.95));
  border: 1px solid rgba(217,119,6,0.35);
  border-radius: 14px;
  padding: 1.6em;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.promo-card:hover {
  border-color: rgba(217,119,6,0.75);
  box-shadow: 0 8px 28px rgba(217,119,6,0.2);
}

/* FAQ accordion */
.faq-item summary {
  cursor: pointer;
  padding: 1em 1.2em;
  color: #fbbf24;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary {
  color: #34d399;
}

.faq-answer {
  padding: 0 1.2em 1em;
  color: #d1fae5;
  line-height: 1.7;
}
