*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:   #0a3d7a;
  --blue-mid:    #1256b4;
  --blue:        #1565c0;
  --blue-bright: #1e88e5;
  --blue-light:  #e8f1fb;
  --white:       #ffffff;
  --bg:          #f5f8fd;
  --text:        #0d1b2e;
  --text2:       #3a5070;
  --text3:       #7a96b5;
  --border:      #d0dff0;
  --font:        'Outfit', sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --shadow-sm:   0 2px 8px rgba(10,61,122,0.07);
  --shadow-md:   0 8px 32px rgba(10,61,122,0.10);
  --shadow-lg:   0 20px 60px rgba(10,61,122,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(21,101,192,0.2); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(21,101,192,0.4); }

/* ════════════ NAV ════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,248,253,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(208,223,240,0.7);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(10,61,122,0.18)); }
.nav-logo-text { font-size: 1rem; font-weight: 700; color: var(--blue-deep); letter-spacing: -0.3px; }
.nav-logo-text span { color: var(--blue-bright); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a:not(.nav-discord-btn):not(.nav-beta-btn) {
  text-decoration: none; color: var(--text2); font-size: 0.87rem;
  font-weight: 500; padding: 7px 14px; border-radius: 8px; transition: all 0.15s;
}
.nav-links a:hover:not(.nav-discord-btn):not(.nav-beta-btn) { color: var(--blue); background: var(--blue-light); }
.nav-links li:has(.nav-discord-btn), .nav-links li:has(.nav-beta-btn) { margin-left: 6px; }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 8px 18px !important; border-radius: 9px !important; font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--blue-mid) !important; transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(21,101,192,0.28) !important;
}

/* ════════════ HERO ════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 45%, rgba(30,136,229,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 5% 80%,  rgba(21,101,192,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 95% 10%, rgba(10,61,122,0.05)  0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21,101,192,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,101,192,0.035) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(21,101,192,0.07); border: 1px solid rgba(21,101,192,0.16);
  color: var(--blue); font-size: 0.72rem; font-weight: 600;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 22px;
  letter-spacing: 0.8px; text-transform: uppercase; font-family: var(--mono);
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-bright); animation: blink 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -1.8px;
  color: var(--text); margin-bottom: 22px;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1.05rem; line-height: 1.75; color: var(--text2);
  max-width: 480px; margin-bottom: 38px;
  animation: fadeUp 0.6s 0.16s ease both;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.6s 0.22s ease both; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px; font-size: 0.9rem;
  font-weight: 600; text-decoration: none; transition: all 0.18s;
  font-family: var(--font); cursor: pointer; border: none;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 18px rgba(21,101,192,0.22);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,101,192,0.32); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text2); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); transform: translateY(-2px); }
.btn-discord { background: #5865F2; color: #fff; }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88,101,242,0.3); }

/* Hero visual */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  animation: fadeIn 0.8s 0.3s ease both;
}
.hero-logo-ring { position: relative; width: 360px; height: 360px; }

.ring-outer {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(21,101,192,0.13);
  animation: spinSlow 35s linear infinite;
}
.ring-outer::before {
  content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 14px var(--blue-bright), 0 0 28px rgba(30,136,229,0.4);
}
.ring-mid {
  position: absolute; inset: 32px; border-radius: 50%;
  border: 1px dashed rgba(21,101,192,0.09);
  animation: spinSlow 22s linear infinite reverse;
}
.ring-mid::before {
  content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: rgba(21,101,192,0.4);
}
.hero-logo-center {
  position: absolute; inset: 64px; border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(21,101,192,0.08);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-logo-center img { width: 80%; height: 80%; object-fit: contain; }

.hero-stat {
  position: absolute; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 11px 17px; box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero-stat-val { font-size: 1.25rem; font-weight: 800; color: var(--blue); line-height: 1; }
.hero-stat-label { font-size: 0.68rem; color: var(--text3); margin-top: 3px; font-weight: 500; }
.hero-stat.s1 { top: 6%;  right: -12%; animation-delay: 0s; }
.hero-stat.s2 { bottom: 12%; left: -10%; animation-delay: 1.6s; }
.hero-stat.s3 { top: 44%; right: -16%; animation-delay: 0.9s; }

/* ════════════ SECTIONS ════════════ */
section { padding: 96px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-bright);
  font-family: var(--mono); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.8px; line-height: 1.1;
  color: var(--text); margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--text2); line-height: 1.7;
  max-width: 520px; margin-bottom: 52px;
}

/* ════════════ ADDONS ════════════ */
#addons { background: var(--white); }

/* ── Carousel: pagina-gebaseerd zonder overflow clipping ──
   Elke pagina is een los grid. Actieve pagina is zichtbaar,
   inactieve pagina's zijn display:none. Navigatie via fade.
   Geen overflow:hidden nodig → box-shadows altijd volledig zichtbaar. */

.addons-carousel-wrap {
  position: relative;
  /* Zijdelingse ruimte voor de pijltjes — geen clipping probleem meer */
  padding: 0 56px;
}

/* Pijltjes aan de zijkant, verticaal gecentreerd op het grid */
.carousel-controls {
  display: none; /* verborgen — pijltjes zitten nu aan de zijkant */
}

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--blue);
  z-index: 2;
}
.carousel-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 16px rgba(21,101,192,0.25); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.carousel-btn.hidden { display: none !important; }
#carousel-prev { left: 0; }
#carousel-next { right: 0; }
.carousel-page-indicator { display: none; }

/* Elke pagina = grid van max 6 kaarten (2 rijen × 3 kolommen) */
.addons-page {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: pageFadeIn 0.3s ease;
}
.addons-page.active {
  display: grid;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.18s;
}
.carousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}
.carousel-dot:hover:not(.active) { background: var(--blue-bright); }

/* Skeleton als carousel-page */
.addons-page.skeleton-page {
  pointer-events: none;
}

.addon-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
  transition: all 0.22s; position: relative;
  overflow: hidden; display: flex; flex-direction: column;

}
.addon-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright));
  opacity: 0; transition: opacity 0.22s;
}
.addon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(21,101,192,0.18); }
.addon-card:hover::before { opacity: 1; }
.addon-card.coming-soon { opacity: 0.72; }
.addon-card.coming-soon:hover { opacity: 1; }

.addon-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px; flex-shrink: 0;
}
.addon-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 600; padding: 3px 10px;
  border-radius: 999px; margin-bottom: 12px; font-family: var(--mono);
  letter-spacing: 0.5px; text-transform: uppercase; width: fit-content;
}
.tag-live { background: rgba(34,197,94,0.1);   color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.tag-beta { background: rgba(245,158,11,0.1);  color: #d97706; border: 1px solid rgba(245,158,11,0.2); }
.tag-soon { background: rgba(21,101,192,0.07); color: var(--blue); border: 1px solid rgba(21,101,192,0.15); }

.addon-name { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.3px; }
.addon-desc { font-size: 0.88rem; color: var(--text2); line-height: 1.65; flex: 1; margin-bottom: 24px; }
.addon-links { display: flex; gap: 8px; flex-wrap: wrap; }
.addon-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
  padding: 7px 14px; border-radius: 8px; transition: all 0.15s;
}
.link-primary { background: var(--blue); color: #fff; }
.link-primary:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(21,101,192,0.25); }
.link-ghost { background: transparent; border: 1px solid var(--border); color: var(--text2); }
.link-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ════════════ CHANGELOG ════════════ */
#changelog { background: var(--bg); }

.changelog-tabs {
  display: flex; gap: 4px; margin-bottom: 32px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 4px; width: fit-content;
}
.cl-tab {
  padding: 8px 20px; border-radius: 9px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; transition: all 0.15s;
  color: var(--text2); border: none; background: transparent; font-family: var(--font);
}
.cl-tab.active { background: var(--blue); color: #fff; box-shadow: 0 2px 10px rgba(21,101,192,0.25); }
.cl-tab:not(.active):hover { background: var(--blue-light); color: var(--blue); }

.changelog-list { display: none; }
.changelog-list.active { display: block; }

.cl-entry {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 32px;
  margin-bottom: 16px; transition: box-shadow 0.18s;
}
.cl-entry:hover { box-shadow: var(--shadow-md); }
.cl-entry-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.cl-version { font-size: 1rem; font-weight: 700; color: var(--text); font-family: var(--mono); }
.cl-date { font-size: 0.78rem; color: var(--text3); font-family: var(--mono); }
.cl-title { font-size: 0.82rem; font-weight: 600; color: var(--text2); flex: 1; }
.cl-items { display: flex; flex-direction: column; gap: 7px; }
.cl-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text2); line-height: 1.55; }
.cl-item-icon { flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.cl-empty {
  text-align: center; padding: 48px; color: var(--text3); font-size: 0.88rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
}

/* ════════════ CONTACT ════════════ */
#contact { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 14px; transition: all 0.18s; text-decoration: none;
}
.contact-card:hover { border-color: rgba(21,101,192,0.22); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.contact-card-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.5; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; color: var(--text);
  font-family: var(--font); transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.08); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }

/* ════════════ FOOTER ════════════ */
footer { background: var(--blue-deep); color: rgba(255,255,255,0.6); padding: 48px 40px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img { width: 30px; height: 30px; object-fit: contain; opacity: 0.9; }
.footer-logo-text { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ════════════ ANIMATIONS ════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink  { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes float  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  section { padding: 64px 20px; }
  .addons-page { grid-template-columns: 1fr; }
  .addons-carousel-outer { padding: 0 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .addons-page { grid-template-columns: 1fr 1fr; }
  .addons-carousel-outer { padding: 0 48px; }
}

/* ════════════ SKELETON LOADERS ════════════ */
.addon-card-skeleton {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.addon-card-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(208,223,240,0.4) 50%, transparent 100%);
  animation: shimmer 1.4s ease infinite;
  background-size: 200% 100%;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ════════════ ADDON KAART — EXTRA ELEMENTEN ════════════ */
.addon-img {
  width: 52px; height: 52px; border-radius: 14px;
  object-fit: cover; margin-bottom: 20px; flex-shrink: 0;
  border: 1px solid var(--border);
}

/* Beta/development extra info blok */
.addon-meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.addon-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text3);
  font-family: var(--mono);
}
.addon-meta-item svg { flex-shrink: 0; }

/* Beta aanmeld knop */
.link-beta {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: #d97706;
}
.link-beta:hover {
  background: rgba(245,158,11,0.18);
  border-color: rgba(245,158,11,0.4);
  color: #b45309;
}

/* ════════════ CHANGELOG ITEMS — badge stijlen ════════════ */
.cl-item-wrap { display: flex; flex-direction: column; }
.cl-item-row {
  display: flex; align-items: baseline;
  gap: 10px; font-size: 0.875rem;
  color: var(--text2); line-height: 1.5; text-align: left;
}
.cl-item-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.67rem; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
  flex-shrink: 0; margin-top: 2px; white-space: nowrap;
}
.badge-new    { background: #d1fae5; color: #065f46; }
.badge-fix    { background: #dbeafe; color: #1e40af; }
.badge-change { background: #fef3c7; color: #92400e; }
.badge-remove { background: #fee2e2; color: #991b1b; }
.badge-note   { background: #ede9fe; color: #5b21b6; }

.cl-item-text { flex: 1; text-align: left; }

.cl-opmerkingen {
  font-size: 0.85rem; color: var(--text2);
  background: var(--blue-xlight); border-left: 3px solid var(--blue);
  padding: 10px 14px; border-radius: 0 6px 6px 0;
  margin-bottom: 14px; line-height: 1.55;
}

.cl-latest-tag {
  background: #d1fae5; color: #059669;
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* "Bekijk alle changelogs" knop */
.cl-read-more {
  display: inline; background: none; border: none; cursor: pointer;
  color: var(--blue); font-size: 0.78rem; font-weight: 600;
  padding: 0 0 0 5px; font-family: var(--font); white-space: nowrap;
}
.cl-read-more:hover { opacity: 0.7; }
.cl-desc {
  display: block; font-size: 0.83rem; color: var(--text2); line-height: 1.6;
  background: var(--bg); border-left: 3px solid var(--border);
  padding: 8px 12px; border-radius: 0 6px 6px 0; margin-top: 6px;
}

.cl-meer-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 10px 20px;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text2);
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.18s;
  font-family: var(--font);
}
.cl-meer-btn:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-light); transform: translateX(3px);
}

/* ════════════ TERUG KNOP ════════════ */
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text2); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: all 0.18s;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.back-btn:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateX(-2px);
}