body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f0f10;
  color: #ffffff;
}

a {
  color: #a259ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.navbar {
  background: #121217;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.logo span {
  color: #a259ff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  padding: 8px 12px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}
nav ul li a:hover,
nav ul li a.active {
  background: #915eff;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 2rem 0;
}

.support h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #a259ff, #e66465);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-align: center;
}

.support section {
  margin-bottom: 2rem;
}
.support h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #a259ff;
}
.support p, .support ul {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}
.support ul {
  padding-left: 1.2rem;
}
.support ul li {
  margin-bottom: 0.5rem;
}

/* SECTION FAQ */
#faq {
  background: #121217;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin-top: 3rem;
}

#faq h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #a259ff;
  background: linear-gradient(90deg, #a259ff, #e66465);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#faq p {
  color: #ccc;
  margin-bottom: 1rem;
  font-size: 1rem;
}

#faq ul {
  padding-left: 1.5rem;
}

#faq ul li {
  margin-bottom: 0.75rem;
  color: #ddd;
  line-height: 1.6;
}

#faq ul li strong {
  display: block;
  color: #fff;
  margin-bottom: 0.3rem;
}

.footer {
  background: #0c0b12;
  padding: 60px 20px 30px;
  border-top: 1px solid #1f1c2e;
  color: #bbb;
  font-size: 0.95rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
  filter: brightness(1.2);
}

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #915eff;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #1f1c2e;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}
