
:root{
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --accent: #2563eb;
  --maxw: 880px;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(2,6,23,.06), 0 2px 8px rgba(2,6,23,.06);
  /* Brand colors */
  --brand-blue: #4b82b7;
  --brand-sand: #dfa168;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  /* Brand gradient background */
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-sand) 100%);
  background-attachment: fixed;
  color:var(--text)
}

body{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.7;
  font-size: 17px;
}

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 24px);
}

.site-header{
  background: linear-gradient(180deg, rgba(248,250,252,0.85), rgba(255,255,255,0.85));
  border-bottom: 1px solid rgba(229,231,235,0.7);
  backdrop-filter: blur(6px);
}

.site-title{
  font-family: Merriweather, Georgia, ui-serif, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 8px 0 4px;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 40px);
}

.site-subtitle{
  color: var(--muted);
  margin: 0 0 8px;
}

.section{
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(234,238,243,0.9);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 28px);
  margin: clamp(12px, 2vw, 20px) 0;
  box-shadow: var(--shadow);
}

.section h2{
  font-family: Merriweather, Georgia, ui-serif, "Times New Roman", serif;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--brand-blue);
}

p{margin: 0 0 12px}

.list{
  margin: 8px 0 8px 0;
  padding-left: 1.1em;
}
.list li{margin: 6px 0}
.list li[data-level="1"]{margin-left: 1em; list-style-type: circle;}
.list li[data-level="2"]{margin-left: 2em; list-style-type: square;}



.site-footer{
  border-top: 1px solid rgba(229,231,235,0.7);
  background: rgba(250,250,250,0.85);
  color: var(--muted);
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.side-bar-title {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

#title-left {
    font-size: 50px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
  color: var(--brand-sand);
  text-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 14px rgba(0,0,0,0.06);
    display: inline-block;
}

#title-right {
    font-size: 50px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    color: var(--brand-blue);
    text-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 14px rgba(0,0,0,0.06);
    display: inline-block;
}

/* Links and accents aligned with brand */
a{
  color: var(--brand-blue);
  /* Fallback then modern color-mix */
  text-decoration-color: rgba(75,130,183,0.45);
  text-decoration-color: color-mix(in srgb, var(--brand-blue) 50%, transparent);
}
a:hover{
  color: var(--brand-sand);
}

/* List markers with subtle brand tint */
.list li::marker{ color: var(--brand-blue); /* fallback */ }
.list li::marker{ color: color-mix(in srgb, var(--brand-blue) 60%, var(--brand-sand) 40%); }
.list li[data-level="1"]::marker{ color: var(--brand-blue); }
.list li[data-level="2"]::marker{ color: var(--brand-sand); }

