/* =============================================
   VelvetVoyager — Violet Voyage Colour Scheme
   Light mode: white backgrounds, dark text
   Dark mode: deep purple backgrounds, light text
   ============================================= */

/* ── COLOUR VARIABLES ────────────────────────── */
:root {
  /* Structure */
  --ink:        #1a0a2e;   /* headings + dark bg text */
  --ink-mid:    #2d1558;   /* hero gradient mid */
  --white:      #ffffff;
  --sand:       #f8f5ff;   /* subtle lavender surface */
  --light:      #fdfcff;   /* near-white sections */
  --border:     #d8cce8;   /* soft purple border */
  --shadow:     0 4px 24px rgba(26,10,46,.10);
  --radius:     12px;

  /* Text — calibrated for WCAG AA on white */
  --body-text:  #2d2040;   /* main body copy */
  --para-text:  #3a3050;   /* paragraph text */
  --muted:      #4a3f5c;   /* captions, meta */
  --subtle:     #6b5a80;   /* placeholders, very secondary */

  /* Brand — TWO versions of each colour:
     -on-white: dark enough for WCAG AA on white (#fff)
     -on-dark:  bright/light enough to show on dark purple */
  --amber-on-white: #b86e00;   /* amber text/icons on white bg */
  --amber-on-dark:  #ffb347;   /* amber text/icons on dark bg */
  --amber-bg:       #ffb347;   /* amber as a background colour */
  --amber-bg-dark:  #e09020;   /* darker amber bg on hover */

  --violet-on-white: #5e1a6e;  /* violet text/links on white bg */
  --violet-on-dark:  #d4a8e8;  /* violet/lavender text on dark bg */
  --violet-bg:       #7b2d8b;  /* violet as a background colour */
  --violet-bg-dark:  #621875;  /* darker violet bg on hover */

  /* Legacy aliases — kept so old inline styles still work */
  --amber:      #b86e00;
  --amber-lt:   #d4860a;
  --amber-dk:   #8a5000;
  --violet:     #5e1a6e;
  --violet-lt:  #7a2490;
  --gray:       #4a3f5c;
  --gold:       #b86e00;
  --gold-lt:    #d4860a;
  --teal:       #5e1a6e;
  --teal-lt:    #7a2490;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────── */
html { color-scheme: light; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE ────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a   { color: var(--violet-on-white); text-decoration: none; }
a:hover { color: var(--violet-bg); }

h1,h2,h3,h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--ink);
}

p { color: var(--para-text); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR — dark background, bright text ───── */
.navbar {
  background: var(--ink);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(26,10,46,.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: .5rem; color: var(--white); font-weight: 700; }
.logo-icon { font-size: 1.4rem; }
.logo-text { font-family: var(--font-head); font-size: 1.4rem; color: var(--amber-on-dark); }
.nav-links { display: flex; list-style: none; gap: 1.25rem; align-items: center; flex-wrap: nowrap; }
.nav-links a { color: rgba(255,255,255,.88); font-size: .85rem; font-weight: 500; letter-spacing: .02em; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--amber-on-dark); }
.nav-signin {
  background: var(--amber-bg) !important;
  color: var(--ink) !important;
  padding: .35rem 1rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  white-space: nowrap;
}
.nav-signin:hover { background: var(--amber-bg-dark) !important; color: var(--ink) !important; }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ── HERO — dark background ──────────────────── */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 55%, #4a1575 100%);
  color: white;
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="20" r="1" fill="rgba(255,179,71,.15)"/><circle cx="80" cy="60" r="1.5" fill="rgba(255,179,71,.1)"/><circle cx="140" cy="30" r="1" fill="rgba(255,179,71,.2)"/><circle cx="170" cy="80" r="2" fill="rgba(255,179,71,.08)"/><circle cx="50" cy="120" r="1" fill="rgba(123,45,139,.2)"/><circle cx="120" cy="140" r="1.5" fill="rgba(255,179,71,.12)"/><circle cx="190" cy="160" r="1" fill="rgba(255,179,71,.18)"/><circle cx="30" cy="170" r="1.5" fill="rgba(123,45,139,.15)"/></svg>') repeat;
  opacity: .7;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,179,71,.18);
  color: var(--amber-on-dark);
  border: 1px solid rgba(255,179,71,.35);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.2rem; color: white; }
.hero h1 span { color: var(--amber-on-dark); }
.hero p { font-size: 1.1rem; opacity: .88; max-width: 560px; margin: 0 auto 2rem; color: white; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-gold    { background: var(--amber-bg); color: var(--ink); }
.btn-gold:hover { background: var(--amber-bg-dark); color: var(--ink); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: white; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── STATS BAR — amber background, dark text ─── */
.stats-bar { background: var(--amber-bg); padding: 1rem 0; }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; text-align: center; }
.stat-item strong { display: block; font-size: 1.5rem; font-family: var(--font-head); color: var(--ink); }
.stat-item span   { font-size: .8rem; font-weight: 600; color: var(--ink); opacity: .75; }

/* ── SECTION HEADERS — white background ──────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--violet-on-white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--ink); }
.section-header p  { color: var(--muted); max-width: 560px; margin: .75rem auto 0; }

/* ── CARD GRIDS ──────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }

/* ── PROGRAM CARD — white background ────────── */
.prog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.prog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.prog-card .cat-badge {
  display: inline-block;
  background: var(--sand);
  color: var(--violet-on-white);
  border: 1px solid var(--border);
  padding: .2rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: .75rem;
}
.prog-card h3        { font-size: 1.2rem; margin-bottom: .4rem; color: var(--ink); }
.prog-card .commission { color: var(--violet-on-white); font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.prog-card p         { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.prog-card .meta     { display: flex; gap: 1rem; font-size: .78rem; color: var(--muted); margin-bottom: 1rem; }
.prog-card .rating   { color: var(--amber-on-white); font-weight: 700; }
.stars               { color: var(--amber-on-white); letter-spacing: .05em; }

/* ── DESTINATION CARD — always dark bg ───────── */
.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  background: linear-gradient(145deg, var(--violet-bg) 0%, var(--ink) 100%);
  display: flex; align-items: flex-end;
  transition: transform .2s;
  cursor: pointer;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card-img   { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .6; }
.dest-card-body  { position: relative; z-index: 1; padding: 1.25rem; color: white; }
.dest-card-body h3   { font-size: 1.3rem; color: white; }
.dest-card-body span { font-size: .82rem; opacity: .85; color: white; }
.dest-budget {
  display: inline-block;
  background: rgba(255,179,71,.92);
  color: var(--ink);
  padding: .15rem .7rem;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  margin-top: .4rem;
}

/* ── BLOG CARD — white background ───────────── */
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-img  { height: 180px; background: linear-gradient(135deg, var(--violet-bg) 0%, var(--ink) 100%); }
.blog-card-body { padding: 1.25rem; }
.blog-tag  { font-size: .73rem; font-weight: 700; color: var(--violet-on-white); text-transform: uppercase; letter-spacing: .1em; }
.blog-card h3  { font-size: 1.05rem; margin: .4rem 0; line-height: 1.3; color: var(--ink); }
.blog-card p   { font-size: .85rem; color: var(--muted); }
.blog-meta     { font-size: .78rem; color: var(--subtle); margin-top: .75rem; }

/* ── HOW IT WORKS — sand background ─────────── */
.how-it-works { background: var(--sand); padding: 5rem 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.step  { text-align: center; padding: 1.5rem; }
.step-num {
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--amber-on-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 6px rgba(94,26,110,.12);
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--ink); }
.step p  { font-size: .88rem; color: var(--muted); }

/* ── SECTIONS ────────────────────────────────── */
.section     { padding: 5rem 0; }
.section-alt { padding: 5rem 0; background: var(--light); }

/* ── CTA BANNER — dark background ───────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--violet-bg) 0%, var(--ink) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 1rem; color: white; }
.cta-banner p  { opacity: .85; max-width: 500px; margin: 0 auto 2rem; color: white; }

/* ── AFFILIATE BUTTON ────────────────────────── */
.btn-affiliate {
  display: inline-block;
  padding: .6rem 1.4rem;
  background: var(--violet-bg);
  color: white;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s;
}
.btn-affiliate:hover { background: var(--violet-bg-dark); color: white; }

/* ── FILTER BAR — white background ──────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .4rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: white;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  transition: all .2s;
  color: var(--body-text);
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: white; border-color: var(--ink); }

/* ── FOOTER — dark background ────────────────── */
.footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .85rem; opacity: .7; margin-top: .75rem; color: rgba(255,255,255,.7); }
.footer-col h4  { color: var(--amber-on-dark); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-col ul  { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a  { color: rgba(255,255,255,.7); font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--amber-on-dark); }
.footer-form { display: flex; gap: .5rem; margin-top: .75rem; }
.footer-form input { flex: 1; padding: .5rem .75rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 6px; color: white; font-size: .85rem; }
.footer-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-form button { padding: .5rem 1rem; background: var(--amber-bg); color: var(--ink); border: none; border-radius: 6px; font-weight: 700; font-size: .82rem; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; font-size: .8rem; opacity: .6; display: flex; justify-content: center; }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ── ALERTS ──────────────────────────────────── */
.alert         { padding: 1rem 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: .9rem; }
.alert-success { background: #f0fdf4; color: #166534; border-left: 3px solid #22c55e; }
.alert-error   { background: #fef2f2; color: #991b1b; border-left: 3px solid #ef4444; }

/* ── ADMIN — always light ────────────────────── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; flex-shrink: 0; background: var(--ink); padding: 1.5rem 0; }
.admin-sidebar .logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-nav { list-style: none; margin-top: 1rem; }
.admin-nav li a { display: block; padding: .65rem 1.5rem; color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 500; transition: all .15s; }
.admin-nav li a:hover, .admin-nav li a.active { background: rgba(255,255,255,.07); color: var(--amber-on-dark); border-left: 3px solid var(--amber-on-dark); }
.admin-main    { flex: 1; padding: 2rem; background: var(--light); }
.admin-header  { margin-bottom: 2rem; }
.admin-header h1 { font-size: 1.6rem; color: var(--ink); }
.admin-table   { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { background: var(--ink); color: var(--amber-on-dark); padding: .75rem 1rem; text-align: left; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.admin-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--body-text); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--sand); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .4rem; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .6rem .9rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .9rem; font-family: var(--font-body);
  transition: border-color .2s; color: var(--body-text); background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--violet-bg);
  box-shadow: 0 0 0 3px rgba(94,26,110,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.card { background: white; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.badge-active   { background: #f0fdf4; color: #166534; padding: .2rem .6rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
.badge-inactive { background: #fef9ec; color: #92400e; padding: .2rem .6rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--ink); padding: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 290px"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns:1.5fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── MISC COMPONENTS ─────────────────────────── */
.search-highlight { background: rgba(184,110,0,.18); padding: 0 .15rem; border-radius: 2px; }
.review-widget { border-top: 2px solid var(--border); padding-top: 2rem; }
.deal-badge    { display: inline-block; padding: .2rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 700; color: white; }
.quick-facts   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.breadcrumb    { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: .5rem; }
.breadcrumb a  { color: var(--amber-on-dark); }
.post-content img { max-width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }
.post-content h2, .post-content h3 { margin: 1.5rem 0 .75rem; color: var(--ink); }
.post-content p  { margin-bottom: 1rem; color: var(--para-text); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--para-text); }
.post-content li { margin-bottom: .4rem; }
.post-content blockquote { border-left: 4px solid var(--violet-bg); padding: .75rem 1.25rem; background: var(--sand); border-radius: 0 8px 8px 0; margin: 1.5rem 0; font-style: italic; color: var(--muted); }
.post-content a { color: var(--violet-on-white); text-decoration: underline; text-decoration-style: dotted; }
.visible       { opacity: 1 !important; transform: translateY(0) !important; }

/* ── WISHLIST / ACCOUNT ──────────────────────── */
.wishlist-btn { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: rgba(255,255,255,.4); transition: color .2s, transform .2s; padding: .2rem; line-height: 1; }
.wishlist-btn:hover { color: #ef4444; transform: scale(1.15); }
.wishlist-btn.saved { color: #ef4444; }
.account-tab-active { border-bottom: 3px solid var(--amber-bg) !important; color: var(--ink) !important; }

/* ── TOAST ───────────────────────────────────── */
.toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--amber-on-dark); padding: .65rem 1.5rem; border-radius: 50px; font-size: .88rem; font-weight: 600; z-index: 9999; box-shadow: 0 4px 24px rgba(26,10,46,.4); pointer-events: none; }

/* ── AUTO AFFILIATE LINKS ────────────────────── */
.auto-affiliate-link { color: var(--violet-on-white); text-decoration: underline; text-decoration-style: dotted; font-weight: 600; transition: color .15s; }
.auto-affiliate-link:hover { color: var(--violet-bg); }

/* ── SOCIAL SHARE ────────────────────────────── */
.social-share { background: var(--sand) !important; border-radius: var(--radius); }
.social-share a, .social-share button { transition: opacity .15s, transform .15s; }
.social-share a:hover, .social-share button:hover { transform: translateY(-1px); }

/* ── FAQ ─────────────────────────────────────── */
.faq-widget h2 { font-size: 1.3rem; color: var(--ink); }
.faq-toggle { color: var(--ink) !important; }
.faq-toggle:hover { background: var(--sand) !important; }

/* ── SEO CHECKER ─────────────────────────────── */
.seo-meter  { transition: all .3s; }
.seo-issue  { padding: .3rem .6rem; background: #fef3c7; border-left: 3px solid #f59e0b; border-radius: 0 4px 4px 0; font-size: .78rem; color: #92400e; margin-bottom: .3rem; }
.seo-pass   { padding: .3rem .6rem; background: #f0fdf4; border-left: 3px solid #22c55e; border-radius: 0 4px 4px 0; font-size: .78rem; color: #166534; margin-bottom: .3rem; }
.char-count { font-size: .72rem; color: var(--muted); float: right; }
.char-warn  { color: #ef4444; }

/* ── ANIMATIONS ──────────────────────────────── */
.widget-panel { animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.gen-loading  { opacity: .5; pointer-events: none; }

/* ── READING PROGRESS ────────────────────────── */
#reading-progress { border-radius: 0 2px 2px 0; }

/* ── RESPONSIVE POPUPS ───────────────────────── */
@media (max-width: 640px) {
  #exit-popup > div { padding: 1.75rem 1.25rem; }
  #cookie-banner    { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════
   DARK MODE — only when data-theme="dark"
   All dark mode overrides in one place.
   Dark is opt-in via the 🌙 toggle.
   ══════════════════════════════════════════════ */
[data-theme="dark"] {
  --body-text:  #e8deff;
  --para-text:  #cbbfee;
  --muted:      #a892cc;
  --subtle:     #8a78aa;
  --border:     #3d2660;
  --sand:       #1e1030;
  --light:      #160a28;
  --white:      #1a0f2e;
}
[data-theme="dark"] body           { background: #120822; color: #e8deff; }
[data-theme="dark"] p              { color: #cbbfee; }
[data-theme="dark"] h1,[data-theme="dark"] h2,
[data-theme="dark"] h3,[data-theme="dark"] h4 { color: #f0e8ff; }
[data-theme="dark"] a              { color: #c4a0e0; }
[data-theme="dark"] a:hover        { color: #dbc0f5; }
[data-theme="dark"] .card          { background: #1e1030; border-color: #3d2660; }
[data-theme="dark"] .prog-card     { background: #1e1030; border-color: #3d2660; }
[data-theme="dark"] .prog-card h3  { color: #f0e8ff; }
[data-theme="dark"] .prog-card p   { color: #a892cc; }
[data-theme="dark"] .prog-card .commission { color: #c4a0e0; }
[data-theme="dark"] .prog-card .cat-badge  { background: #2a1545; color: #c4a0e0; border-color: #3d2660; }
[data-theme="dark"] .blog-card     { background: #1e1030; border-color: #3d2660; }
[data-theme="dark"] .blog-card h3  { color: #f0e8ff; }
[data-theme="dark"] .blog-card p   { color: #a892cc; }
[data-theme="dark"] .blog-meta     { color: #8a78aa; }
[data-theme="dark"] .blog-tag      { color: #c4a0e0; }
[data-theme="dark"] .section-alt   { background: #160a28; }
[data-theme="dark"] .how-it-works  { background: #1a0f2e; }
[data-theme="dark"] .step h3       { color: #f0e8ff; }
[data-theme="dark"] .step p        { color: #a892cc; }
[data-theme="dark"] .filter-btn    { background: #1e1030; color: #e0d0f8; border-color: #3d2660; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select { background: #1e1030; border-color: #3d2660; color: #f0e8ff; }
[data-theme="dark"] .form-group label  { color: #e8deff; }
[data-theme="dark"] .faq-toggle    { background: #1e1030!important; color: #f0e8ff!important; }
[data-theme="dark"] .faq-answer    { background: #160a28!important; }
[data-theme="dark"] .social-share  { background: #1a0f2e!important; }
[data-theme="dark"] #exit-popup > div { background: #1e1030; }
[data-theme="dark"] .section-header .eyebrow { color: #c4a0e0; }
[data-theme="dark"] .section-header p { color: #a892cc; }
[data-theme="dark"] .post-content p   { color: #cbbfee; }
[data-theme="dark"] .post-content blockquote { background: #1e1030; border-color: #7b2d8b; color: #a892cc; }
[data-theme="dark"] .post-content a   { color: #c4a0e0; }
[data-theme="dark"] .auto-affiliate-link { color: #c4a0e0; }
[data-theme="dark"] .search-highlight   { background: rgba(255,179,71,.2); }
[data-theme="dark"] .admin-main    { background: #120822; }
[data-theme="dark"] .admin-table   { background: #1e1030; }
[data-theme="dark"] .admin-table td { border-color: #3d2660; color: #e0d0f8; }
[data-theme="dark"] .admin-table tr:hover td { background: #2a1545; }
[data-theme="dark"] .admin-header h1 { color: #f0e8ff; }
