/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  padding-top: 100px;
}

.navbar {
  position: fixed;               
  top: 0;
  left: 50%;
  transform: translateX(-50%);   
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 90%;                    
  max-width: 1200px;
  background-color: #0a0a0a;
  padding: 0 40px;
  border: 1px solid #333;        
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
  position: absolute;
  left: 50px;
}

.logo img {
  height: 200px; 
  width: auto;
}

.nav-links {
  margin: 0 auto;
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links.hidden {
  display: none !important;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
   /* pushes it to far right */
  padding: 7px 29px;
  background-color: #fff;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #b9b9b9;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 40px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
  max-width: 935px;
  margin-inline: auto;
}

.Startbtn {
   /* pushes it to far right */
  padding: 15px 45px;
  background-color: #fff;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}

.Startbtn:hover {
  background-color: #b9b9b9;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  font-size: 0.9rem;
  color: #666;
}

.Bypass-container {
  display: flex;
  justify-content: center;
}

.text-wrapper {
  position: relative;
  display: inline-block;
}

.text-wrapper h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  white-space: nowrap;
}



