/* ============================================================
   ROX PLAY TV - ULTRA MODERN DARK & NEON THEME
   Paleta Oficial: Neon Magenta (#BD00FF) & Electric Cyan (#00C6FF)
   Fundo: Obsidian Dark (#090A0F / #0D0E15 / #12141F)
   ============================================================ */

:root {
  --rox-magenta: #BD00FF;
  --rox-cyan: #00C6FF;
  --rox-dark-bg: #090A0F;
  --rox-card-bg: #12141F;
  --rox-card-hover: #181B2B;
  --rox-border: rgba(255, 255, 255, 0.08);
  --rox-border-glow: rgba(0, 198, 255, 0.3);
  --rox-text-primary: #FFFFFF;
  --rox-text-secondary: #94A3B8;
  --rox-success: #10B981;
  --rox-warning: #F59E0B;
  --rox-danger: #EF4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--rox-dark-bg);
  color: var(--rox-text-primary);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #090A0F;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--rox-cyan);
}

/* Neon Text Gradient */
.neon-text {
  background: linear-gradient(135deg, #BD00FF 0%, #00C6FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-cyan-text {
  background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-magenta-text {
  background: linear-gradient(135deg, #FF007A 0%, #BD00FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradients & Buttons */
.btn-rox-gradient {
  background: linear-gradient(135deg, #BD00FF 0%, #00C6FF 100%);
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(189, 0, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-rox-gradient:hover {
  box-shadow: 0 0 35px rgba(0, 198, 255, 0.6);
  transform: translateY(-2px);
}

.btn-rox-gradient:active {
  transform: translateY(0);
}

.btn-rox-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.btn-rox-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rox-cyan);
  color: var(--rox-cyan);
  transform: translateY(-2px);
}

/* Glassmorphism Cards */
.rox-glass-card {
  background: rgba(18, 20, 31, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.rox-glass-card:hover {
  border-color: rgba(0, 198, 255, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 198, 255, 0.15);
}

/* Glow Elements */
.bg-glow-magenta {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(189, 0, 255, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.bg-glow-cyan {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* Badges */
.badge-trial {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #FBBF24;
}

.badge-active {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
}

.badge-expired {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.badge-blocked {
  background: rgba(100, 116, 139, 0.2);
  border: 1px solid rgba(100, 116, 139, 0.4);
  color: #CBD5E1;
}

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

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

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

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

/* Responsive Utilities & Mobile Fine-tuning */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 640px) {
  .rox-glass-card {
    border-radius: 1.25rem;
  }
}

