[data-theme="dark"] .hc-full-content {
  background: var(--card-bg);
}
/* Desktop inside back arrow button styles */
@media (min-width: 900px) {
  .hc-full-close {
    display: none !important;
    position: absolute;
    top: 1rem;
    left: 0.51rem;
    background: none;
    color: var(--primary);
    border-radius: 60%;
    border-width: 12em;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: color 0.2s;
  }
}
/* Full page overlay for help center option content */
.hc-full-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--card-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.hc-full-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  padding: 2rem 1rem 1rem 1rem;
  box-sizing: border-box;
  position: relative;
}
.hc-full-close {
  position: absolute;
  top: 1rem;
  left: 0.51rem;
  background: none;
  color: var(--primary);
  border-radius: 60%;
  border-width: 12em;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: color 0.2s;
}
.hc-full-close:hover {
  color: var(--accent-blue);
}
[data-theme="dark"] .hc-full-overlay {
  background: var(--card-bg);
}
[data-theme="dark"] .hc-full-close {
  background: none;
  color: var(--accent-yellow);
}
[data-theme="dark"] .hc-full-close:hover {
  color: var(--primary);
}
/* ================= MOBILE STYLES ================= */
@media (max-width: 899px) {
  .help-center-main {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .help-center-title {
    font-size: 1.5rem;
    margin-top:0.65rem;
  }
  .hc-list {
    gap: 1rem;
  }
  .hc-content {
    padding: 1rem;
    margin-bottom: 1.2rem;
  }
  .hc-socials {
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
}

/* ================= DESKTOP STYLES ================= */
@media (min-width: 900px) {
  .help-center-main {
    max-width: 600px;
    padding: 0 2rem;
    margin: 2rem auto;
  }
  .help-center-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .hc-list {
    gap: 1.2rem;
    
  }
  .hc-content {
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
  }
  .hc-socials {
    gap: 2rem;
    margin-top: 2rem;
  }
}
/* Help Center Page Styles */
.help-center-main {
  width: 98%;
  max-width: 480px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  padding: 0 1rem;
  box-shadow: none;
}

@media (min-width: 900px) {
  .help-center-main {
    max-width: 600px;
    padding: 0 2rem;
  }
}
.help-center-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}
.help-center-section { margin-bottom: 2rem; }
.help-center-label { font-weight: 600; margin-bottom: 0.5rem; display: block; }
.help-center-input, .help-center-textarea {
  resize: none;
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  font-size: 1rem;
  background: var(--card-bg);
  color: var(--text-color);
}
[data-theme="dark"] .help-center-input,
[data-theme="dark"] .help-center-textarea {
  background: var(--card-bg);
  color: var(--text-color);
}
.help-center-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
}
.help-center-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.support-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.support-option {
  text-align: center;
}
.support-option i {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: var(--primary);
}
.live-chat-box {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  min-height: 120px;
}
/* New interactive list styles */
.hc-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
  width: 80%;
  margin: 0 auto 2rem auto;
}

.hc-list-item {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 8px #0001;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  color: var(--primary);
}
.hc-list-item .hc-list-icon {
  color: var(--primary);
  transition: color 0.2s;
}
.hc-list-item:hover,
.hc-list-item.active {
  box-shadow: 0 4px 16px #0002;
  background: var(--primary);
  color: #fff;
}
.hc-list-item:hover .hc-list-icon,
.hc-list-item.active .hc-list-icon {
  color: #fff;
}

[data-theme="dark"] .hc-list-item {
  background: var(--card-bg);
  color: var(--primary);
}
[data-theme="dark"] .hc-list-item .hc-list-icon {
  color: var(--primary);
}
[data-theme="dark"] .hc-list-item:hover,
[data-theme="dark"] .hc-list-item.active {
  background: var(--accent-yellow);
  color: #181a20;
}
[data-theme="dark"] .hc-list-item:hover .hc-list-icon,
[data-theme="dark"] .hc-list-item.active .hc-list-icon {
  color: #feffff;
}


/* Icon color and hover using dashboard.css theme variables */
.hc-list-icon {
  font-size: 1.5em;
  color: var(--primary);
  min-width: 2em;
  text-align: center;
  transition: color 0.2s;
}
.hc-list-item:hover .hc-list-icon,
.hc-list-item.active .hc-list-icon {
  color: white;
}

[data-theme="dark"] .hc-list-icon {
  color: var(--primary);
}
[data-theme="dark"] .hc-list-item:hover .hc-list-icon,
[data-theme="dark"] .hc-list-item.active .hc-list-icon {
  color: var(--primar-hover);
}

.hc-list-label {
  font-size: 1em;
  font-weight: 600;
  flex: 1;
}
.hc-list-chevron {
  font-size: 1em;
  color: #888;
}
.hc-content {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  display: none;
}
.hc-content.active {
  display: block;
}
.hc-socials {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.hc-social-icon {
  font-size: 2em;
  color: var(--primary);
  transition: color 0.2s;
}
.hc-social-icon:hover {
  color: var(--accent-blue);
}
[data-theme="dark"] .hc-social-icon {
  color: var(--primary);
}
[data-theme="dark"] .hc-social-icon:hover {
  color: var(--accent-yellow);
}
