/* ===========================
   General Theme
=========================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0f16;
  color: #fff;
}

/* ===========================
   Navbar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #10121a;
  border-bottom: 2px solid #1fdf64;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #1fdf64;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #1fdf64;
}

.auth a {
  color: #aaa;
  margin-left: 5px;
  text-decoration: none;
}

.auth a:hover {
  color: #1fdf64;
}

/* ===========================
   Hero Section
=========================== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: #0b0c13;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 40px;
  color: #33ffcc;
}

.hero h3 span {
  color: #1fdf64;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #1fdf64;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

.hero-img img {
  width: 400px;
  border-radius: 10px;
}

/* ===========================
   Payment Section
=========================== */
.payment {
  padding: 50px;
  text-align: center;
}

.payment h2 {
  font-size: 30px;
  color: #33ffcc;
}

.payment-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.payment-logos div {
  text-align: center;
}

.payment-logos img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* ===========================
   Advance Plans Section (GBNodes Style)
=========================== */
.section-title {
  font-size: 28px;
  color: #33ffcc;
  text-shadow: 0 0 10px #33ffcc;
  margin-top: 60px;
  text-align: center;
}

.section-subtitle {
  color: #aaa;
  text-align: center;
  margin-bottom: 40px;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.plan-card {
  background: #10121a;
  border-radius: 15px;
  width: 260px;
  box-shadow: 0 0 20px rgba(31, 223, 100, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #1fdf64;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(31, 223, 100, 0.5);
}

.plan-header {
  background: #1fdf64;
  color: #000;
  font-weight: 700;
  padding: 12px;
  font-size: 18px;
}

.plan-body {
  padding: 20px;
}

.plan-body p {
  margin: 6px 0;
  color: #ccc;
}

.price {
  margin: 10px 0;
  font-weight: bold;
  color: #33ffcc;
}

.order-btn {
  background: #1fdf64;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  background: #33ffcc;
  box-shadow: 0 0 15px #33ffcc;
}

/* ===========================
   Footer
=========================== */
footer {
  background: #10121a;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #1fdf64;
  font-size: 14px;
  color: #aaa;
}
