* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #000;
  color: #fff;
  touch-action: pan-x pan-y;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.help-header {
  background-color: #111;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 20px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #5b53f2, #8a84ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.logo-text {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(to right, #fff, #a29cfc);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 8px 2px;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scroll-behavior: smooth;
}
.main-nav::-webkit-scrollbar {
  height: 6px;
}
.main-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #aaa;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
}
.nav-link:hover {
  background-color: rgb(91 83 242 / 0.1);
  color: #a29cfc;
}
.nav-link.active {
  background-color: rgb(91 83 242 / 0.15);
  color: #5b53f2;
}
.nav-link i {
  font-size: 14px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}
.help-main {
  flex: 1;
  padding: 40px 0 80px;
}
.hero-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #a29cfc);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff0;
}
.hero-section p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.search-container {
  max-width: 700px;
  margin: 0 auto;
}
.search-box {
  display: flex;
  background: #111;
  border: 1px solid #333;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.search-box:focus-within {
  border-color: #5b53f2;
  box-shadow: 0 0 0 3px rgb(91 83 242 / 0.2);
}
.search-box i {
  padding: 0 20px;
  color: #666;
  display: flex;
  align-items: center;
}
.search-box input {
  flex: 1;
  background: none;
  border: none;
  padding: 18px 0;
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.search-box input::placeholder {
  color: #666;
}
.search-box button {
  background: #5b53f2;
  color: #fff;
  border: none;
  padding: 0 30px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.search-box button:hover {
  background-color: #4a43d1;
}
.search-suggestions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.suggestion-tag {
  background: rgb(91 83 242 / 0.1);
  color: #a29cfc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #fff0;
}
.suggestion-tag:hover {
  background: rgb(91 83 242 / 0.2);
  border-color: #5b53f2;
}
.quick-links {
  margin-bottom: 60px;
}
.quick-links h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
}
.recovery-cta-wrap {
  margin: 0 0 30px;
}
.recover-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5b53f2, #7c72ff);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(91, 83, 242, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recover-account-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(91, 83, 242, 0.35);
}
.recover-account-panel {
  margin-bottom: 40px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.recover-account-panel.hidden {
  display: none;
}
.recover-account-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 30px;
  max-width: 760px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}
.recover-account-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.recover-account-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(91, 83, 242, 0.14);
  color: #7b73ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.recover-account-label {
  margin: 0 0 4px;
  color: #8e8bff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}
.recover-account-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
}
.recover-account-text,
.recover-account-note {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 18px;
}
.recover-account-note {
  background: rgba(91, 83, 242, 0.06);
  border: 1px solid rgba(91, 83, 242, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: #d1d0ff;
}
.recover-form {
  margin-top: 24px;
}
.recover-form-group {
  margin-bottom: 20px;
}
.recover-submit {
  margin-top: 6px;
}
.quick-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
.quick-link-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s;
  cursor: pointer;
}
.quick-link-card:hover {
  border-color: #5b53f2;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.3);
}
.quick-link-icon {
  width: 50px;
  height: 50px;
  background: rgb(91 83 242 / 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.quick-link-icon i {
  font-size: 22px;
  color: #5b53f2;
}
.quick-link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}
.quick-link-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}
#content-area {
  min-height: 400px;
}
.welcome-message {
  text-align: center;
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.welcome-icon {
  width: 80px;
  height: 80px;
  background: rgb(91 83 242 / 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.welcome-icon i {
  font-size: 36px;
  color: #5b53f2;
}
.welcome-message h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}
.welcome-message p {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.7;
}
.content-page {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}
.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.page-header p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 800px;
}
.faq-section,
.article-section {
  margin-bottom: 50px;
}
.section-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title i {
  color: #5b53f2;
}
.faq-item {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: #333;
}
.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question i {
  color: #5b53f2;
  transition: transform 0.3s;
}
.faq-answer {
  color: #aaa;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.article-content {
  color: #aaa;
  line-height: 1.7;
}
.article-content h3 {
  color: #fff;
  margin: 25px 0 15px;
  font-size: 1.3rem;
}
.article-content p {
  margin-bottom: 15px;
}
.article-content ul,
.article-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.article-content li {
  margin-bottom: 8px;
}
.contact-form {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
}
.support-status {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  line-height: 1.5;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
}
.support-status-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.support-status-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.support-status-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.support-status-copy strong {
  font-size: 0.96rem;
  font-weight: 700;
}
.support-status-copy span {
  font-size: 0.9rem;
  line-height: 1.5;
}
.support-status.success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.42);
  color: #d9ffe8;
}
.support-status.success .support-status-icon {
  background: rgba(34, 197, 94, 0.18);
  color: #8ef0af;
}
.support-status.error {
  background: rgba(239, 68, 68, 0.09);
  border-color: rgba(239, 68, 68, 0.45);
  color: #ffd8d8;
}
.support-status.error .support-status-icon {
  background: rgba(239, 68, 68, 0.16);
  color: #ff9f9f;
}
.support-status.info {
  background: rgba(91, 83, 242, 0.09);
  border-color: rgba(91, 83, 242, 0.38);
  color: #e5e4ff;
}
.support-status.info .support-status-icon {
  background: rgba(91, 83, 242, 0.18);
  color: #c7c4ff;
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px;
  color: #fff;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 162, 255, 0.8);
  opacity: 1;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5b53f2;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.submit-btn {
  background: #5b53f2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgb(91 83 242 / 0.22);
}
.submit-btn:hover {
  background-color: #4a43d1;
  transform: translateY(-1px);
}
.submit-btn:disabled {
  opacity: 0.78;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #222;
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-method i {
  width: 40px;
  height: 40px;
  background: rgb(91 83 242 / 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b53f2;
}
.help-footer {
  background: #111;
  border-top: 1px solid #222;
  padding: 40px 0;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  margin-bottom: 30px;
}
.footer-tagline {
  color: #aaa;
  font-size: 0.95rem;
  margin-top: 10px;
}
.footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #aaa;
  font-weight: 500;
}
.footer-links a:hover {
  color: #5b53f2;
}
.footer-copyright {
  color: #666;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
  }
  .main-nav.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1.1rem;
  }
  .search-box {
    flex-direction: column;
    border-radius: 12px;
  }
  .search-box i {
    display: none;
  }
  .search-box input {
    padding: 15px;
    border-bottom: 1px solid #333;
  }
  .search-box button {
    padding: 15px;
    border-radius: 0 0 12px 12px;
  }
  .quick-link-grid {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
@keyframes contentHighlight {
  0% {
    background-color: #fff0;
  }
  10% {
    background-color: rgb(91 83 242 / 0.1);
  }
  100% {
    background-color: #fff0;
  }
}
.content-highlight {
  animation: contentHighlight 1.5s ease;
  border-radius: 8px;
}
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.spinner {
  border: 3px solid rgb(91 83 242 / 0.3);
  border-radius: 50%;
  border-top: 3px solid #5b53f2;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-message {
  text-align: center;
  padding: 60px 20px;
}
.error-message h2 {
  color: #ff4757;
  margin-bottom: 15px;
}
.error-message p {
  color: #aaa;
  margin-bottom: 25px;
}
.back-link {
  display: inline-block;
  background: #5b53f2;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.back-link:hover {
  background-color: #4a43d1;
}
@keyframes contentHighlight {
  0% {
    background-color: #fff0;
  }
  10% {
    background-color: rgb(91 83 242 / 0.1);
  }
  100% {
    background-color: #fff0;
  }
}
.content-highlight {
  animation: contentHighlight 1.5s ease;
  border-radius: 8px;
}
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.spinner {
  border: 3px solid rgb(91 83 242 / 0.3);
  border-radius: 50%;
  border-top: 3px solid #5b53f2;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-message {
  text-align: center;
  padding: 60px 20px;
}
.error-message h2 {
  color: #ff4757;
  margin-bottom: 15px;
}
.error-message p {
  color: #aaa;
  margin-bottom: 25px;
}
.back-link {
  display: inline-block;
  background: #5b53f2;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.back-link:hover {
  background-color: #4a43d1;
}
.search-results {
  padding: 40px;
  background: #111;
  border-radius: 12px;
  border: 1px solid #222;
}
.search-tips {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
}
.search-tips h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.search-tips ul {
  list-style: none;
  padding-left: 0;
}
.search-tips li {
  margin-bottom: 12px;
  color: #aaa;
}
.search-tips a {
  color: #5b53f2;
  font-weight: 500;
}
.search-tips a:hover {
  text-decoration: underline;
}
