html { background: var(--bg); }
/* ============================================================
   KI-SOFT.at  –  Main Stylesheet
   Design: Rot (#ed0415) / Weiß / Schwarztöne / Grau
   ============================================================ */

:root {
  --bg:      #e7e9ec;
  --panel:   #ffffff;
  --panel2:  #f4f5f7;
  --text:    #15171b;
  --text2:   #545961;
  --muted:   #888f97;
  --line:    #e1e4e8;
  --red:     #ed0415;
  --ring:    #15171b;
  --shadow:  0 1px 2px rgba(16,18,22,.05), 0 10px 30px rgba(16,18,22,.08);
}

[data-theme="dark"] {
  --bg:      #0f1115;
  --panel:   #171a1f;
  --panel2:  #1e222a;
  --text:    #eceef1;
  --text2:   #a6acb4;
  --muted:   #717880;
  --line:    #272c34;
  --ring:    #ffffff;
  --shadow:  0 1px 2px rgba(0,0,0,.5), 0 12px 34px rgba(0,0,0,.45);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  background: var(--bg);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--text);
}
::selection { background: var(--red); color: #fff; }
a { color: inherit; }
input, textarea, select, button { font-family: inherit; }
textarea { resize: vertical; }

/* ---- TOPBAR ---- */
.ks-topbar {
  position: fixed; top: 0; left: 0; right: 0; height: 60px; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  background: var(--panel); border-bottom: 1px solid var(--line);
}
.ks-topbar-left  { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ks-topbar-right { display: flex; align-items: center; gap: 9px; }
.ks-brand {
  font-family: 'Courier New', monospace;
  font-size: 12px; letter-spacing: .16em; color: var(--red); font-weight: 600;
}
.ks-div { width: 1px; height: 16px; background: var(--line); }
.ks-active-title {
  font-family: 'Courier New', monospace;
  font-size: 11.5px; color: var(--text2); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 240px;
}

/* Font-size buttons */
.ks-font-group {
  display: flex; align-items: center;
  border: 1px solid var(--line); border-radius: 9px;
  overflow: hidden; background: var(--panel2);
}
.ks-font-btn {
  border: none; background: transparent; color: var(--text2);
  padding: 7px 0; width: 32px; line-height: 1; font-weight: 700; cursor: pointer;
  transition: background .15s, color .15s;
}
.ks-font-btn.active { background: var(--red); color: #fff; }
.ks-icon-btn {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px;
  background: var(--panel2); color: var(--text);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
  cursor: pointer;
}
.ks-pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 13px;
  border: 1px solid var(--line); border-radius: 9px;
  background: var(--panel2); color: var(--text);
  font-size: 12.5px; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background .15s;
}
.ks-pill-btn:hover { background: var(--line); }

/* Flags */








/* ---- SIDEBAR ---- */
.ks-sidebar {
  position: fixed; top: 60px; left: 0; width: 340px; bottom: 0; z-index: 30;
  background: var(--panel); border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 26px 26px 18px; overflow: auto;
}
.ks-logo       { height: 42px; width: auto; align-self: flex-start; }
.ks-sidebar-slogan {
  margin-top: 11px;
  font-family: 'Courier New', monospace;
  font-size: 12px; letter-spacing: .02em; color: var(--text2);
}
.ks-sidebar-hero {
  margin-top: 20px;
  background: var(--panel2); border: 1px solid var(--line); border-radius: 14px;
  padding: 17px;
}
.ks-hero-title { font-size: 16.5px; line-height: 1.34; font-weight: 600; color: var(--text); }
.ks-hero-tag   { margin-top: 11px; font-family: 'Courier New', monospace; font-size: 10.5px; letter-spacing: .02em; color: var(--red); }
.ks-features   { margin-top: 15px; display: flex; flex-direction: column; gap: 7px; }
.ks-feature-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--panel2); border: 1px solid var(--line);
  border-radius: 10px; padding: 9px 12px;
}
.ks-feature-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 8.5px; flex: 0 0 auto;
}
.ks-feature-label { font-size: 13px; font-weight: 500; color: var(--text); }
.ks-sidebar-spacer { flex: 1; min-height: 14px; }
.ks-cta-btn {
  border: none; background: var(--red); color: #fff;
  border-radius: 11px; padding: 13px; font-weight: 600; font-size: 14px;
  cursor: pointer; width: 100%; letter-spacing: .01em;
  transition: opacity .15s;
}
.ks-cta-btn:hover { opacity: .88; }

/* ---- TIMELINE ---- */
.ks-timeline {
  position: fixed; top: 60px; left: 340px; width: 66px; bottom: 0; z-index: 30;
  background: var(--bg);
}
.ks-timeline-line {
  position: absolute; left: 33px; top: 34px; bottom: 34px;
  width: 2px; background: var(--red); transform: translateX(-1px); opacity: .9;
}
.ks-timeline-dots {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 34px 0;
}
.ks-dot-btn {
  border: none; background: transparent; padding: 0; height: 20px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.ks-dot {
  border-radius: 50%; background: var(--red); transition: all .18s;
  width: 11px; height: 11px; opacity: .5;
}
.ks-dot.active {
  width: 17px; height: 17px; opacity: 1;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--ring);
}

/* ---- MAIN ---- */
.ks-main {
  margin-left: 406px; min-height: 100vh; padding-top: 60px;
  background: var(--bg);
}
.ks-main-inner { max-width: 760px; margin: 0 auto; padding: 8px 48px 0; font-size: 17px; }
.ks-main-header { padding: 32px 0 6px; border-bottom: 1px solid var(--line); }
.ks-main-tagline { font-family: 'Courier New', monospace; font-size: .72em; letter-spacing: .1em; color: var(--red); }
.ks-main-title  { margin: 9px 0 0; font-size: 2.15em; line-height: 1.08; font-weight: 700; letter-spacing: -.02em; color: var(--text); }

/* ---- SECTIONS ---- */
.ks-section { padding: 46px 0 8px; scroll-margin-top: 82px; border-bottom: 1px solid var(--line); }
.ks-sec-num { font-family: 'Courier New', monospace; font-size: .72em; letter-spacing: .12em; color: var(--red); margin-bottom: 9px; }
.ks-sec-h2  { margin: 0 0 16px; font-size: 1.62em; line-height: 1.16; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.ks-sec-body p  { margin: 0 0 14px; font-size: 1em; line-height: 1.62; color: var(--text2); }
.ks-sec-body ul { list-style: none; margin: 2px 0 8px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.ks-sec-body li {
  position: relative; padding-left: 20px;
  font-size: 1em; line-height: 1.56; color: var(--text2);
}
.ks-sec-body li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--red);
}
.ks-sec-body strong { color: var(--text); font-weight: 600; }
.ks-sec-body a { color: var(--red); font-weight: 600; border-bottom: 1px solid var(--red); text-decoration: none; }

/* Tag cloud (encoded as pipe-sep in body) */
.ks-sec-body .tag-cloud { display: none; } /* rendered by JS */
.ks-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 8px; }
.ks-tag {
  font-family: 'Courier New', monospace; font-size: .78em;
  color: var(--text); background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; padding: 7px 11px;
}

/* ---- FORM ---- */
.ks-form-section { padding: 46px 0 44px; scroll-margin-top: 82px; }
.ks-form-intro  { margin: 0 0 22px; font-size: .96em; line-height: 1.55; color: var(--text2); max-width: 60ch; }
.ks-form-card   { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.ks-label       { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.ks-input {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--panel2); color: var(--text); font-size: 14px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.ks-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 16%, transparent); }
select.ks-input { cursor: pointer; }
.ks-err  { margin-top: 5px; font-size: 12px; color: var(--red); display: none; }
.ks-comp-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.ks-comp-label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 9px; padding: 8px 12px;
  cursor: pointer; background: var(--panel2); font-size: 13px; color: var(--text);
}
.ks-comp-cb { accent-color: var(--red); width: 15px; height: 15px; cursor: pointer; }
.ks-submit-btn {
  border: none; background: var(--red); color: #fff;
  border-radius: 11px; padding: 13px 22px; font-weight: 600; font-size: 14px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: opacity .15s;
}
.ks-submit-btn:hover { opacity: .88; }
.ks-muted { font-size: 12px; color: var(--muted); }
.ks-success-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px; box-shadow: var(--shadow);
}
.ks-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 20px; flex: 0 0 auto;
}
.ks-success-msg { font-weight: 600; font-size: 15px; color: var(--text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .ks-sidebar   { display: none; }
  .ks-timeline  { display: none; }
  .ks-main      { margin-left: 0; }
  .ks-main-inner { padding: 8px 20px 0; }
  .ks-detail-grid { grid-template-columns: 1fr; }
}

/* ---- TERMS PAGE ---- */
.ks-terms-wrap {
  min-height: 100vh;
  background: var(--bg);
  padding: 80px 24px 60px;
}
.ks-terms-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 56px;
  box-shadow: var(--shadow);
}
.ks-terms-title {
  font-size: 2em;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin: 8px 0 4px;
}
.ks-terms-meta {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.ks-terms-section {
  margin-bottom: 28px;
}
.ks-terms-section h2 {
  font-size: 1em;
  font-weight: 700;
  color: var(--red);
  font-family: 'Courier New', monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.ks-terms-section p {
  font-size: .95em;
  line-height: 1.7;
  color: var(--text2);
  margin: 0 0 8px;
}
.ks-terms-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ks-terms-section li {
  position: relative;
  padding-left: 18px;
  font-size: .95em;
  line-height: 1.6;
  color: var(--text2);
}
.ks-terms-section li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--red);
}
.ks-terms-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .ks-terms-card { padding: 28px 20px; }
}


/* ---- FOOTER LINKS ---- */
.ks-footer-link {
  font-size: 12px; color: var(--text2); text-decoration: none; white-space: nowrap;
  transition: color .15s;
}
.ks-footer-link:hover { color: var(--red); }
.ks-footer-sep { color: var(--muted); font-size: 12px; }

/* ---- TERMS PAGE ---- */
.ks-terms-wrap { min-height:100vh; background:var(--bg); padding:80px 24px 60px; }
.ks-terms-card {
  max-width:780px; margin:0 auto;
  background:var(--panel); border:1px solid var(--line);
  border-radius:18px; padding:48px 56px; box-shadow:var(--shadow);
}
.ks-terms-title { font-size:2em; font-weight:700; color:var(--text); letter-spacing:-.02em; margin:8px 0 4px; }
.ks-terms-meta {
  font-family:'Courier New',monospace; font-size:12px; color:var(--muted);
  margin-bottom:36px; padding-bottom:24px; border-bottom:1px solid var(--line);
}
.ks-terms-section { margin-bottom:28px; }
.ks-terms-section h2 {
  font-size:.9em; font-weight:700; color:var(--red);
  font-family:'Courier New',monospace; letter-spacing:.04em;
  text-transform:uppercase; margin:0 0 10px;
}
.ks-terms-section p { font-size:.95em; line-height:1.7; color:var(--text2); margin:0; }
.ks-terms-footer {
  margin-top:40px; padding-top:24px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
@media(max-width:640px){ .ks-terms-card{ padding:28px 20px; } }

/* ---- COOKIE POPUP ---- */
.ks-cookie-overlay {
  pointer-events: none;
  position:fixed; inset:0; z-index: 8000;
  background:rgba(0,0,0,.55); backdrop-filter:blur(3px);
}
.ks-cookie-popup {
  position:fixed; z-index: 8100;
  top:50%; left:50%; transform:translate(-50%,-50%);
  width:min(480px, calc(100vw - 40px));
  background:var(--panel); border:1px solid var(--line);
  border-radius:20px; padding:36px 32px 28px;
  box-shadow:0 20px 60px rgba(0,0,0,.3);
  text-align:center;
  animation:ks-popup-in .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes ks-popup-in {
  from { opacity:0; transform:translate(-50%,-50%) scale(.88); }
  to   { opacity:1; transform:translate(-50%,-50%) scale(1); }
}
.ks-cookie-icon {
  font-size:36px; color:var(--red); margin-bottom:14px;
}
.ks-cookie-title {
  font-size:1.2em; font-weight:700; color:var(--text); margin:0 0 12px;
}
.ks-cookie-text {
  font-size:13.5px; line-height:1.6; color:var(--text2); margin:0 0 24px;
}
.ks-cookie-text a { color:var(--red); text-decoration:underline; }
.ks-cookie-actions { display:flex; gap:12px; justify-content:center; }
.ks-cookie-btn {
  border:none; border-radius:10px; padding:11px 26px;
  font-size:14px; font-weight:600; cursor:pointer; transition:opacity .15s;
  display:inline-flex; align-items:center; gap:7px;
}
.ks-cookie-accept  { background:var(--red); color:#fff; }
.ks-cookie-decline { background:var(--panel2); color:var(--text2); border:1px solid var(--line); }
.ks-cookie-btn:hover { opacity:.85; }

/* ---- Flaggen ---- */
.ks-flag-at {
  display: inline-flex; flex-direction: column;
  width: 21px; height: 14px; border-radius: 2px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.14); flex-shrink: 0;
}
.ks-flag-at span:nth-child(1) { flex: 1; background: #ef3340; }
.ks-flag-at span:nth-child(2) { flex: 1; background: #fff; }
.ks-flag-at span:nth-child(3) { flex: 1; background: #ef3340; }

/* Union Jack – SVG inline als background */
.ks-flag-en {
  display: inline-block;
  width: 21px; height: 14px; border-radius: 2px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.14); flex-shrink: 0;
  background-color: #012169;
  background-image:
    /* Diagonals white */
    linear-gradient(to bottom right, transparent 42%, #fff 42%, #fff 58%, transparent 58%),
    linear-gradient(to bottom left,  transparent 42%, #fff 42%, #fff 58%, transparent 58%),
    /* Diagonals red */
    linear-gradient(to bottom right, transparent 45%, #c8102e 45%, #c8102e 55%, transparent 55%),
    linear-gradient(to bottom left,  transparent 45%, #c8102e 45%, #c8102e 55%, transparent 55%),
    /* Cross white */
    linear-gradient(#fff 40%, transparent 40%, transparent 60%, #fff 60%),
    linear-gradient(90deg, #fff 35%, transparent 35%, transparent 65%, #fff 65%),
    /* Cross red */
    linear-gradient(#c8102e 30%, transparent 30%, transparent 70%, #c8102e 70%),
    linear-gradient(90deg, #c8102e 25%, transparent 25%, transparent 75%, #c8102e 75%);
}

/* ---- scanpage.net Footer-Badge ---- */
.ks-scanpage-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  transition: opacity .15s;
}
.ks-scanpage-link:hover { opacity: .8; }
.ks-scanpage-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
  font-family: 'Courier New', monospace;
}

/* ---- ADMIN ---- */
.ks-admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: var(--bg);
}
.ks-admin-login-card {
  width: 350px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px; box-shadow: var(--shadow);
}
.ks-mono-label {
  font-family: 'Courier New', monospace;
  font-size: 11px; letter-spacing: .16em; color: var(--red); font-weight: 600;
}
.ks-admin-body {
  max-width: 1100px; margin: 76px auto 48px; padding: 0 24px;
  background: var(--bg);
}

/* Tabelle – vollständig theme-aware */
.ks-admin-table {
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  color: var(--text);
  border: 1px solid var(--line);
  width: 100%;
}
.ks-admin-table thead tr {
  background: var(--panel2);
}
.ks-admin-table th {
  background: var(--panel2);
  color: var(--text2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--line);
  font-weight: 600;
  padding: 10px 14px;
}
.ks-admin-table td {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  color: var(--text);
  padding: 10px 14px;
}
.ks-admin-table tbody tr:last-child td {
  border-bottom: none;
}
.ks-admin-table tbody tr:hover td {
  background: var(--panel2);
}

.ks-mono { font-family: 'Courier New', monospace; font-size: 12px; }
.ks-detail-btn {
  background: var(--panel2); border: 1px solid var(--line);
  color: var(--red); border-radius: 8px; padding: 5px 10px;
}
.ks-detail-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.ks-empty-state { text-align: center; padding: 80px 24px; color: var(--muted); }

.ks-detail-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px; box-shadow: var(--shadow);
}
.ks-detail-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px; border-bottom: 1px solid var(--line);
  padding-bottom: 16px; margin-bottom: 16px;
}
.ks-detail-name    { font-size: 19px; font-weight: 700; color: var(--text); }
.ks-detail-company { margin-top: 3px; font-size: 13px; color: var(--text2); }
.ks-detail-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.ks-field-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin-bottom: 3px;
}
.ks-field-val { font-size: 13.5px; color: var(--text); }
.ks-note-section { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }

/* ---- FOOTER ---- */
.ks-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 16px 48px 20px;
}
/* Zeile 1: zentriert */
.ks-footer-row1 {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text2);
  font-size: 12.5px;
}
/* Zeile 2: scanpage zentriert */
.ks-footer-row2 {
  max-width: 760px;
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.ks-footer-link {
  font-size: 12px; color: var(--text2); text-decoration: none; white-space: nowrap;
  transition: color .15s;
}
.ks-footer-link:hover { color: var(--red); }
.ks-footer-sep { color: var(--muted); font-size: 12px; }
.ks-footer-spacer { flex: 1; min-width: 16px; }

/* scanpage Badge */
.ks-scanpage-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity .15s;
}
.ks-scanpage-link:hover { opacity: .8; }
.ks-scanpage-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
  font-family: 'Courier New', monospace;
}

/* ---- Cookie Popup ---- */
.ks-cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  pointer-events: none;       /* Klicks gehen durch zum Popup */
}
.ks-cookie-popup {
  position: fixed;
  z-index: 9100;              /* Liegt über dem Overlay */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 40px));
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  text-align: center;
  pointer-events: all;        /* Buttons im Popup klickbar */
}
.ks-cookie-icon  { font-size: 36px; color: var(--red); margin-bottom: 14px; }
.ks-cookie-title { font-size: 1.2em; font-weight: 700; color: var(--text); margin: 0 0 12px; }
.ks-cookie-text  { font-size: 13.5px; line-height: 1.6; color: var(--text2); margin: 0 0 24px; }
.ks-cookie-text a { color: var(--red); text-decoration: underline; }
.ks-cookie-actions { display: flex; gap: 12px; justify-content: center; }
.ks-cookie-btn {
  border: none; border-radius: 10px; padding: 11px 26px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  pointer-events: all;
}
.ks-cookie-accept  { background: var(--red); color: #fff; }
.ks-cookie-decline { background: var(--panel2); color: var(--text2); border: 1px solid var(--line); }
.ks-cookie-btn:hover { opacity: .85; }
