/* ========================================
   Page-Specific: Start Here & About
   Clean enhancements for WonderMod
   ======================================== */

/* Start Here Page */
.page-start-here {
  counter-reset: path-section;
}

.page-start-here h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-tertiary);
}

.page-start-here h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* Path Numbering */
.page-start-here h3::before {
  counter-increment: path-section;
  content: counter(path-section);
  display: inline-block;
  min-width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  margin-right: 0.75rem;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.page-start-here ol {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.page-start-here ol li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-tertiary);
}

.page-start-here ol li:last-child {
  border-bottom: none;
}

/* About Page */
.page-about h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-tertiary);
}

.page-about h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Tables */
.page-start-here table,
.page-about table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-start-here thead,
.page-about thead {
  background: var(--gradient-cool);
  color: white;
}

.page-start-here th,
.page-about th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-start-here td,
.page-about td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.page-start-here tbody tr:hover,
.page-about tbody tr:hover {
  background: var(--bg-secondary);
}

/* Blockquotes */
.page-start-here blockquote,
.page-about blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.page-start-here blockquote strong,
.page-about blockquote strong {
  color: var(--accent);
}

/* Links */
.page-start-here a,
.page-about a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-fast);
}

.page-start-here a:hover,
.page-about a:hover {
  color: var(--accent-warm);
  border-bottom-color: var(--accent-warm);
}

/* Strong text emphasis */
.page-start-here strong,
.page-about strong {
  color: var(--primary);
  font-weight: 600;
}

/* Horizontal rules */
.page-start-here hr,
.page-about hr {
  border: none;
  border-top: 1px solid var(--bg-tertiary);
  margin: 3rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .page-start-here h2,
  .page-about h2 {
    font-size: 1.5rem;
  }

  .page-start-here h3,
  .page-about h3 {
    font-size: 1.1rem;
  }

  .page-start-here table,
  .page-about table {
    font-size: 0.85rem;
  }

  .page-start-here th,
  .page-about th,
  .page-start-here td,
  .page-about td {
    padding: 0.5rem 0.75rem;
  }
}
