@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-dark-950: #090a0f;
  --color-dark-900: #0f111a;
  --color-dark-850: #151824;
  --color-dark-800: #1c2030;
  --color-dark-700: #282d45;
  --color-dark-600: #383e5e;
  --color-gold-400: #facc15;
  --color-gold-500: #eab308;
  --color-gold-600: #ca8a04;
  --color-line: #06c755;
}

* {
  box-sizing: border-box;
  border-color: rgba(255, 255, 255, 0.08);
}

body {
  background-color: #090a0f;
  color: #f1f5f9;
  font-family: 'Prompt', 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f111a;
}
::-webkit-scrollbar-thumb {
  background: #282d45;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ca8a04;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(21, 24, 36, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 179, 8, 0.4);
  box-shadow: 0 12px 30px -10px rgba(234, 179, 8, 0.2), 0 0 20px -5px rgba(157, 78, 221, 0.15);
}

/* Gradients */
.text-gold-gradient {
  background: linear-gradient(135deg, #fff275 0%, #ffd700 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-neon-pink-gradient {
  background: linear-gradient(135deg, #ff758c 0%, #ff2d75 50%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 50%, #ca8a04 100%);
}

.bg-vip-gradient {
  background: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
}

.bg-line-btn {
  background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
}
.bg-line-btn:hover {
  background: linear-gradient(135deg, #05b34c 0%, #009900 100%);
}

/* Pulse badge */
.pulse-badge {
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Modal and Drawer Animations */
.animate-fade-in {
  animation: fadeIn 0.25s ease-out forwards;
}
.animate-scale-up {
  animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-slide-left {
  animation: slideLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Custom Checkbox & Range styling */
input[type="range"] {
  accent-color: #facc15;
}

input[type="checkbox"] {
  accent-color: #eab308;
}

/* Image Aspect Ratio Fallbacks */
.aspect-card {
  aspect-ratio: 3 / 4;
}
.aspect-story {
  aspect-ratio: 9 / 16;
}
