* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #161a16;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.hero {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(circle, #55863a 0%, #212b23 100%);
}

.hero h1 {
  font-size: 3rem;
  color: #97ce5d;
  text-shadow: 0 0 10px #97ce5d;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #ccc;
}

.btn-glow {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #97ce5d;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 0 10px #97ce5d, 0 0 20px #97ce5d;
  transition: 0.3s ease;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #97ce5d, 0 0 30px #97ce5d;
}

.features {
  padding: 60px 20px;
  text-align: center;
  background: radial-gradient(circle, #161b14 0%, #1b2016 100%);
}

.features h2 {
  font-size: 2rem;
  color: #97ce5d;
  margin-bottom: 40px;
  text-shadow: 0 0 5px #97ce5d;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: #1f2b21;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 0 10px rgba(21, 255, 0, 0.1);
  transition: 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 0 20px #97ce5d3d;
}

.yt-card {
  background: #1f2b21;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(21, 255, 0, 0.1);
  transition: 0.3s ease;
}

.yt-card:hover {
  box-shadow: 0 0 20px #97ce5d3d;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  background: #1d251d;
  color: #888;
  font-size: 0.9rem;
}

.footer a {
  color: #97ce5d;
  text-decoration: none;
}

/* 🔝 NAVBAR STYLES */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #1a221a;
  box-shadow: 0 2px 10px #97ce5d1d;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #97ce5d;
  text-shadow: 0 0 8px #97ce5d;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-btn {
  padding: 10px 20px;
  background: #162518;
  border: 1px solid #97ce5d;
  color: #97ce5d;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
  box-shadow: 0 0 6px #97ce5d2d;
}

.nav-btn:hover {
  background: #97ce5d;
  color: #000;
  box-shadow: 0 0 12px #97ce5d, 0 0 24px #97ce5d;
}

.topbar-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #121216;
  border-radius: 30px;
  padding: 5px 20px;
  display: flex;
  align-items: center;

  /* 🔧 FIX HERE: space between logo and buttons */
  justify-content: space-between;

  width: 700px;
  max-width: 90%;
  box-shadow: 0 0 10px #97ce5d, 0 0 25px #97ce5d4d;
  border: 1px solid #97ce5d;
  z-index: 10;
}

.topbar-glow:hover {
  box-shadow: 0 0 30px #97ce5d4d;
}

/* 🔰 Logo */
.nav-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #97ce5d;
  text-shadow: 0 0 6px #97ce5d;
  white-space: nowrap;
}

/* 🔗 Buttons */
.nav-links {
  display: flex;
  gap: 15px;
}

.nav-btn {
  padding: 8px 20px;
  background: #141d13;
  border: 1px solid #97ce5d;
  color: #97ce5d;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: 0.3s ease;
  box-shadow: 0 0 6px #97ce5d2d;
  white-space: nowrap;
}

.nav-btn:hover {
  background: #97ce5d;
  color: #000;
  box-shadow: 0 0 12px #97ce5d, 0 0 24px #97ce5d;
}

/* 🖼️ Make sure the hero text is spaced properly under it */
.hero {
  padding: 180px 20px 100px;
  text-align: center;
  background: radial-gradient(circle at center, #151f14 0%, #181d18 100%);
  position: relative;
  overflow: hidden;
}

.logo-img {
  height: 64px;           /* limits height */
  max-width: 120px;       /* optional: keeps it from being too wide */
  object-fit: contain;    /* scales image properly */
  display: block;
  filter: drop-shadow(0 0 6px #97ce5d);
}

.nav-logo {
  display: flex;
  align-items: center;
}


