/* ============================================
   MolePack — EDC Review Site
   Dark Tactical Theme for Cloudflare Pages
   ============================================ */

:root {
  --bg: #0d0f12;
  --bg-alt: #15181d;
  --bg-card: #1a1e24;
  --bg-hover: #222730;
  --border: #2a2f38;
  --border-light: #353b46;
  --text: #e4e7ec;
  --text-dim: #8b919e;
  --text-muted: #5d6370;
  --accent: #c89b3c;
  --accent-hover: #d9ab4a;
  --accent-dim: rgba(200, 155, 60, 0.15);
  --green: #4caf50;
  --red: #ef4444;
  --blue: #3b82f6;
  --orange: #f59e0b;
  --radius: 8px;
  --radius-sm: 4px;
  --max-width: 1200px;
  --shadow: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', Consolas, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  white-space: nowrap;
}

.logo span { color: var(--accent); }

.logo svg { flex-shrink: 0; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.main-nav a:hover, .main-nav a.active {
  color: var(--text);
}

.search-box {
  position: relative;
  width: 200px;
}

.search-box input {
  width: 100%;
  padding: 8px 12px 8px 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.search-box input:focus { border-color: var(--accent); }
.search-box input::placeholder { color: var(--text-muted); }

.search-box svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

/* ========== AFFILIATE BAR ========== */
.affiliate-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 6px 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.affiliate-bar a { color: var(--text-dim); text-decoration: underline; }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.page-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 20px;
}

.page-wrap.full-width {
  grid-template-columns: 1fr;
}

main { min-width: 0; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
}

.hero p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 540px;
  position: relative;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

.hero-badge svg { color: var(--accent); }

/* ========== SECTION ========== */
.section { margin-bottom: 48px; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-header a {
  font-size: 13px;
  font-weight: 500;
}

.section-line {
  height: 3px;
  width: 40px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ========== CARDS GRID ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-light);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-img svg { width: 60%; height: 60%; opacity: 0.3; }

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-badge.top-pick { background: var(--green); color: #fff; }
.card-badge.budget { background: var(--blue); color: #fff; }
.card-badge.premium { background: var(--accent); color: #000; }

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-title a { color: var(--text); }
.card-title a:hover { color: var(--accent); }

.card-excerpt {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-stars { color: var(--accent); letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--text); }

/* ========== ARTICLE LIST ========== */
.article-list { display: flex; flex-direction: column; gap: 16px; }

.article-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.article-item:hover { border-color: var(--border-light); }

.article-thumb {
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumb svg { width: 40px; height: 40px; opacity: 0.3; }

.article-content { flex: 1; min-width: 0; }

.article-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.article-content h3 a { color: var(--text); }
.article-content h3 a:hover { color: var(--accent); }

.article-content p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.article-content .article-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== COMPARISON TABLE ========== */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.comparison-table th {
  background: var(--bg-alt);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dim);
  border-bottom: 2px solid var(--border-light);
  white-space: nowrap;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tr:hover td { background: var(--bg-hover); }

.comparison-table .product-name { font-weight: 600; color: var(--text); }
.comparison-table .price { font-weight: 700; color: var(--accent); }
.comparison-table .check { color: var(--green); font-size: 18px; }
.comparison-table .cross { color: var(--red); font-size: 18px; }

.btn-small {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.btn-small:hover { background: var(--accent-hover); color: #000; }

/* ========== SIDEBAR ========== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.sidebar-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }

.newsletter-form input {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
}

.newsletter-form input:focus { border-color: var(--accent); }

.newsletter-form button {
  padding: 10px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--accent-hover); }

.sidebar-card p { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-dim);
  transition: all var(--transition);
}

.tag:hover { border-color: var(--accent); color: var(--accent); }

.sidebar-link-list { list-style: none; }

.sidebar-link-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-link-list li:last-child { border-bottom: none; }

.sidebar-link-list a {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-link-list a:hover { color: var(--accent); }

.sidebar-link-list .date { font-size: 11px; color: var(--text-muted); }

/* ========== ARTICLE PAGE ========== */
.article-header { margin-bottom: 32px; }

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--text-dim); }
.breadcrumb span { margin: 0 6px; }

.article-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-meta .author { color: var(--text-dim); font-weight: 500; }

.article-meta .rating-large {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta .rating-large .stars { color: var(--accent); font-size: 16px; }
.article-meta .rating-large .score { font-weight: 700; color: var(--text); }

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.toc h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.toc ol {
  list-style: none;
  counter-reset: toc;
}

.toc ol li {
  counter-increment: toc;
  padding: 4px 0;
  font-size: 14px;
}

.toc ol li::before {
  content: counter(toc) ".";
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}

.toc a { color: var(--text-dim); }
.toc a:hover { color: var(--accent); }

/* Article Body */
.article-body { font-size: 16px; line-height: 1.8; }

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.3px;
}

.article-body h2:first-child { border-top: none; padding-top: 0; }

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.article-body p { margin-bottom: 16px; color: var(--text); }

.article-body ul, .article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body strong { color: var(--text); font-weight: 700; }

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 16px;
  color: var(--text-dim);
  font-style: italic;
}

/* Product Review Box */
.product-review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.product-review-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-review-img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-review-img svg { width: 50%; height: 50%; opacity: 0.3; }

.product-review-info { flex: 1; min-width: 200px; }

.product-review-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-review-info .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.product-review-info .product-rating .stars { color: var(--accent); }

.product-review-info .product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.product-review-info .product-price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 15px;
  margin-left: 6px;
}

.btn-check-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-check-price:hover { background: var(--accent-hover); color: #000; }

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.pros-cons-box {
  padding: 16px;
  border-radius: var(--radius-sm);
}

.pros-cons-box.pros {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.pros-cons-box.cons {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-cons-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-cons-box.pros h4 { color: var(--green); }
.pros-cons-box.cons h4 { color: var(--red); }

.pros-cons-box ul { list-style: none; padding: 0; }

.pros-cons-box li {
  font-size: 13px;
  padding: 4px 0;
  color: var(--text-dim);
  display: flex;
  gap: 6px;
}

.pros-cons-box.pros li::before { content: '+'; color: var(--green); font-weight: 700; }
.pros-cons-box.cons li::before { content: '-'; color: var(--red); font-weight: 700; }

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 12px 0;
}

.spec-table th, .spec-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.spec-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.spec-table td { color: var(--text); font-weight: 500; }

/* Verdict Box */
.verdict-box {
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.verdict-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}

.verdict-box p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-dim);
}

/* CTA Box */
.cta-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 32px 0;
}

.cta-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-box p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.btn-large {
  display: inline-block;
  padding: 12px 32px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.btn-large:hover { background: var(--accent-hover); color: #000; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-brand h3 span { color: var(--accent); }

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== ALERT / NOTICE ========== */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}

.notice.info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
}

/* ========== PAGE HEADER (non-home pages) ========== */
.page-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 15px;
  color: var(--text-dim);
}

/* ========== LEGAL/STATIC PAGE ========== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text-dim);
}

.legal-content ul { margin-bottom: 14px; padding-left: 24px; }
.legal-content li { margin-bottom: 6px; color: var(--text-dim); }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .page-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .search-box { display: none; }
  .menu-toggle { display: block; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 16px;
  }

  .hero { padding: 32px 24px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }

  .article-title { font-size: 24px; }

  .pros-cons { grid-template-columns: 1fr; }

  .product-review-header { flex-direction: column; }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .article-item { flex-direction: column; }
  .article-thumb { width: 100%; height: 120px; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ========== SELECTION ========== */
::selection { background: var(--accent-dim); color: var(--text); }
