img.events-icon {
  width: 80px;
  height: 80px;
}

.event-hero {
  min-height: 120vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 4rem;
}

.object-cover {
  object-fit: cover;
}

/* Custom extra utilities support */
#stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #0c0835 0%, #040114 100%);
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration, 3s) infinite ease-in-out var(--delay, 0s);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.1;
  }

  50% {
    opacity: 1;
  }
}

/* custom yellow glows */
.btn-yellow,
.btn-yellow:hover {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: #000 !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  box-shadow: 0 0 15px rgba(230, 171, 41, 0.4);
  border-radius: 30px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(230, 171, 41, 0.7);
}

.glow-text-yellow {
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(230, 171, 41, 0.5);
}

.glow-text-cyan {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 228, 234, 0.5);
}

/* Custom interactive tab selectors */
.custom-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 228, 234, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-tab-btn.active {
  background: var(--cyan);
  color: black;
  box-shadow: 0 0 15px var(--cyan);
  border-color: var(--cyan);
}

.custom-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-filter-btn.active {
  background: var(--yellow);
  color: black;
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(230, 171, 41, 0.4);
}

/* Custom layout modules & typography mapping to replace Tailwind */
.font-sans {
  font-family: var(--t-font), sans-serif !important;
}

.font-display {
  font-family: var(--h-font), sans-serif !important;
}

.font-mono {
  font-family: monospace !important;
}

.leading-relaxed {
  line-height: 1.625 !important;
}

.text-slate-100 {
  color: #f1f5f9 !important;
}

.text-slate-200 {
  color: #e2e8f0 !important;
}

.text-slate-300 {
  color: #cbd5e1 !important;
}

.text-slate-400 {
  color: #94a3b8 !important;
}

.text-slate-500 {
  color: #64748b !important;
}

/* Custom stack layout spacing replacements for Tailwind space-y-* */
.space-y-1>*+* {
  margin-top: 0.25rem !important;
}

.space-y-2>*+* {
  margin-top: 0.5rem !important;
}

.space-y-3>*+* {
  margin-top: 1rem !important;
}

.space-y-4>*+* {
  margin-top: 1.5rem !important;
}

/* Gorgeous custom sci-fi card (Zero white/pale border, premium shadow & transition) */
.cosmic-card {
  background: linear-gradient(135deg, rgba(23, 12, 49, 0.85) 0%, rgba(11, 4, 25, 0.95) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 1rem !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 1.5rem !important;
}

.cosmic-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0, 228, 234, 0.18) !important;
}

.cosmic-card .icon-box {
  transition: all 0.4s ease !important;
}

.cosmic-card:hover .icon-box {
  transform: scale(1.08) !important;
}

.cosmic-card .card-title {
  transition: all 0.3s ease !important;
}

.cosmic-card:hover .card-title {
  color: var(--cyan) !important;
}

#bookingModal .modal-content {
  background-image: var(--p-gradient);
}

#bookingModal .modal-header {
  background: var(--yellow);
  color: black;
  border-color: black;
}

.event-hero .overlay {
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .event-hero {
    background-position: right;
  }
}