  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
  }

  /* Background Video */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -3;
  }

  /* Dark Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: -2;
  }

  #particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Don't interact with the particles */
    z-index: -1; /* Set to be just above video */
    opacity: 50%;
  }

  /* Click to Enter */
  #click-to-enter {
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    width: 100vw;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    z-index: 1000;
    cursor: pointer;
  }

  .hidden {
    display: none !important;
  }

  /* Main Content */
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1; /* Make sure it's above particles */
  }

  .content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .content .tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
  }

  /* Blinking Cursor */
  #cursor {
    display: inline-block;
    margin-left: 4px;
    color: #ccc;
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* Buttons */
  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .buttons button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .buttons button:hover {
    background: white;
    color: black;
  }

  /* Modal */
  #modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  #modal-box {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    width: 400px;
    max-width: 90vw;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }

  #close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: red;
    cursor: pointer;
  }

  /* Contact Modal */
  #contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  #contact-box {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }

  #close-contact-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: red;
    cursor: pointer;
  }

  .contact-link {
    display: block;
    font-size: 1rem;
    margin: 20px 0;
    color: #f3f8f8;
    cursor: pointer;
    text-decoration: none;
  }

  .contact-link:hover {
    color: #f1f1f1;
  }
  /* Ensure text is selectable */
#email, #discord {
  user-select: text;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: #feffff;
  transition: color 0.3s ease;
}

/* Highlight text on hover */
#email:hover, #discord:hover {
  color: #f1f1f1;
  text-decoration: underline;
}

#footer {
    opacity: 0.5;
    padding-bottom: 5px;
    bottom: 0;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}