/* AlterSpin Casino – Custom CSS */

:root {
  --color-navy-900: #0b1120;
  --color-navy-800: #0f172a;
  --color-navy-700: #1e2d45;
  --color-iceblue-600: #0ea5e9;
  --color-iceblue-400: #7dd3fc;
  --color-iceblue-300: #bae6fd;
  --color-silver: #e2e8f0;
  --color-silver-muted: rgba(226,232,240,0.75);
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(14,165,233,0.25); }
  50% { box-shadow: 0 0 22px 6px rgba(14,165,233,0.55); }
}

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.glow-pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}

.float-up {
  animation: float-up 4s ease-in-out infinite;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Prose / Markdown content styling */
.prose-content {
  color: var(--color-silver-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}

.prose-content h2 {
  color: var(--color-iceblue-400);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(14,165,233,0.25);
  letter-spacing: 0.02em;
}

.prose-content h3 {
  color: var(--color-iceblue-300);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.prose-content p {
  margin-bottom: 1.25rem;
  color: var(--color-silver-muted);
}

.prose-content a {
  color: var(--color-iceblue-400);
  text-decoration: underline;
  text-decoration-color: rgba(125,211,252,0.4);
  transition: color 0.2s;
}

.prose-content a:hover {
  color: var(--color-iceblue-300);
}

.prose-content ul {
  list-style: disc;
  padding-left: 1.6em;
  margin-bottom: 1.25rem;
  color: var(--color-silver-muted);
}

.prose-content ol {
  list-style: decimal;
  padding-left: 1.6em;
  margin-bottom: 1.25rem;
  color: var(--color-silver-muted);
}

.prose-content li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose-content blockquote {
  border-left: 4px solid var(--color-iceblue-600);
  background: rgba(14,165,233,0.07);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--color-iceblue-300);
  font-style: italic;
}

.prose-content thead {
  background-color: #1e2d45;
}

.prose-content th {
  text-align: left;
  padding: 0.75rem 1rem;
  color: var(--color-iceblue-300);
  font-weight: 600;
  border-bottom: 2px solid rgba(14,165,233,0.3);
  white-space: nowrap;
}

.prose-content td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(30,45,69,0.8);
  color: var(--color-silver-muted);
  vertical-align: top;
}

.prose-content tr:nth-child(even) {
  background-color: rgba(30,45,69,0.4);
}

.prose-content tr:hover {
  background-color: rgba(14,165,233,0.05);
}

.prose-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
  margin: 2rem auto;
  border: 1px solid rgba(14,165,233,0.2);
}

.prose-content hr {
  border: none;
  border-top: 1px solid rgba(14,165,233,0.2);
  margin: 2.5rem 0;
}

.prose-content strong {
  color: var(--color-silver);
  font-weight: 700;
}

.prose-content em {
  color: var(--color-iceblue-300);
}

.prose-content code {
  background: rgba(14,165,233,0.1);
  color: var(--color-iceblue-300);
  padding: 0.1em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

/* Table wrapper for overflow */
.table-wrapper,
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

/* Review page table - match Payments & Withdrawals on home page */
.page-review .prose-content .table-responsive {
  border-radius: 1rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.page-review .prose-content .table-responsive table {
  font-size: 0.875rem;
}

.page-review .prose-content .table-responsive thead {
  background-color: #1e2d45;
}

.page-review .prose-content .table-responsive th {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--color-iceblue-300);
  border-bottom: 1px solid #1e3a5f;
}

.page-review .prose-content .table-responsive tbody tr:nth-child(odd) {
  background-color: #0b1120;
}

.page-review .prose-content .table-responsive tbody tr:nth-child(even) {
  background-color: #0f172a;
}

.page-review .prose-content .table-responsive td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1e2d45;
}

.page-review .prose-content .table-responsive td:first-child {
  color: #e2e8f0;
  font-weight: 500;
}

.page-review .prose-content .table-responsive td:last-child {
  color: var(--color-iceblue-400);
}

/* Responsive media defaults */
video, iframe {
  max-width: 100%;
}
