/*
Theme Name: Fast Payout Arcade
Theme URI: https://fastpayoutarcade.com
Author: Fast Payout Arcade Audit Team
Description: Bespoke production-ready WordPress theme for Fast Payout Arcade. Features complete 3-tier SILO architecture (/fastest-payouts/, /game-types/, /reviews/), live withdrawal speed verification metrics, instant PayPal/Venmo gateway badges, payment proof modal viewer, and interactive payout calculator.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fast-payout-arcade
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  color-scheme: dark;
}

body {
  background-color: #0a0d14;
  color: #f1f5f9;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0d14;
}
::-webkit-scrollbar-thumb {
  background: #1f293d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}

/* Neon Glow & Card FX */
.arcade-card {
  background: linear-gradient(180deg, rgba(18, 24, 36, 0.9) 0%, rgba(13, 17, 26, 0.95) 100%);
  border: 1px solid #1f293d;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.arcade-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

.speed-pill {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.instant-pill {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #22d3ee;
}

.lowmin-pill {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

/* Custom Pulse Animation */
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.live-pulse {
  animation: pulseGlow 2s infinite ease-in-out;
}