@font-face {
  font-family: 'Nexa-Heavy';
  src: url('./Fonts/Nexa-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Butler-Medium';
  src: url('./Fonts/Butler_Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --font-display: 'Nexa-Heavy', sans-serif;
  --font-serif: 'Butler-Medium', serif;
}

/* Glassmorphism utility (Light Theme) */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
  scrollbar-width: none;  /* Firefox */
}

/* UI/UX Twist: Spotlight Bento Grid Effect (Light Theme) */
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(0, 0, 0, 0.03),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 400ms ease;
}

.bento-card:hover::before {
  opacity: 1;
  background: radial-gradient(
    800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(249, 115, 22, 0.15),
    transparent 40%
  );
}

/* Brutalist Rap Battle Redesign */
.brutalist-shadow {
  box-shadow: 8px 8px 0px #000;
  transition: all 0.2s ease;
}
.brutalist-shadow:hover {
  box-shadow: 4px 4px 0px #000;
  transform: translate(4px, 4px);
}
.brutalist-border {
  border: 4px solid #000;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  width: 100%;
}
.marquee-content {
  display: flex;
  animation: marquee 15s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.glitch-hover {
  position: relative;
}
.glitch-hover:hover {
  animation: glitch-anim 0.2s cubic-bezier(.25, .46, .45, .94) both infinite;
  color: #FF4500;
  text-shadow: 2px 2px 0px #000;
}
@keyframes glitch-anim {
  0% { transform: translate(0) }
  20% { transform: translate(-2px, 2px) }
  40% { transform: translate(-2px, -2px) }
  60% { transform: translate(2px, 2px) }
  80% { transform: translate(2px, -2px) }
  100% { transform: translate(0) }
}
