/* FoxxyNime - Modern APK Style Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');
@import url('https://fonts.cdnfonts.com/css/heavitas');

/* Heavitas Typography & Mixed Purple Gradient */
.font-heavitas {
  font-family: 'Heavitas', sans-serif;
  letter-spacing: 0.03em;
}

.text-gradient-purple-mix {
  background: linear-gradient(135deg, #f3e8ff 0%, #d8b4fe 25%, #c084fc 50%, #a855f7 75%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.3));
}

:root {
  --bg-main: #000000;
  --bg-card: #080808;
  --bg-card-hover: #121212;
  --foxxy-red: #f43f5e;
  --foxxy-red-glow: rgba(244, 63, 94, 0.35);
  --foxxy-amber: #fbbf24;
  --foxxy-purple: #8b5cf6;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #000000;
  color: #f1f5f9;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Hardware Acceleration & Smooth Render */
.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.content-auto-render {
  content-visibility: auto;
  contain-intrinsic-size: 280px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #1c1c1c;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

/* Hide scrollbar for horizontal scroll chips */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Lightweight High-Performance Glassmorphism */
.glass-panel {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-dropdown {
  background: #080808;
  border: 1px solid rgba(244, 63, 94, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.9);
}

.glass-nav {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.glass-bottom-bar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Atmospheric Side & Bottom Fog for Edge-to-Edge Hero */
.hero-side-fog-left {
  background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.4) 28%, transparent 50%);
  pointer-events: none;
}

.hero-side-fog-right {
  background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.4) 28%, transparent 50%);
  pointer-events: none;
}

.hero-bottom-fog {
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.9) 20%, transparent 60%);
  pointer-events: none;
}

.hero-top-fog {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, transparent 35%);
  pointer-events: none;
}

/* Glowing Elements */
.glow-red {
  box-shadow: 0 0 20px var(--foxxy-red-glow);
}

.glow-red-sm {
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.25);
}

/* Verified Red Badge Pulse */
.red-badge-icon {
  color: #f43f5e;
  filter: drop-shadow(0 0 6px rgba(244, 63, 94, 0.6));
}

/* Content Card Aspect & Transitions */
.content-card {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.6), 0 0 12px rgba(244, 63, 94, 0.2);
}

.content-card:active {
  transform: scale(0.98);
}

/* 18+ Content Blur Lock */
.adult-locked-blur {
  filter: blur(14px) brightness(0.6);
  pointer-events: none;
}

/* APK Ripple / Tap effect */
.app-tap-effect {
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.app-tap-effect:active {
  transform: scale(0.95);
  opacity: 0.85;
}

/* Gradient Texts */
.text-gradient-foxxy {
  background: linear-gradient(135deg, #fb7185 0%, #f43f5e 50%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fde047 0%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

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