
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Base Settings */
body {
  background-color: #F8F9FA;
  color: #334155;
  font-family: 'Inter', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Custom Luxury Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F8F9FA; 
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0F4C5C; 
}

/* --- Visual Effects --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* --- Animations --- */
@keyframes lift {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.animate-fade-in-up {
  animation: lift 0.8s ease-out forwards;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.hover-pause:hover {
  animation-play-state: paused;
}

/* --- Loader --- */
.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(226, 192, 68, 0.3);
  border-radius: 50%;
  border-top-color: #E2C044;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Utility for JS Toggling --- */
.hidden {
  display: none !important;
}
