/* Dark Premium Event Theme */
body {
  overflow-x: hidden;
  background-color: #0B1D14; 
  color: #E8F3EC; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, a {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 15px; 
}

/* Base custom interactive styling */
.ticket-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3); 
}

/* Premium Gold Button */
.btn-premium {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.2); /* matched to new #D4AF37 gold */
  opacity: 0.95;
}

/* Subtle clean scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0B1D14; 
}
::-webkit-scrollbar-thumb {
  background: #143524; 
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37; 
}

/* Premium Navbar Seal */
.nav-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%);
  box-shadow: 0 0 12px rgba(212,175,55,0.25), inset 0 0 8px rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-brand-logo {
    width: 42px;
    height: 42px;
  }
}

.nav-brand-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
}
