/* ===== RAW ACCEL - Main Stylesheet ===== */
/* Brand: #7819e4 | Dark Theme | Desktop-First */

/* --- CSS Variables --- */
:root {
  --primary: #7819e4;
  --primary-light: #9b4dff;
  --primary-dark: #5a10b8;
  --primary-glow: rgba(120, 25, 228, 0.35);
  --primary-bg: rgba(120, 25, 228, 0.08);
  --bg: #0b0b16;
  --bg-secondary: #101024;
  --surface: #16162b;
  --surface-2: #1e1e38;
  --surface-3: #272745;
  --border: #2a2a4a;
  --border-light: #3a3a5a;
  --text: #f0f0f8;
  --text-secondary: #a8a8c0;
  --text-muted: #6e6e88;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;
  --info: #3b82f6;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px var(--primary-glow);
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1200px;
  --header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }
::selection { background: var(--primary); color: var(--white); }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--white); }
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; margin-bottom: 10px; }
p { margin-bottom: 16px; color: var(--text-secondary); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 2.25rem; margin-bottom: 12px; }
.section-title h2 span { color: var(--primary-light); }
.section-title p { max-width: 640px; margin: 0 auto; }
.highlight { color: var(--primary-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--primary-glow);
  color: var(--white);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary-light);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn svg, .btn i { width: 20px; height: 20px; }
.btn-download-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 20px 48px;
  font-size: 1.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s ease-in-out infinite;
}
.btn-download-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--primary-glow);
  color: var(--white);
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
  50% { box-shadow: 0 0 40px var(--primary-glow); }
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 11, 22, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(11, 11, 22, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 36px; width: auto; }
.logo span { font-size: 1.25rem; font-weight: 700; color: var(--primary-light); }

/* Navigation */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--primary-bg); }
.nav-link svg { vertical-align: middle; margin-left: 4px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdowns */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--primary-bg); color: var(--white); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Language Selector */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.lang-btn:hover { color: var(--white); border-color: var(--border); }
.lang-btn svg { width: 18px; height: 18px; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.lang-dropdown a:hover { background: var(--primary-bg); color: var(--white); }
.lang-dropdown a.active { color: var(--primary-light); font-weight: 600; }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(120, 25, 228, 0.15) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 50%);
  opacity: 0.1;
  animation: hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3.25rem; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { background: linear-gradient(135deg, var(--primary-light), #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-buttons, .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--success); }

/* --- Banner Image --- */
.banner-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin: 40px auto 0;
  max-width: 900px;
  overflow: hidden;
}
.banner-img img { width: 100%; display: block; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 100px 0 0;
}
.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary-light); }
.breadcrumbs span.sep { color: var(--text-muted); }
.breadcrumbs span.current { color: var(--text-secondary); }

/* --- Content Layout --- */
.content-section { padding: 40px 0; }
.content-section:first-child { padding-top: 20px; }
.content-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

/* Content Section Typography */
.content-section h3 { margin-top: 28px; margin-bottom: 12px; }
.content-section ul:not([class]), .content-section ol:not([class]) { padding-left: 24px; margin-bottom: 20px; }
.content-section ul:not([class]) { list-style: disc; }
.content-section ol:not([class]) { list-style: decimal; }
.content-section li { color: var(--text-secondary); margin-bottom: 8px; font-size: 0.98rem; line-height: 1.7; }
.content-section strong { color: var(--white); font-weight: 600; }
.content-section code {
  background: var(--surface-2);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--primary-light);
  border: 1px solid var(--border);
}
.content-wrapper h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.content-wrapper h3 { margin-top: 32px; }
.content-wrapper p { font-size: 1.05rem; }
.content-wrapper ul, .content-wrapper ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.content-wrapper ul { list-style: disc; }
.content-wrapper ol { list-style: decimal; }
.content-wrapper li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.content-wrapper strong { color: var(--white); font-weight: 600; }
.content-wrapper a { color: var(--primary-light); text-decoration: underline; text-underline-offset: 3px; }
.content-wrapper a:hover { color: var(--white); }

/* --- Info Cards / Feature Cards --- */
.features-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card-icon, .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-light);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; margin-bottom: 0; }

/* --- Steps --- */
.steps-list { counter-reset: step; margin-top: 24px; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.step-item:hover { border-color: var(--primary); }
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.step-content h3, .step-content h4 { margin-top: 0; margin-bottom: 6px; }
.step-content p { margin-bottom: 0; font-size: 0.95rem; }

/* --- System Requirements --- */
.sysreq-grid, .requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.sysreq-card, .req-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.sysreq-card:hover, .req-item:hover { border-color: var(--primary); }
.sysreq-card h4, .req-item h3 { color: var(--primary-light); margin-bottom: 8px; font-size: 1rem; }
.sysreq-card p, .req-item p { margin-bottom: 0; font-size: 0.93rem; }
.req-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-light);
}

/* --- Video Embed --- */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 24px auto;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Version Info Table --- */
.version-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.version-table th,
.version-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.version-table th {
  background: var(--surface-2);
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.version-table td {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.version-table tr:last-child td { border-bottom: none; }
.version-table .version-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.version-table .version-label svg { color: var(--primary-light); flex-shrink: 0; }

/* --- Screenshot Slider --- */
.screenshots-section { overflow: hidden; }
.screenshot-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--surface);
}
.screenshot-slider::-webkit-scrollbar { height: 8px; }
.screenshot-slider::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.screenshot-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.screenshot-slide, .screenshot-item {
  flex: 0 0 auto;
  width: min(900px, 90vw);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.screenshot-slide:hover, .screenshot-item:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.screenshot-slide img, .screenshot-item img { width: 100%; display: block; }

/* --- Table of Contents --- */
.toc-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0 32px;
  overflow: hidden;
}
.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
}
.toc-header:hover { background: var(--surface-2); }
.toc-header h4, .toc-header span { margin-bottom: 0; font-size: 1rem; color: var(--text-secondary); font-weight: 700; }
.toc-header svg { transition: transform var(--transition); color: var(--text-muted); }
.toc-container.open .toc-header svg { transform: rotate(180deg); }
.toc-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.toc-container.open .toc-toggle { transform: rotate(180deg); }
.toc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.toc-container.open .toc-body { max-height: 2000px; }
.toc-container > nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.toc-container.open > nav { max-height: 2000px; }
.toc-list {
  padding: 0;
  list-style: none;
}
.toc-list ol { list-style: none; padding: 0 20px 16px; margin: 0; }
.toc-list li { margin-bottom: 6px; }
.toc-list a {
  display: block;
  padding: 6px 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-left: 2px solid var(--border);
  transition: all var(--transition);
}
.toc-list a:hover {
  color: var(--primary-light);
  border-color: var(--primary);
  background: var(--primary-bg);
}
.toc-list .toc-sub { padding-left: 28px; }
.toc-list ol ol { padding: 0 0 0 20px; margin: 4px 0 0; }
.toc-list ol ol a { font-size: 0.85rem; border-left-color: var(--surface-3); padding-left: 16px; }
.toc-list ol ol ol { padding-left: 16px; }
.toc-list ol ol ol a { font-size: 0.82rem; }

/* --- FAQ Accordion --- */
.faq-section { margin-top: 24px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
  width: 100%;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.faq-question:hover { background: var(--surface-2); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-light);
  transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 24px 18px; }
.faq-answer-inner p { font-size: 0.95rem; margin-bottom: 0; }
.faq-answer > p,
.faq-answer > ul,
.faq-answer > ol {
  padding-left: 24px;
  padding-right: 24px;
  font-size: 0.95rem;
}
.faq-answer > :first-child { margin-top: 0; padding-top: 4px; }
.faq-answer > :last-child { padding-bottom: 20px; margin-bottom: 0; }

/* --- Pros & Cons --- */
.proscons, .pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.pros-card, .pros-list {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--success);
}
.cons-card, .cons-list {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--danger);
}
.pros-card h3, .cons-card h3, .pros-list h3, .cons-list h3 { font-size: 1.15rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-card h3, .pros-list h3 { color: var(--success); }
.cons-card h3, .cons-list h3 { color: var(--danger); }
.pros-card ul, .cons-card ul, .pros-list ul, .cons-list ul { list-style: none; padding: 0; }
.pros-card li, .cons-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pros-card li:last-child, .cons-card li:last-child { border-bottom: none; }
.pros-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.cons-card li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.pros-item, .cons-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pros-item:last-child, .cons-item:last-child { border-bottom: none; }
.pros-item svg, .cons-item svg { flex-shrink: 0; margin-top: 2px; }

/* --- Download Page --- */
.download-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(120, 25, 228, 0.12) 0%, transparent 60%);
}
.download-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.download-box .app-icon { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: var(--radius-lg); }
.download-box h1 { font-size: 2rem; margin-bottom: 8px; }
.download-box .version { color: var(--primary-light); font-size: 0.95rem; margin-bottom: 24px; }
.download-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.download-meta-item { text-align: center; }
.download-meta-item .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.download-meta-item .value { font-size: 1.05rem; color: var(--white); font-weight: 600; margin-top: 4px; }
.download-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--success);
  font-size: 0.9rem;
}
.download-security svg { width: 18px; height: 18px; }

/* Old Versions */
.old-versions { margin-top: 24px; }
.old-versions-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.old-versions-table th, .old-versions-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.old-versions-table th {
  background: var(--surface-2);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.old-versions-table td { color: var(--text-secondary); font-size: 0.95rem; }
.old-versions-table td a { color: var(--primary-light); font-weight: 500; }
.old-versions-table tr:last-child td { border-bottom: none; }
.old-versions-table tr:hover td { background: var(--surface-2); }

/* --- Changelog --- */
.changelog-list { margin-top: 24px; }
.changelog-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  border-left: 3px solid var(--primary);
}
.changelog-item h4 { color: var(--primary-light); margin-bottom: 4px; }
.changelog-item .date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.changelog-item ul { list-style: disc; padding-left: 20px; margin-bottom: 0; }
.changelog-item li { color: var(--text-secondary); font-size: 0.93rem; margin-bottom: 4px; }

/* --- Tools Pages --- */
.tool-hero {
  padding: 140px 0 40px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(120, 25, 228, 0.12) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.tool-hero h1 { font-size: 2.5rem; margin-bottom: 12px; }
.tool-hero p { font-size: 1.05rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.tool-container {
  max-width: 800px;
  margin: 0 auto;
}
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
.tool-form { margin-top: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a8a8c0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-result {
  margin-top: 24px;
  padding: 24px;
  background: var(--primary-bg);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  text-align: center;
}
.tool-result .result-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.tool-result .result-value { font-size: 2.5rem; font-weight: 800; color: var(--primary-light); margin-top: 8px; }
.tool-result .result-unit { font-size: 0.9rem; color: var(--text-secondary); margin-top: 4px; }
.tool-info {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 320px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4, .footer-links h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a, .footer-links a {
  display: block;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover, .footer-links a:hover { color: var(--primary-light); }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-disclaimer { font-style: italic; }

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-inner, .cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p, .cookie-content p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); flex: 1; }
.cookie-inner a, .cookie-content a { color: var(--primary-light); }
.cookie-btns, .cookie-actions { display: flex; gap: 12px; }

/* --- Legal Pages --- */
.legal-section { padding: 120px 0 100px; }
.legal-content { max-width: 800px; margin: 0 auto; padding-top: 120px; padding-bottom: 40px; }
.legal-content h1 { font-size: 2.25rem; margin-bottom: 8px; }
.legal-content .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; color: var(--primary-light); border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-content p { font-size: 0.98rem; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content li { color: var(--text-secondary); margin-bottom: 6px; font-size: 0.95rem; }

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  min-height: 160px;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition);
}
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

/* --- Article Cards --- */
.articles-grid, .article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.article-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.article-card-body { padding: 24px; }
.article-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.article-card h3 a { color: var(--white); }
.article-card h3 a:hover { color: var(--primary-light); }
.article-card p { font-size: 0.9rem; margin-bottom: 16px; }
.article-card .read-more { color: var(--primary-light); font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* --- Who Should Use / Supported Games --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.audience-card:hover { border-color: var(--primary); }
.audience-card h4 { color: var(--primary-light); margin-bottom: 8px; font-size: 1.05rem; }
.audience-card p { margin-bottom: 0; font-size: 0.93rem; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  margin: 24px 0;
  overflow: hidden;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th, .comparison-table td,
.comparison-table table th, .comparison-table table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th, .comparison-table table th {
  background: var(--surface-2);
  color: var(--primary-light);
  font-size: 0.9rem;
  text-transform: uppercase;
}
.comparison-table td, .comparison-table table td { color: var(--text-secondary); font-size: 0.95rem; }
.comparison-table tr:last-child td, .comparison-table table tr:last-child td { border-bottom: none; }

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(120, 25, 228, 0.08) 50%, var(--bg) 100%);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 560px; margin: 0 auto 32px; }

/* --- Fix Box (Problem/Fix Differentiation) --- */
.fix-box {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-left: 3px solid var(--success);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.fix-box h3 {
  color: var(--success);
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fix-box ul { list-style: disc; padding-left: 20px; margin-bottom: 0; }
.fix-box li { color: var(--text-secondary); margin-bottom: 6px; font-size: 0.95rem; }
.fix-box p { font-size: 0.95rem; margin-bottom: 0; }
.fix-box p + ul { margin-top: 8px; }

/* --- Article Card Direct Child Fallback --- */
.article-card > h3 { padding: 20px 24px 0; font-size: 1.1rem; margin-bottom: 8px; }
.article-card > p { padding: 0 24px; font-size: 0.9rem; margin-bottom: 16px; }
.article-card > .read-more { padding: 0 24px 20px; display: block; }

/* --- Related Articles --- */
.related-articles { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }

/* --- Internal Links --- */
.internal-link-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.internal-link-box a { font-weight: 600; }

/* --- Choice Cards --- */
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.choice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  border-top: 3px solid var(--primary);
}
.choice-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.choice-card h3 { color: var(--primary-light); font-size: 1.15rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.choice-card p { font-size: 0.93rem; margin-bottom: 12px; }
.choice-card ul { list-style: disc; padding-left: 20px; margin-bottom: 0; }
.choice-card li { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 4px; }

/* --- Game Tags --- */
.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.game-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.game-tag:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: var(--primary-bg);
}

/* --- Article Card Image --- */
.article-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* --- Lightbox Overlay --- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10001;
}
.lightbox-close:hover {
  background: var(--danger);
  border-color: var(--danger);
}

/* --- Back to Top Button --- */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  z-index: 100;
}
#back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* --- Centered Download Hero Button --- */
.download-hero-btn {
  text-align: center;
  padding: 40px 0 0;
}

/* --- Version Info Table (Download Page) --- */
.version-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
}
.version-info-table th, .version-info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.version-info-table th {
  background: var(--surface-2);
  color: var(--primary-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  width: 180px;
}
.version-info-table td { color: var(--text-secondary); font-size: 0.95rem; }
.version-info-table tr:last-child th,
.version-info-table tr:last-child td { border-bottom: none; }

/* --- Info Box (Download Page) --- */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 24px 0;
}
.info-box h3 { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.info-box h3 svg { color: var(--primary-light); }
.info-box ul { list-style: none; padding: 0; }
.info-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.info-box li svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }

/* --- Tool Form Enhancement --- */
.tool-form-group { margin-bottom: 20px; }
.tool-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.tool-form-group input, .tool-form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}
.tool-form-group input:focus, .tool-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}
.tool-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a8a8c0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .requirements-grid, .sysreq-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 120px 0 60px; }
  .tool-hero { padding: 120px 0 30px; }
  .hero h1 { font-size: 2.25rem; }
  .tool-hero h1 { font-size: 2rem; }
  .hero-buttons, .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .btn-download-hero { padding: 16px 32px; font-size: 1.05rem; }
  .proscons, .pros-cons { grid-template-columns: 1fr; }
  .choice-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .download-meta { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .articles-grid { grid-template-columns: 1fr; }
  .features-grid, .feature-grid { grid-template-columns: 1fr; }
  .sysreq-grid, .requirements-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }

  /* Mobile Nav */
  .header-actions { margin-left: auto; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1.05rem; }
  .mobile-toggle { display: flex; margin-left: 8px; }
  .header-download { display: none; }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--surface);
    margin-top: 4px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .hero-badges { gap: 16px; }
  .download-box { padding: 32px 20px; }
  .tool-card { padding: 24px; }
  .screenshot-slide, .screenshot-item { width: min(600px, 90vw); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  h2 { font-size: 1.35rem; }
  .section-title h2 { font-size: 1.5rem; }
  .step-item { flex-direction: column; gap: 12px; }
  .screenshot-slide, .screenshot-item { width: 92vw; }
}

/* --- RTL Support --- */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .toc-list a { border-left: none; border-right: 2px solid var(--border); padding-left: 12px; padding-right: 28px; }
[dir="rtl"] .toc-list a:hover { border-right-color: var(--primary); }
[dir="rtl"] .pros-card li, [dir="rtl"] .cons-card li, [dir="rtl"] .pros-item, [dir="rtl"] .cons-item { padding-left: 0; padding-right: 28px; }
[dir="rtl"] .pros-card li::before, [dir="rtl"] .cons-card li::before { left: auto; right: 0; }
[dir="rtl"] .changelog-item { border-left: none; border-right: 3px solid var(--primary); }
[dir="rtl"] .internal-link-box { border-left: 1px solid var(--border); border-right: 3px solid var(--primary); }
[dir="rtl"] .nav-link svg { margin-left: 0; margin-right: 4px; }

/* --- Google Translate Override --- */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; visibility: hidden !important; height: 0 !important; }
body { top: 0 !important; position: relative !important; }
body > .skiptranslate { display: none !important; height: 0 !important; overflow: hidden !important; }
.skiptranslate iframe { display: none !important; }
#google_translate_element { position: fixed !important; top: -9999px !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

/* --- Print Styles --- */
@media print {
  .header, .footer, .cookie-banner, .hero::before { display: none; }
  body { background: white; color: black; }
  a { color: var(--primary-dark); }
}
