/* APG Official Streaming Styles & Netflix-Inspired Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --bg-main: #080c14;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --apg-wine: #6b0f24;
  --apg-wine-hover: #881337;
  --apg-gold: #fbbf24;
  --apg-cyan: #38bdf8;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: #f8fafc;
  overflow-x: hidden;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #080c14;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Horizontal Row No-Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Streaming Card Hover Effects */
.streaming-poster {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
}

.streaming-poster:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.8), 0 0 0 1.5px rgba(251, 191, 36, 0.4);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Modal backdrop blur */
.modal-backdrop {
  backdrop-filter: blur(12px);
  background-color: rgba(4, 7, 13, 0.82);
}

/* Status Badges */
.badge-paid {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-pending {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Tool Badges */
.tool-tag {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

/* Hero Vignette */
.hero-vignette {
  background: linear-gradient(0deg, #080c14 0%, rgba(8, 12, 20, 0.85) 30%, rgba(8, 12, 20, 0.3) 70%, rgba(8, 12, 20, 0.9) 100%),
              linear-gradient(90deg, #080c14 0%, rgba(8, 12, 20, 0.8) 40%, transparent 100%);
}

/* Horizontal Row Arrows */
.row-arrow {
  opacity: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.horizontal-row-container:hover .row-arrow {
  opacity: 1;
}
