/**
 * Support Us Page Styles
 * Matching TOS page dark container pattern
 *
 * Created: 2025-12-21
 * Issue: ISSUE-024 - UI/UX Enhancement
 */

/* ============================================
   BODY CONTENT CONTAINER - Match TOS styling
   ============================================ */

/* Dark card styling for article.box.post */
body.support-us-page article.box.post {
  background: #1a1a1a;
  border: 2px solid #28a745;
  border-radius: 18px;
  padding: 3em 2.5em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Heading styles */
body.support-us-page article h2 {
  color: #ffee00;
  font-size: 1.8em;
  margin-bottom: 1em;
  margin-top: 1.5em;
  border-bottom: 2px solid #28a745;
  padding-bottom: 0.5em;
}

body.support-us-page article h2:first-child {
  margin-top: 0;
}

body.support-us-page article h3 {
  color: #28a745;
  font-size: 1.4em;
  margin-bottom: 0.8em;
}

/* Paragraph styles */
body.support-us-page article p {
  color: #e0e0e0;
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* List styles */
body.support-us-page article ul,
body.support-us-page article ol {
  margin-left: 2em;
  line-height: 1.8;
  color: #e8e8e8;
  margin-bottom: 1.5em;
}

body.support-us-page article li {
  margin-bottom: 0.8em;
  color: #e0e0e0;
}

/* Strong/bold text */
body.support-us-page article strong {
  color: #ffee00;
  font-weight: bold;
}

/* Link styles */
body.support-us-page article a {
  color: #4de88a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

body.support-us-page article a:hover {
  color: #ffee00;
}

/* Emphasis/italic text */
body.support-us-page article em {
  color: #c0c0c0;
  font-style: italic;
}

/* Keyboard keys styling */
body.support-us-page article kbd {
  background: #2a2a2a;
  padding: 4px 10px;
  border: 1px solid #555;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: #28a745;
  font-size: 0.95em;
}

/* Icon in headings */
body.support-us-page article h2 i {
  margin-right: 8px;
  color: #28a745;
}

/* ===== TEXT OVERFLOW FIX - Domain Zero Standard ===== */
body.support-us-page article.box.post,
body.support-us-page article h2,
body.support-us-page article h3,
body.support-us-page article p,
body.support-us-page article li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  body.support-us-page article.box.post {
    padding: 2em 1.5em;
  }

  body.support-us-page article h2 {
    font-size: 1.5em;
  }

  body.support-us-page article h3 {
    font-size: 1.2em;
  }

  body.support-us-page article ul,
  body.support-us-page article ol {
    margin-left: 1.5em;
  }
}

/* ================================================
   CSP PHASE 4 - INLINE STYLE EXTRACTION
   Added: 2025-12-23
   ================================================ */

/* Social links container - replaces inline style on line 125 */
.social-links-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

/* Social link button - replaces inline styles on lines 126, 129, 132 */
.social-link-button {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Modal content sizing - replaces inline styles on lines 332, 344 */
.modal-content-small {
  max-width: 400px;
}

.modal-content-sized {
  max-width: 500px;
  width: 90%;
}

.modal-content-large {
  max-width: 700px;
  width: 90%;
}
