@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Regular.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nav-height: 96px;
  --surface: #f8fafc;
  --surface-strong: #ffffff;
  --surface-muted: #eef2ff;
  --text-strong: #0f172a;
  --text-muted: #475569;
  --accent: #6d28d9;
  --accent-soft: #ede9fe;
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 18px 50px rgba(15, 23, 42, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height, 96px);
}

html,
body {
  width: 100%;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

body {
  background: var(--surface);
  color: var(--text-strong);
}

/* Navigation - styles preserved for mobile menu functionality */
.navigation {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.navigation.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section - Now using Tailwind classes in templates */

/* Gift Card Mockup - minimal styles, rest in Tailwind */
.gift-card-mockup {
  perspective: 1000px;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: var(--nav-height, 96px);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-strong);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--surface-strong);
  padding: 2.25rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 40, 217, 0.25);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-strong);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Demo Section */
.demo {
  background: #f8fafc;
}

.demo-container {
  max-width: 800px;
  margin: 0 auto;
}

.demo-placeholder {
  background: white;
  padding: 4rem 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.demo-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, #2e1065 0%, #6d28d9 40%, #a855f7 100%);
  color: white;
}

.pricing .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: white;
  color: #333;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 400px;
  width: 100%;
}

/* Plan populaire */
.pricing-card.popular {
  border: 3px solid #ffd700;
  transform: scale(1.05);
}

/* Plan premium */
.pricing-card.premium {
  border: 3px solid #6366f1;
}

/* Badges */
.popular-badge, .premium-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10;
}

.premium-badge {
  background: #6366f1;
  color: white;
}

.price-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #4c1d95, #7e22ce);
  color: white;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
}

.period {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

.savings {
  margin-top: 0.5rem;
}

.savings small {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-description {
  opacity: 0.9;
}

.features-list {
  padding: 2rem;
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.features-list li:last-child {
  border-bottom: none;
  margin-bottom: auto;
}

.purchase-section {
  padding: 2rem;
  background: #f1f5f9;
  text-align: center;
}

.lemon-squeezy-container {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lemonsqueezy-button {
  display: inline-block;
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(109, 40, 217, 0.25);
  border: none;
  cursor: pointer;
  min-width: 280px;
}

.lemonsqueezy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.35);
  background: linear-gradient(135deg, #5b21b6, #7e22ce);
}

.lemonsqueezy-button:active {
  transform: translateY(0);
}

/* Variations des boutons par plan */
.plan-monthly {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.plan-monthly:hover {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.plan-annual {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.plan-annual:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.plan-lifetime {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.plan-lifetime:hover {
  background: linear-gradient(135deg, #5a6fd8, #6b4190);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Boutons désactivés */
.lemonsqueezy-button.disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.lemonsqueezy-button.disabled:hover {
  transform: none !important;
  box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3) !important;
  background: #9ca3af !important;
}

.coming-soon {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  text-align: center;
}

/* Demo Section */
.demo {
  padding: 5rem 0;
  background: #f8fafc;
}

.demo-container {
  margin-top: 3rem;
}

/* GIF principal */
.demo-main {
  margin-bottom: 4rem;
}

.demo-gif-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: white;
  padding: 1rem;
}

.demo-gif {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.demo-caption {
  text-align: center;
  padding: 1rem;
  color: #666;
  font-size: 0.95rem;
  font-style: italic;
}

/* Galerie d'images */
.demo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.demo-item {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.demo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.demo-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: pointer;
  background: #f5f5f5;
}

.demo-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.demo-image-wrapper:hover img {
  transform: scale(1.05);
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(109, 40, 217, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.demo-image-wrapper:hover .demo-overlay {
  opacity: 1;
}

.demo-zoom {
  color: white;
  font-size: 2rem;
}

.demo-item h4 {
  color: #4c1d95;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.demo-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Process flow */
.demo-process {
  background: white;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.demo-process h3 {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-content strong {
  color: #333;
  font-size: 1.05rem;
}

.step-content span {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.process-arrow {
  color: #cbd5e1;
  font-size: 1.5rem;
  align-self: center;
  padding: 0 0.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
  display: block;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: zoom 0.4s;
}

@keyframes zoom {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2001;
}

.lightbox-close:hover {
  color: #bbb;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 20px 0;
}

/* Responsive Demo */
@media (max-width: 768px) {
  .demo-gallery {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
  
  .demo-gif-wrapper {
    padding: 0.5rem;
  }
  
  .demo-process {
    padding: 1.5rem;
  }
}

/* Requirements Section */
.requirements {
  background: #f8fafc;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.req-item {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.req-item h4 {
  color: #2563eb;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.req-item p {
  color: #6b7280;
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.support-card {
  background: white;
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.support-card h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.support-card p {
  color: #6b7280;
}

/* Footer */
footer {
  background: #0f172a;
  color: white;
  padding: 3.5rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #c7d2fe;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #f5d0fe;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  display: block;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (max-width: 768px) {
  .nav-container {
    padding: 1rem;
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.mobile-active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0.5rem 0;
  }
  
  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1.1rem;
  }
  
  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .features-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }

  .amount {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
  
  .req-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Roadmap Section */
.roadmap {
  padding: 5rem 0;
  background: #f8fafc;
}

.roadmap-timeline {
  max-width: 800px;
  margin: 3rem auto;
}

.roadmap-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  border-left: 4px solid #e5e7eb;
}

.roadmap-item h4 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.roadmap-item ul {
  color: #6b7280;
  margin-left: 1.5rem;
}

.roadmap-item ul li {
  margin-bottom: 0.5rem;
}

.roadmap-status {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.roadmap-status.complete {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.roadmap-status.in-progress {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.roadmap-status.planned {
  background: #dbeafe;
  color: #1e3a8a;
  border: 1px solid #93c5fd;
}

/* Documentation Pages */
.documentation,
.changelog,
.legal-content {
  padding: 6rem 0 4.5rem;
  min-height: calc(100vh - 300px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #7e22ce 100%);
  color: white;
  padding: 8rem 0 4.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.85);
}

/* Roadmap Page */
.roadmap-page {
  padding: 4rem 0;
  background: #f8fafc;
  min-height: calc(100vh - 400px);
}

.roadmap-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #6b7280;
  font-size: 1.1rem;
}

.roadmap-page .roadmap-timeline {
  max-width: 900px;
  margin: 3rem auto;
}

.roadmap-page .roadmap-item {
  background: white;
  border-radius: 18px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  border-left: 5px solid rgba(109, 40, 217, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-page .roadmap-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-strong);
}

.roadmap-page .roadmap-item h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.roadmap-date {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.roadmap-page .roadmap-item p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.roadmap-page .roadmap-item ul {
  color: #6b7280;
  margin-left: 1.5rem;
  line-height: 1.8;
}

.roadmap-page .roadmap-item ul li {
  margin-bottom: 0.75rem;
}

.roadmap-status.future {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #c084fc;
}

.roadmap-cta {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.roadmap-cta h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.roadmap-cta p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.nav-menu a.active,
.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  color: var(--accent) !important;
  font-weight: 600;
}

/* Markdown Content Styling */
.markdown-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.markdown-content .md-title {
  color: #1f2937;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #6d28d9;
}

.markdown-content .md-section {
  color: #1f2937;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #6d28d9;
}

.markdown-content .md-subsection {
  color: #374151;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.markdown-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.markdown-content .md-list {
  margin: 1.5rem 0 1.5rem 2rem;
  color: #6b7280;
}

.markdown-content .md-list li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.markdown-content .md-code {
  background: #f3f4f6;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  color: #dc2626;
}

.markdown-content .md-pre {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.markdown-content .md-pre code {
  color: inherit;
  background: none;
  padding: 0;
}

.markdown-content .md-quote {
  border-left: 4px solid #60a5fa;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  background: #f8fafc;
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.markdown-content .status-complete {
  color: #059669;
  font-weight: 600;
}

.markdown-content .status-progress {
  color: #d97706;
  font-weight: 600;
}

.markdown-content .status-planned {
  color: #2563eb;
  font-weight: 600;
}

.markdown-content .status-future {
  color: #7c3aed;
  font-weight: 600;
}

/* Changelog specific styles */
.changelog-page {
  padding: 4rem 0;
  background: #f8fafc;
  min-height: calc(100vh - 400px);
}

.changelog-page .markdown-content h2 {
  background: linear-gradient(135deg, #4c1d95, #7e22ce);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}

.changelog-page .markdown-content h3 {
  color: #374151;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}

.changelog-page .markdown-content h3:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* Version badges */
.markdown-content strong {
  color: #1f2937;
  font-weight: 600;
}

.doc-content,
.changelog-content,
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.doc-section,
.legal-section {
  margin-bottom: 3rem;
}

.doc-section h2,
.legal-section h2 {
  color: #1f2937;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.doc-section h3 {
  color: #374151;
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
}

.doc-section h4 {
  color: #4b5563;
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.doc-section p,
.legal-section p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.doc-section ul,
.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
}

.doc-section ul li,
.legal-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.doc-section code {
  background: #f3f4f6;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #dc2626;
}

.installation-steps {
  counter-reset: step-counter;
  list-style: none;
  margin-left: 0;
}

.installation-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.installation-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #667eea;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.requirement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.requirement-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.requirement-item strong {
  color: #2563eb;
  display: block;
  margin-bottom: 0.5rem;
}

.troubleshooting {
  margin-top: 1.5rem;
}

.issue {
  background: #fef3c7;
  border-left: 4px solid #fbbf24;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.issue h4 {
  color: #92400e;
  margin-bottom: 0.5rem;
}

.issue p {
  color: #78350f;
}

/* Changelog Specific */
.version-entry {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.version-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.version-header h2 {
  color: #1f2937;
  font-size: 1.5rem;
  margin: 0;
  border: none;
  padding: 0;
}

.version-date {
  color: #6b7280;
  font-size: 0.9rem;
}

.version-badge {
  background: #e5e7eb;
  color: #4b5563;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.version-badge.current {
  background: #d1fae5;
  color: #065f46;
}

.version-content h3 {
  color: #374151;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.version-content ul {
  margin-left: 1.5rem;
  color: #6b7280;
}

.changelog-footer {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.changelog-footer h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

/* Legal Pages Specific */
.legal-content .section-header p {
  color: #6b7280;
  font-style: italic;
}

.legal-section strong {
  color: #1f2937;
}

.legal-section ul {
  list-style-type: disc;
}

/* Price period styling */
.price .period {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Buy Button - now using Tailwind classes in template */
