:root {
  scroll-behavior: smooth;
}

body {
  background-color: #0f0f0f;
  color: #e5e5e5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.gold-gradient-text {
  background: linear-gradient(to right, #f1e5ac, #d4af37, #aa8439);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-button {
  background: linear-gradient(to right, #d4af37, #aa8439);
  color: #000;
  transition: all 0.3s ease;
}

.gold-button:hover {
  background: linear-gradient(to right, #f1e5ac, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.movie-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.2);
}

.floating-app {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 50;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

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

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