* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f5c518;
}

.nav-links a {
  color: #f5c518;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f5c518;
}

.bundles-section {
  padding: 3rem 2rem;
  background-color: #121212;
  text-align: center;
}

.bundles-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #f5c518;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px #e68800;
}

.bundle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.bundle-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.bundle-card ul li {
  margin: 0.5rem 0;
  color: #bbbbbb;
}

.price {
  font-size: 1.3rem;
  color: #e68800;
  margin-bottom: 1rem;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #f5c518;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #333   ;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #1a1a1a;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}
/* Master Navigation Bar Styling */

.influmo-navbar {
  background-color: #121212;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f5c518;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links li a:hover {
  color: #f5c518;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    background-color: #121212;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    display: none;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}
a {
  text-decoration: none;
}
.muted { color: #c7c7c7; }

.bundles-head{
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}
.bundles-cta{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pay-btn{
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
