/* BlackBay Digital - Gold Theme */

* { box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0907; }
::-webkit-scrollbar-thumb { background: #333025; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4a4535; }

::selection { background: rgba(229, 184, 37, 0.25); color: #fff; }

html { scroll-behavior: smooth; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.4s ease-out forwards; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 184, 37, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(229, 184, 37, 0); }
}

.star-btn {
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, color 0.15s ease;
}
.star-btn:hover { transform: scale(1.15); }

input:focus, textarea:focus, select:focus { outline: none; }
input[type="file"] { cursor: pointer; }

/* Gold glow on hover for cards */
.gold-glow:hover {
  box-shadow: 0 0 20px rgba(229, 184, 37, 0.08);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slideUp { animation: slideUp 0.3s ease-out forwards; }

/* Dotted pattern background for stats section */
.bg-dotted-pattern {
  background-image: radial-gradient(circle, rgba(212, 165, 32, 0.25) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

/* Gold text glow for hero */
.text-glow-gold {
  filter: drop-shadow(0 0 20px hsla(45, 90%, 55%, 0.6));
}
