/* ===== Crystal Ocean Theme – Custom Styles ===== */

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #003d40; }
::-webkit-scrollbar-thumb { background: #00838f; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #26c6da; }

/* Body */
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }

/* Max container */
.max-w-container { max-width: 1440px; }

/* Glassmorphism */
.glass { background: rgba(255,255,255,0.07); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); }

/* Coral gradient background */
.bg-coral-gradient { background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%); }

/* Bonus badge glow */
.bonus-badge-glow { box-shadow: 0 0 40px rgba(255, 87, 34, 0.3), 0 0 80px rgba(0, 188, 212, 0.15), inset 0 1px 0 rgba(255,255,255,0.15); animation: badgePulse 3s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 40px rgba(255, 87, 34, 0.3), 0 0 80px rgba(0, 188, 212, 0.15); } 50% { box-shadow: 0 0 60px rgba(255, 87, 34, 0.5), 0 0 100px rgba(0, 188, 212, 0.25); } }

/* Parallax bubbles */
.parallax-bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(38,198,218,0.25), rgba(0,131,143,0.08)); border: 1px solid rgba(38,198,218,0.2); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; } 50% { transform: translateY(-20px) scale(1.05); opacity: 1; } }

/* Marquee */
.marquee-track { animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Game cards */
.game-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }

/* CTA primary hover effect */
.cta-primary { position: relative; overflow: hidden; }
.cta-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s ease; }
.cta-primary:hover::before { left: 100%; }

/* Provider word cloud tags */
.provider-tag { display: inline-block; color: #80deea; font-weight: 700; line-height: 1.4; padding: 2px 4px; border-radius: 4px; transition: color 0.2s ease, text-shadow 0.2s ease; cursor: default; }
.provider-tag:hover { color: #ff7043; text-shadow: 0 0 12px rgba(255,112,67,0.5); }

/* FAQ answer transition */
.faq-answer { transition: all 0.3s ease; }

/* Step badge */
.step-badge { position: relative; }
.step-badge::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(255,87,34,0.3); animation: badgePulse 2s ease-in-out infinite; }

/* Prose overrides for dark theme */
.prose { color: #b2ebf2; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: #ffffff; }
.prose a { color: #26c6da; }
.prose strong { color: #ffffff; }
.prose code { color: #ff7043; background: rgba(255,255,255,0.1); padding: 2px 6px; border-radius: 4px; }
.prose table { width: 100%; border-collapse: collapse; }
.prose thead { background: rgba(0,131,143,0.5); }
.prose th { color: #b2ebf2; padding: 10px 16px; text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.prose td { color: #e0f7fa; padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.prose tbody tr:hover { background: rgba(255,255,255,0.05); }
.prose ul li { color: #b2ebf2; }
.prose ol li { color: #b2ebf2; }

/* Ocean underline decoration */
.ocean-underline { position: relative; }
.ocean-underline::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #ff5722, #26c6da); border-radius: 2px; }

/* Responsive text */
@media (max-width: 640px) { .bonus-badge-glow { padding: 1.5rem; } }

/* Overflow-x-auto default table wrapper style */
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 1rem; }
