body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #0B0F19;
  color: #E5E7EB;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Header */
.header {
  background: #111827;
  padding: 15px;
}
.logo {
  color: #7CFFB2;
  font-weight: bold;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 42px;
}
.hero p {
  color: #9CA3AF;
}

/* Button */
.btn {
  background: #7CFFB2;
  color: black;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.card {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}
.card:hover {
  box-shadow: 0 0 15px #7CFFB2;
  transform: translateY(-5px);
}

/* Sections */
.section {
  margin-top: 80px;
  text-align: center;
}

/* CTA */
.cta {
  background: #111827;
  padding: 60px;
  border-radius: 12px;
  margin-top: 60px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px;
  background: #111827;
}
.disclaimer {
  color: #9CA3AF;
  font-size: 12px;
}






/****************/

.hero-cta {
  margin-top: 20px;
}
.btn-outline {
  background: transparent;
  border: 1px solid #7CFFB2;
  color: #7CFFB2;
}

.stats-bar {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #9CA3AF;
}

/* Ask Box */
.ask-box input {
  width: 70%;
  padding: 12px;
  border-radius: 8px;
  border: none;
}
.ask-box button {
  margin-left: 10px;
}

/* Tabs */
.tabs button {
  margin: 5px;
  padding: 10px;
  background: #111827;
  color: #7CFFB2;
  border: none;
  cursor: pointer;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Featured */
.featured {
  border-left: 4px solid #7CFFB2;
}

/* Disclaimer */
.disclaimer-box {
  margin-top: 40px;
  font-size: 13px;
  color: #9CA3AF;
  text-align: center;
}



/* Header CSS */


/* HEADER BASE */
.header {
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(124, 255, 178, 0.1);
}

/* CONTAINER */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: #7CFFB2;
  text-shadow: 0 0 8px #7CFFB2;
}

/* MENU */
.header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header nav ul li {
  display: inline-block;
}

/* MENU LINKS */
.header nav ul li a {
  text-decoration: none;
  color: #E5E7EB;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.header nav ul li a:hover {
  color: #7CFFB2;
}

/* UNDERLINE GLOW */
.header nav ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #7CFFB2;
  transition: 0.3s;
}

.header nav ul li a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.header .menu-cta a {
  background: #7CFFB2;
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.header .menu-cta a:hover {
  box-shadow: 0 0 10px #7CFFB2;
}

/* MOBILE MENU */
@media (max-width: 768px) {

  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .header nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    background: #111827;
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px;
  }

  .header nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 20px;
    color: #7CFFB2;
  }
}




/************************************/
/* ===== wpForo Protection ===== */
#wpforo-wrap {
  all: revert;
  font-family: inherit;
}

/* restore box model */
#wpforo-wrap * {
  box-sizing: border-box;
}