* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  #background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  #starfield {
    object-fit: cover;
  }
  
  header {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 1rem 2rem; /* Add padding inside the navbar */
    position: fixed; /* Fixed position to make it float */
    top: 1.2rem; /* Gap from the top */
    left: 50%; /* Center the navbar horizontally */
    transform: translateX(-50%); /* Offset to ensure it's centered */
    z-index: 10; /* Ensure the navbar is above other content */
    border-radius: 15px; /* Optional: rounded corners for the navbar */
    box-shadow: 0px 4px 10px rgba(132, 204, 255, 0.28); /* Optional: shadow for floating effect */
    max-width: 75%; /* Max width of the navbar */
    width: 100%; /* Allow the navbar to stretch up to the max width */
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensures the nav items fill the width of the navbar */
  }
  
  nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 1.5rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #00d4ff;
  }
  
  
  
section {
    padding: 5rem 1rem;
    text-align: center;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 10px rgba(132, 204, 255, 0.28); /* Optional: shadow for floating effect */
}

#home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 7rem; 
}


.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .team-member {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 2rem;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: scale(1.05);
  }
  
  .avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #00d4ff;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
    font-weight: bold;
  }
  
  .team-member h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
  }
  
  .team-member p {
    margin-bottom: 1rem;
    color: #a0a0a0;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-links a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.2);
    transition: background 0.3s ease;
  }
  
  .social-links a:hover {
    background: rgba(0, 212, 255, 0.4);
  }


section p,
section h1,
section h2,
section h3,
section li {
  line-height: 2.5;
}


  
.play-btn {
    background: #00d4ff;
    color: black;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: background 0.3s;
}

  .play-btn:hover {
    background: #007bb5;
  }
  

  @keyframes borderGlow {
    0%, 100% {
      box-shadow: 0 0 5px #00d4ff, 
                  0 0 10px #00d4ff, 
                  0 0 15px #00d4ff;
      border-color: #00d4ff;
    }
    50% {
      box-shadow: 0 0 10px #00a2cc, 
                  0 0 20px #00a2cc, 
                  0 0 30px #00a2cc;
      border-color: #00a2cc;
    }
  }
  
  .game-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 1500px;
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 15px; 
    padding: 1rem; 
    border: 3px solid #00d4ff; 
    animation: borderGlow 4s ease-in-out infinite; 
    transition: all 0.5s ease;
  }
  
  .game-embed iframe {
    border-radius: 10px; /* Slightly rounded corners for the iframe itself */
    border: none; /* Ensures no internal border conflicts */
    width: 100%; /* Ensures the iframe fits its container */
    height: 830px; /* Fixed height for the game box */
  }
  
  
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  input,
  textarea,
  button {
    border-radius: 10px;
    padding: 0.5rem;
    border: none;
    outline: none;
    width: 100%;
    max-width: 400px;
  }
  
  textarea {
    resize: none;
    height: 150px;
  }
  
  button {
    background: #00d4ff;
    color: black;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #007bb5;
  }
  
  footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 1rem 0;
    border-radius: 15px 15px 0 0;
  }
  

  html {
    scroll-behavior: smooth;
  }
  
