/* About Page Styles */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(5px);
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
  transition: 0.3s;
}

header nav a:hover {
  color: #ffde59;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

/* Intro Section */
.intro {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  margin-bottom: 2rem;
}

.intro h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.intro p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Features Section */
.features {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  margin-bottom: 2rem;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #ffde59;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* FAQ Section */
.faq {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  margin-bottom: 2rem;
}

.faq h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item h3 {
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.2rem;
}

.faq-item h3:hover {
  color: #ffde59;
}

.faq-item p {
  margin-top: 0.3rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Support Button */
.support {
  text-align: center;
  margin-bottom: 2rem;
}

.support-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 12px 24px;
  border-radius: 8px;
  background: #ffde59;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.support-btn:hover {
  background: #ffc107;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
