body {
  font-family: Arial, sans-serif;
  background: #1a1a1a;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

/* Header banner */
header {
  position: relative;
  text-align: center;
  color: #fff;
}
header img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  display: block;
}
header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 8px;
}

/* Navigation bar */
nav {
  background: #2c2c2c;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 8px 20px;
  font-size: 18px;
  font-weight: bold;
}
nav a:hover,
nav a.active {
  color: #ff6600;
}

/* Main content */
content {
  text-align: center;
  padding: 50px 20px;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
}
.btn:hover {
  background: #e65c00;
}

/* Sections */
section {
  text-align: center;
  padding: 40px 20px;
  background: #2c2c2c;
  margin: 20px auto;
  border-radius: 8px;
  width: 80%;
}
section h2 {
  color: #ff6600;
  margin-bottom: 20px;
}
section ul {
  list-style: none;
  padding: 0;
}
section ul li {
  margin: 10px 0;
  font-size: 18px;
}

section img {
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

#roadmap img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Form container */
.form-container {
  background: #2c2c2c;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
label {
  display: block;
  margin-top: 10px;
}
input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: none;
  border-radius: 4px;
}
button {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background: #ff6600;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  background: #e65c00;
}
error {
  color: #ff4444;
  font-size: 14px;
  margin-top: 5px;
}

/* Footer */
footer {
  background: #2c2c2c;
  text-align: center;       /* centers the text */
  padding: 15px;
  color: #aaa;
  margin-top: 40px;
  font-size: 14px;
  border-top: 2px solid #ff6600; /* fiery orange border */
}

/* Responsive design */
@media (max-width: 600px) {
  header h1 {
    font-size: 28px;
    padding: 8px 16px;
  }
  btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  #roadmap img {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
  }
}

.social a {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.social img {
  width: 24px;   /* force same width */
  height: 24px;  /* force same height */
  margin-right: 6px;
}

.vip-intro, .vip-benefits, .vip-tiers, .vip-join {
  text-align: center;
  padding: 40px 20px;
  background: #2c2c2c;
  margin: 20px auto;
  border-radius: 8px;
  width: 80%;
}

.vip-tiers table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.vip-tiers th, .vip-tiers td {
  border: 1px solid #ff6600;
  padding: 12px;
  color: #fff;
}

.vip-tiers th {
  background: #ff6600;
  color: #fff;
}
