* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Rajdhani', 'Inter', sans-serif;
      background: #080808;
      overflow-x: hidden;
    }

    .font-display {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.05em;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #080808;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #FF6B00, #FF003C);
      border-radius: 3px;
    }

    /* ===== KEYFRAMES ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes floatSlow {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }

      100% {
        background-position: 200% 0;
      }
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        box-shadow: 0 0 10px #FF6B00, 0 0 20px #FF6B0060, 0 0 40px #FF6B0030;
      }

      50% {
        box-shadow: 0 0 20px #FF6B00, 0 0 40px #FF6B0080, 0 0 80px #FF6B0040;
      }
    }

    @keyframes textGlow {

      0%,
      100% {
        text-shadow: 0 0 10px #FF6B00, 0 0 20px #FF6B0080;
      }

      50% {
        text-shadow: 0 0 20px #FF6B00, 0 0 40px #FF6B00, 0 0 60px #FF6B0060;
      }
    }

    @keyframes scanline {
      0% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(100vh);
      }
    }

    @keyframes beatPulse {

      0%,
      100% {
        transform: scaleY(1);
      }

      50% {
        transform: scaleY(1.8);
      }
    }

    @keyframes borderGlow {

      0%,
      100% {
        border-color: #FF6B00;
        box-shadow: 0 0 5px #FF6B0060;
      }

      33% {
        border-color: #9B00FF;
        box-shadow: 0 0 5px #9B00FF60;
      }

      66% {
        border-color: #FF003C;
        box-shadow: 0 0 5px #FF003C60;
      }
    }

    @keyframes flicker {

      0%,
      98%,
      100% {
        opacity: 1;
      }

      99% {
        opacity: 0.4;
      }
    }

    @keyframes marqueeScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ===== ANIMATION CLASSES ===== */
    .animate-fadeInUp {
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .animate-fadeIn {
      animation: fadeIn 0.6s ease-out forwards;
    }

    .animate-float {
      animation: floatSlow 6s ease-in-out infinite;
    }

    .animate-slideIn {
      animation: slideIn 0.5s ease-out forwards;
    }

    .animate-glow-pulse {
      animation: glowPulse 2s ease-in-out infinite;
    }

    .animate-text-glow {
      animation: textGlow 2.5s ease-in-out infinite;
    }

    .animate-flicker {
      animation: flicker 4s linear infinite;
    }

    .animate-shimmer {
      background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.15), transparent);
      background-size: 200% 100%;
      animation: shimmer 2s infinite;
    }

    .stagger-1 {
      animation-delay: 0.1s;
    }

    .stagger-2 {
      animation-delay: 0.2s;
    }

    .stagger-3 {
      animation-delay: 0.3s;
    }

    /* ===== CARD HOVER ===== */
    .card-hover {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(255, 107, 0, 0.25), 0 0 30px rgba(255, 107, 0, 0.1);
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
      transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 35px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.3);
    }

    /* ===== PATTERN ===== */
    .pattern-dots {
      background-image:
        radial-gradient(rgba(255, 107, 0, 0.25) 1px, transparent 1px),
        radial-gradient(rgba(155, 0, 255, 0.1) 1px, transparent 1px);
      background-size: 30px 30px, 60px 60px;
      background-position: 0 0, 15px 15px;
    }

    .pattern-grid {
      background-image:
        linear-gradient(rgba(255, 107, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.08) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    /* ===== GLOW BORDER ===== */
    .glow-border {
      border: 1px solid transparent;
      animation: borderGlow 4s linear infinite;
    }

    /* ===== SCANLINE OVERLAY ===== */
    .scanlines::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          rgba(0, 0, 0, 0.08) 0px,
          rgba(0, 0, 0, 0.08) 1px,
          transparent 1px,
          transparent 3px);
      pointer-events: none;
      z-index: 1;
    }

    /* ===== WAVEFORM BAR ===== */
    .waveform-bar {
      width: 4px;
      border-radius: 2px;
      background: linear-gradient(180deg, #FF6B00, #FF003C);
      animation: beatPulse 0.8s ease-in-out infinite;
    }

    .waveform-bar:nth-child(1) {
      height: 16px;
      animation-delay: 0s;
    }

    .waveform-bar:nth-child(2) {
      height: 28px;
      animation-delay: 0.1s;
    }

    .waveform-bar:nth-child(3) {
      height: 20px;
      animation-delay: 0.2s;
    }

    .waveform-bar:nth-child(4) {
      height: 36px;
      animation-delay: 0.15s;
    }

    .waveform-bar:nth-child(5) {
      height: 24px;
      animation-delay: 0.05s;
    }

    .waveform-bar:nth-child(6) {
      height: 32px;
      animation-delay: 0.25s;
    }

    .waveform-bar:nth-child(7) {
      height: 18px;
      animation-delay: 0.3s;
    }

    /* ===== NEON TEXT ===== */
    .neon-orange {
      color: #FF6B00;
      text-shadow: 0 0 10px #FF6B00, 0 0 20px #FF6B0080;
    }

    .neon-purple {
      color: #9B00FF;
      text-shadow: 0 0 10px #9B00FF, 0 0 20px #9B00FF80;
    }

    .neon-red {
      color: #FF003C;
      text-shadow: 0 0 10px #FF003C, 0 0 20px #FF003C80;
    }

    /* ===== MARQUEE ===== */
    .marquee-track {
      display: flex;
      animation: marqueeScroll 20s linear infinite;
      white-space: nowrap;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    /* ===== FOCUS ===== */
    button:focus-visible,
    a:focus-visible {
      outline: 2px solid #FF6B00;
      outline-offset: 2px;
    }

    .mobile-nav-item {
      transition: all 0.3s ease;
    }

    .mobile-nav-item:active {
      transform: scale(0.95);
    }

    /* Image Placeholder Style */
    .img-loading {
      background: linear-gradient(90deg, #0F0F0F 25%, #1a0a00 50%, #0F0F0F 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    /* Stage light effect */
    .stage-light {
      background: conic-gradient(from 200deg at 50% 0%,
          transparent 0deg,
          rgba(255, 107, 0, 0.12) 20deg,
          rgba(255, 107, 0, 0.06) 40deg,
          transparent 60deg);
    }

    .stage-light-purple {
      background: conic-gradient(from 140deg at 50% 0%,
          transparent 0deg,
          rgba(155, 0, 255, 0.10) 20deg,
          rgba(155, 0, 255, 0.05) 40deg,
          transparent 60deg);
    }