@import "tailwindcss";

@theme {
  --color-gold: #d4af37;
  --color-gold-light: #f1e5ac;
  --color-black-gold: #1a1a1a;
}

body {
  background-color: var(--color-black-gold);
  color: white;
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, sans-serif;
}

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

.bg-gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
}

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

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

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

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

.float-btn {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.glow-gold {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* 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;
}
