/* ============================================================
   VITALITY OPTIMIZATION - PAGE-SPECIFIC STYLES
   Professional styling for individual pages with consistent design
   ============================================================ */

/* ============================================================
   COMMON PAGE STYLES
   ============================================================ */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 30px 60px;
  color: var(--text-light);
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.page-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
}

.page-section {
  margin-bottom: 50px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-light);
}

.page-section h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.page-section h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 25px 0 15px;
}

.page-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-section ul,
.page-section ol {
  margin: 15px 0 20px 20px;
  color: var(--text-dim);
}

.page-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-section strong {
  color: var(--text-light);
  font-weight: 600;
}

.page-cta {
  text-align: center;
  margin: 50px 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #7534b3 0%, #9147ff 50%, #b57bff 100%);
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(117, 52, 179, 0.4), 0 0 20px rgba(145, 71, 255, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(145, 71, 255, 0.4);
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #8b1cfb 0%, #a855f7 50%, #c084fc 100%);
  box-shadow: 0 8px 25px rgba(117, 52, 179, 0.6), 0 0 30px rgba(145, 71, 255, 0.4);
  border-color: rgba(145, 71, 255, 0.6);
}

.cta-button.secondary {
  background: linear-gradient(135deg, rgba(117, 52, 179, 0.8) 0%, rgba(145, 71, 255, 0.8) 100%);
  box-shadow: 0 5px 15px rgba(117, 52, 179, 0.3), 0 0 20px rgba(145, 71, 255, 0.2);
  margin-left: 15px;
  border: 1px solid rgba(145, 71, 255, 0.4);
}

.cta-button.secondary:hover {
  background: linear-gradient(135deg, rgba(139, 28, 251, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
  box-shadow: 0 8px 25px rgba(117, 52, 179, 0.5), 0 0 30px rgba(145, 71, 255, 0.3);
  border-color: rgba(145, 71, 255, 0.6);
}

/* ============================================================
   DOCUMENTATION PAGE STYLES
   ============================================================ */
.documentation-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 30px 60px;
}

.documentation-sidebar {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.documentation-content {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Override grid layout for full-width content */
.documentation-container .documentation-content.full-width {
  grid-column: 1 / -1;
}

.documentation-container .documentation-content.full-width ~ .documentation-content {
  grid-column: 2;
}

.sidebar-nav h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 5px;
}

.sidebar-nav a {
  display: block;
  padding: 8px 12px;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(145, 71, 255, 0.1);
  color: var(--text-light);
  transform: translateX(5px);
}

.search-container {
  margin-bottom: 20px;
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 10px 15px;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-container input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(145, 71, 255, 0.2);
}

.search-container button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #7534b3 0%, #9147ff 50%, #b57bff 100%);
  border: 1px solid rgba(145, 71, 255, 0.4);
  color: white;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(117, 52, 179, 0.3), 0 0 15px rgba(145, 71, 255, 0.2);
}

.search-container button:hover {
  background: linear-gradient(135deg, #8b1cfb 0%, #a855f7 50%, #c084fc 100%);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(117, 52, 179, 0.4), 0 0 20px rgba(145, 71, 255, 0.3);
  border-color: rgba(145, 71, 255, 0.6);
}

/* ============================================================
   STEP-BY-STEP INSTRUCTIONS
   ============================================================ */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.step {
  display: flex;
  gap: 20px;
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(145, 71, 255, 0.3);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7534b3 0%, #9147ff 50%, #b57bff 100%);
  color: var(--text-light);
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(117, 52, 179, 0.3), 0 0 20px rgba(145, 71, 255, 0.2);
  border: 1px solid rgba(145, 71, 255, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* ============================================================
   NOTE AND WARNING CONTAINERS
   ============================================================ */
.note-container {
  margin: 30px 0;
  padding: 20px;
  background: rgba(145, 71, 255, 0.1);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.note strong {
  color: var(--accent);
  font-weight: 600;
}

.warning {
  background: rgba(255, 99, 71, 0.1);
  border-left: 4px solid #ff6347;
}

.warning strong {
  color: #ff6347;
}

/* ============================================================
   FEATURE LISTS AND CARDS
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(145, 71, 255, 0.2);
}

.feature h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.toggle-info {
  background: rgba(145, 71, 255, 0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-on {
  background: rgba(145, 71, 255, 0.2);
}

.toggle-off {
  background: rgba(145, 71, 255, 0.05);
}

/* ============================================================
   TOOL CARDS AND UTILITIES
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.tool-card {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.tool-card h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.tool-actions {
  margin-top: 15px;
}

.tool-button {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #7534b3 0%, #9147ff 50%, #b57bff 100%);
  color: var(--text-light);
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(145, 71, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(117, 52, 179, 0.3), 0 0 20px rgba(145, 71, 255, 0.2);
}

.tool-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #8b1cfb 0%, #a855f7 50%, #c084fc 100%);
  box-shadow: 0 5px 10px rgba(117, 52, 179, 0.4), 0 0 25px rgba(145, 71, 255, 0.3);
  border-color: rgba(145, 71, 255, 0.6);
}

.utilities-list {
  margin: 30px 0;
}

.utility {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.utility h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.utility-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

/* ============================================================
   REQUIREMENTS AND SYSTEM SPECS
   ============================================================ */
.requirements-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.requirement {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.requirement h3 {
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.requirement:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(145, 71, 255, 0.2);
}

/* ============================================================
   INTERFACE OVERVIEW
   ============================================================ */
.interface-overview {
  margin: 30px 0;
}

.interface-section {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.interface-section h3 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* ============================================================
   CARD COMPONENTS
   ============================================================ */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.card {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.card h4 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(145, 71, 255, 0.2);
}

/* ============================================================
   LISTS AND TAGS
   ============================================================ */
.numbered-list {
  margin: 20px 0;
  padding-left: 20px;
}

.numbered-list li {
  margin-bottom: 10px;
  color: var(--text-dim);
}

.game-list {
  margin: 20px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tag-list li {
  background: rgba(145, 71, 255, 0.1);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(145, 71, 255, 0.3);
}

/* ============================================================
   ISSUES AND SUPPORT
   ============================================================ */
.issues-list {
  margin: 30px 0;
}

.issue {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.issue h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.issue:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(145, 71, 255, 0.2);
}

.support-cta {
  text-align: center;
  background: rgba(145, 71, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(145, 71, 255, 0.2);
}

.support-cta h3 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.support-cta p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1rem;
}

.support-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: rgba(145, 71, 255, 0.15);
}

/* ============================================================
   DOWNLOAD PAGE STYLES
   ============================================================ */
.download-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 30px 60px;
}

.download-header {
  text-align: center;
  margin-bottom: 60px;
}

.download-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-header p {
  color: var(--text-dim);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.download-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-card.featured {
  border-color: var(--accent);
  background: rgba(26, 26, 26, 0.9);
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
}

.card-header h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.version-tag {
  display: inline-block;
  background: rgba(145, 71, 255, 0.2);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(145, 71, 255, 0.3);
}

.card-body {
  margin-bottom: 25px;
}

.card-body p {
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features-list li {
  color: var(--text-dim);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.system-requirements {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.system-requirements h4 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1rem;
}

.system-requirements p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
}

.card-footer {
  text-align: center;
}

.card-footer .cta-button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.card-footer .cta-button small {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  opacity: 0.8;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

.download-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

/* ============================================================
   INSTALLATION GUIDE
   ============================================================ */
.installation-guide {
  margin: 60px 0;
}

.installation-guide h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

/* ============================================================
   CHANGELOG
   ============================================================ */
.changelog {
  margin: 60px 0;
}

.changelog h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.changelog-container {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
}

.changelog-entry h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.changelog-entry ul {
  margin: 15px 0;
  padding-left: 20px;
}

.changelog-entry li {
  color: var(--text-dim);
  margin-bottom: 8px;
}

.changelog-entry li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.view-all-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: var(--accent-light);
  transform: translateX(5px);
}

/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */
.faq-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 30px 60px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-header p {
  color: var(--text-dim);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-content {
  margin-bottom: 60px;
}

.faq-item {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(145, 71, 255, 0.3);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question h3 {
  color: var(--text-light);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

.faq-answer ul, 
.faq-answer ol {
  padding: 0 20px 20px 40px;
  margin: 0;
}

.faq-answer li {
  color: var(--text-dim);
  margin-bottom: 8px;
}

.faq-cta {
  text-align: center;
  background: rgba(145, 71, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(145, 71, 255, 0.2);
}

.faq-cta h2 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 2rem;
}

.faq-cta p {
  color: var(--text-dim);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* ============================================================
   VIDEO TUTORIAL STYLES
   ============================================================ */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-chapters {
  margin: 40px 0;
}

.video-chapters h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.video-chapters ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.video-chapters li {
  margin: 0;
}

.chapter-link {
  display: block;
  padding: 15px 20px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  color: var(--text-light);
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: center;
}

.chapter-link:hover,
.chapter-link:focus {
  background: rgba(145, 71, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   CTA BUTTONS SECTION
   ============================================================ */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* ============================================================
   PRICING PAGE STYLES
   ============================================================ */
.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 30px 60px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  color: var(--text-dim);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-grid-single {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(26, 26, 26, 0.9);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header {
  margin-bottom: 25px;
}

.card-header h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 20px;
}

.price span {
  font-size: 1.5rem;
  color: var(--text-dim);
  font-weight: normal;
}

.card-body {
  margin-bottom: 25px;
}

.card-body p {
  color: var(--text-dim);
  margin-bottom: 20px;
}

.card-note {
  background: rgba(145, 71, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid rgba(145, 71, 255, 0.2);
}

.card-footer {
  margin-top: 25px;
}

/* ============================================================
   PRICING FAQ
   ============================================================ */
.pricing-faq {
  margin: 60px 0;
}

.pricing-faq h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.pricing-faq .faq-item {
  background: rgba(26, 26, 26, 0.6);
}

.pricing-faq h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.pricing-faq p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================================
   TERMS OF SERVICE PAGE
   ============================================================ */
.tos-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 30px 60px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.tos-container:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(145, 71, 255, 0.3);
}

.tos-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.tos-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tos-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
}

.tos-section {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.tos-section h2 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.tos-section p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 15px;
}

.tos-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.tos-section li {
  color: var(--text-dim);
  margin-bottom: 8px;
  line-height: 1.6;
}

.tos-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.tos-footer p {
  color: var(--text-dim);
  margin-bottom: 15px;
}

.tos-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tos-footer a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ============================================================
   AFFILIATE PAGE STYLES
   ============================================================ */
.affiliate-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 30px 60px;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.affiliate-container:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(145, 71, 255, 0.3);
}

.affiliate-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.affiliate-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.affiliate-header p {
  color: var(--text-dim);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.affiliate-section {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.affiliate-section h2 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.affiliate-section p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits-list li {
  color: var(--text-dim);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.affiliate-steps {
  margin: 40px 0;
}

.affiliate-steps .step {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.affiliate-steps .step-number {
  background: var(--accent);
  color: var(--text-light);
  width: 35px;
  height: 35px;
  font-size: 1rem;
}

.affiliate-steps h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.3rem;
  margin-top: 0;
}

.affiliate-steps p {
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
  .documentation-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .documentation-sidebar {
    position: static;
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-container,
  .download-wrapper,
  .faq-wrapper,
  .pricing-wrapper,
  .tos-container,
  .affiliate-container {
    padding: 100px 20px 40px;
  }
  
  .page-header h1,
  .download-header h1,
  .faq-header h1,
  .pricing-header h1,
  .tos-header h1,
  .affiliate-header h1 {
    font-size: 2.5rem;
  }
  
  .page-section,
  .download-card,
  .pricing-card {
    padding: 20px;
  }
  
  .feature-list,
  .tools-grid,
  .requirements-table,
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    gap: 15px;
  }
  
  .download-options,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .affiliate-steps .step {
    padding: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button.secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-container,
  .download-wrapper,
  .faq-wrapper,
  .pricing-wrapper,
  .tos-container,
  .affiliate-container {
    padding: 80px 15px 30px;
  }
  
  .page-header h1,
  .download-header h1,
  .faq-header h1,
  .pricing-header h1,
  .tos-header h1,
  .affiliate-header h1 {
    font-size: 2rem;
  }
  
  .page-section,
  .download-card,
  .pricing-card {
    padding: 15px;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
}