    :root {
      --dark-1: #0a0f2c;
      --dark-2: #10193a;
      --dark-3: #142042;
      --dark-4: #152246;
      --highlight: #ff4f4f;
      --text-light: #e0e0e0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Press Start 2P', monospace;
      scroll-behavior: smooth;
    }

    body {
        background: var(--dark-1);
        color: var(--text-light);
        overflow-x: hidden;
        line-height: 1.6;
        user-select: none;           
        -webkit-user-select: none;   
        -ms-user-select: none;
    }

    a {
      color: var(--highlight);
      text-decoration: none;
    }

    /* Animations */
    @keyframes fadeSlideUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* @keyframes pulseGlow {
      0%, 100% {
        text-shadow:
          0 0 6px var(--highlight),
          0 0 12px var(--highlight),
          0 0 18px var(--highlight);
      }
      50% {
        text-shadow:
          0 0 12px var(--highlight),
          0 0 24px var(--highlight),
          0 0 36px var(--highlight);
      }
    } */

    @keyframes glowPulse {
      0%, 100% {
        box-shadow: 0 0 15px var(--highlight);
      }
      50% {
        box-shadow: 0 0 30px var(--highlight);
      }
    }
    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(10px);
      }
    }

    #muteBtn {
  padding: 10px;
  width: 48px;
  height: 48px;
  margin-left: 8px;
  background: #1a254d;
  border-radius: 6px;
  border: 1px solid #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#muteBtn:hover {
  background: #2a3570;
  border-color: #666;
}

#muteIcon {
  width: 32px;
  height: 32px;
  pointer-events: none;
}




    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(10, 15, 44, 0.6), rgba(20, 32, 66, 0.7)),
        url('../images/Hbg.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }

    .hero h1 {
      font-size: 3rem;
      color: var(--highlight);
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
      margin-bottom: 2rem;
      animation: fadeSlideUp 1s ease forwards;
      animation-delay: 0.3s;
      animation-fill-mode: forwards;
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      animation-play-state: running;
      animation-iteration-count: 1;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-delay: 0.3s;
    }
    .hero-button-wrapper {
      animation: fadeSlideUp 1s ease forwards;
      animation-delay: 0.6s;
    }

    .hero button {
      font-size: 1rem;
      padding: 1rem 2rem;
      background: var(--highlight);
      border: none;
      border-radius: 6px;
      color: #fff;
      cursor: pointer;
      box-shadow: 0 0 15px var(--highlight);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .hero button:hover {
      background: #ff1e1e;
      transform: scale(1.05);
      animation: glowPulse 1.5s infinite alternate;
    }
    .hero .arrow {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 1.5s infinite;
    }

    /* About Section */
    .about {
      background: var(--dark-2);
      padding: 4rem 2rem;
      text-align: center;
    }

    .about h2 {
      font-size: 1.5rem;
      color: var(--highlight);
      margin-bottom: 3rem;
      animation: pulseGlow 3s ease-in-out infinite;
    }

    .about-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1000px;
      margin: 2rem auto;
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .about-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-section.reverse {
      flex-direction: row-reverse;
    }

    .about-section img {
      width: 300px;
      border-radius: 12px;
      /* box-shadow: 0 0 15px #000; */
      transition: transform 0.3s ease;
    }

    .about-section img:hover {
      transform: scale(1.05);
    }

    .about-section div {
      flex: 1;
      min-width: 280px;
    }

    .about-section h3 {
      font-size: 1rem;
      color: #ff4f4f;
      margin-bottom: 1rem;
      animation: pulseGlow 3s ease-in-out infinite;
    }

    .about-section p,
    .about-section li {
      font-size: 0.75rem;
      color: #ddd;
      margin-bottom: 1rem;
    }

    .about-section ul {
      padding-left: 1.5rem;
    }

    /* Footer */
    footer {
      padding: 2rem;
      background: var(--dark-4);
      text-align: center;
      color: #888;
      font-size: 0.7rem;
    }