/* =========================
   COOKIE POLICY (EU) – Premium Dark + Accent
   Works well with Complianz/Compliantz content
   ========================= */

/* General page container */
body .cmplz-document,
body .cmplz-document *{
  box-sizing: border-box;
}

/* Main content wrapper - make it look like a premium "paper" on dark background */
body .cmplz-document{
  max-width: var(--max-width, 1100px);
  margin: 34px auto 70px;
  padding: 28px 24px;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(900px 360px at 20% 0%, rgba(247,147,30,.10), transparent 60%),
    rgba(255,255,255,.03);

  box-shadow: 0 24px 90px rgba(0,0,0,.45);
}

/* Typography */
body .cmplz-document h1,
body .cmplz-document h2,
body .cmplz-document h3{
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
}

body .cmplz-document h1{
  font-size: 38px;
  line-height: 1.08;
  margin: 0 0 14px;
}

body .cmplz-document h2{
  font-size: 22px;
  margin: 26px 0 10px;
}

body .cmplz-document h3{
  font-size: 18px;
  margin: 18px 0 8px;
}

body .cmplz-document p,
body .cmplz-document li{
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  font-size: 15.5px;
}

body .cmplz-document a{
  color: var(--tbt-accent);
  text-decoration: none;
  font-weight: 900;
}

body .cmplz-document a:hover{
  opacity: .85;
  text-decoration: underline;
}

/* Lists */
body .cmplz-document ul,
body .cmplz-document ol{
  padding-left: 20px;
}

body .cmplz-document li{
  margin: 6px 0;
}

/* Divider lines */
body .cmplz-document hr{
  border: none;
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 22px 0;
}

/* Tables (Complianz uses tables for cookies) */
body .cmplz-document table{
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

body .cmplz-document table th{
  text-align: left;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 12px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

body .cmplz-document table td{
  color: rgba(255,255,255,.76);
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.55;
}

body .cmplz-document table tr:hover td{
  background: rgba(255,255,255,.03);
}

/* Highlight boxes / notices */
body .cmplz-document blockquote,
body .cmplz-document .cmplz-message,
body .cmplz-document .cmplz-panel{
  border-left: 4px solid rgba(247,147,30,.85);
  background: rgba(247,147,30,.10);
  border-radius: 16px;
  padding: 14px 14px;
  margin: 14px 0;
  color: rgba(255,255,255,.85);
}

/* Buttons inside the document (if any) */
body .cmplz-document button,
body .cmplz-document .button,
body .cmplz-document input[type="submit"]{
  background: var(--tbt-accent);
  color: var(--tbt-dark);
  font-weight: 900;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s ease;
}

body .cmplz-document button:hover,
body .cmplz-document .button:hover,
body .cmplz-document input[type="submit"]:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* Smooth anchor links (TOC / internal links) */
html{
  scroll-behavior: smooth;
}

/* Mobile */
@media (max-width: 680px){
  body .cmplz-document{
    margin: 18px auto 44px;
    padding: 18px 16px;
    border-radius: 18px;
  }
  body .cmplz-document h1{
    font-size: 28px;
  }
  body .cmplz-document p,
  body .cmplz-document li{
    font-size: 15px;
  }
  body .cmplz-document table th,
  body .cmplz-document table td{
    padding: 10px 10px;
  }
}