:root {
  --bg: #151532;
  --surface: #1d1d43;
  --surface-2: #292858;
  --line: #57527d;
  --purple: #6b6594;
  --pink: #c8a66a;
  --gold: #b8955c;
  --text: #f5f2ff;
  --muted: #b9b6cf;
  --ink: #eeeaf7;
  --paper: #181838;
  --max: 1320px;
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.dspa26-container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.dspa26-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 21, 50, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}
.dspa26-header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.dspa26-logo {
  flex: 0 0 auto;
}
.dspa26-logo img {
  width: 154px;
  max-height: 64px;
  object-fit: contain;
}
.dspa26-site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
}
.dspa26-site-nav a {
  padding: 9px 9px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.dspa26-site-nav a:hover {
  background: rgba(184, 149, 92, 0.18);
  color: #e2c38b;
}
.dspa26-header-actions {
  display: flex;
  gap: 9px;
}
.dspa26-btn,
.dspa26-header-actions a,
.dspa26-inline-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #3d982f, #236d20);
  color: #fff;
  border: 1px solid #c6a96c;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.dspa26-header-actions .dspa26-btn-dark {
  background: linear-gradient(180deg, #b79761, #82643b);
  color: #fff;
  border: 1px solid #d4b87b;
}
.dspa26-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}
.dspa26-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  border-radius: 5px;
}
.dspa26-hero {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 4px solid var(--gold);
}
.dspa26-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: 70px 0;
}
.dspa26-hero-inner > div {
  max-width: 760px;
}
.dspa26-hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 11px;
  border: 1px solid rgba(202, 169, 105, 0.75);
  border-radius: 7px;
  background: rgba(29, 29, 67, 0.78);
  color: #e5c78d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.dspa26-hero h1 {
  max-width: 800px;
  margin: 0 0 15px;
  font-family: Georgia, serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.dspa26-hero p {
  max-width: 700px;
  margin: 0 0 25px;
  color: #dedbec;
  font-size: 18px;
}
.dspa26-section {
  padding: 54px 0 70px;
}
.dspa26-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}
.dspa26-content {
  min-width: 0;
  padding: 35px 42px;
  border: 1px solid #4d4975;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}
.dspa26-article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: -8px 0 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid #45416c;
  color: var(--muted);
  font-size: 13px;
}
.dspa26-content h2,
.dspa26-content h3 {
  scroll-margin-top: 105px;
  font-family: Georgia, serif;
  color: var(--text);
  line-height: 1.18;
}
.dspa26-content h2 {
  margin: 48px 0 17px;
  padding-left: 15px;
  border-left: 5px solid var(--gold);
  font-size: 31px;
}
.dspa26-content h3 {
  margin: 32px 0 12px;
  font-size: 23px;
}
.dspa26-content p {
  margin: 0 0 20px;
}
.dspa26-content a {
  color: #d4b375;
  font-weight: 700;
}
.dspa26-content ul,
.dspa26-content ol {
  margin: 0 0 24px;
  padding-left: 25px;
}
.dspa26-content li {
  margin: 7px 0;
}
.dspa26-content table {
  width: 100%;
  margin: 24px 0 31px;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.dspa26-content tbody {
  display: table;
  width: 100%;
}
.dspa26-content th {
  background: #82643b;
  color: #fff;
  text-align: left;
}
.dspa26-content th,
.dspa26-content td {
  padding: 12px 14px;
  border: 1px solid #4e4a73;
  vertical-align: top;
}
.dspa26-content tr:nth-child(even) td {
  background: #23234e;
}
.dspa26-content img {
  width: 100%;
  margin: 24px auto 31px;
  border-radius: 10px;
  border: 1px solid #5b557d;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.dspa26-inline-cta {
  margin: 24px 0 !important;
}
.dspa26-inline-cta a {
  color: #fff !important;
}
.dspa26-sidebar {
  position: sticky;
  top: 108px;
}
.dspa26-side-box {
  padding: 24px;
  border: 1px solid #4d4975;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.dspa26-side-box > strong {
  display: block;
  margin-bottom: 15px;
  font-family: Georgia, serif;
  font-size: 22px;
}
.dspa26-toc-nav {
  display: flex;
  flex-direction: column;
  max-height: 57vh;
  margin-bottom: 20px;
  overflow: auto;
}
.dspa26-toc-nav a {
  padding: 9px 0;
  border-bottom: 1px solid #45416c;
  color: #cbc7df;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
}
.dspa26-toc-nav .dspa26-toc-sub {
  padding-left: 15px;
  font-size: 12px;
}
.dspa26-side-box .dspa26-btn {
  width: 100%;
}
.dspa26-author-box {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  margin-top: 50px;
  padding: 24px;
  border-radius: 11px;
  background: #f4e9f6;
  border: 1px solid #e0cde4;
}
.dspa26-author-box img {
  width: 88px;
  height: 88px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}
.dspa26-author-box strong {
  font-family: Georgia, serif;
  font-size: 22px;
}
.dspa26-author-box p {
  margin: 4px 0;
  color: #705876;
  font-size: 14px;
}
.dspa26-site-footer {
  background: var(--bg);
  color: var(--muted);
  border-top: 4px solid var(--gold);
}
.dspa26-footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.7fr;
  gap: 40px;
  padding: 44px 0 30px;
  align-items: start;
}
.dspa26-footer-main > div > img {
  width: 154px;
  max-height: 62px;
  object-fit: contain;
}
.dspa26-footer-main p {
  margin: 15px 0 0;
}
.dspa26-footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dspa26-footer-main nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}
.dspa26-footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dspa26-language-switcher {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 9px !important;
  margin-top: 18px;
}
.dspa26-language-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 12px;
  white-space: nowrap;
}
.dspa26-language-switcher a span:first-child {
  font-size: 21px;
  line-height: 1;
}
.dspa26-language-switcher a[aria-current="page"] {
  border-color: var(--gold);
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--gold);
}
.dspa26-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 20px;
  border-top: 1px solid var(--line);
}
.dspa26-trust-row img {
  max-width: 105px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}
.dspa26-footer-bottom {
  border-top: 1px solid var(--line);
}
.dspa26-footer-bottom > div {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12px;
}
@media (max-width: 1120px) {
  .dspa26-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .dspa26-site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: #181838;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .dspa26-site-nav.dspa26-is-open {
    display: flex;
  }
  .dspa26-site-nav a {
    text-align: center;
  }
  .dspa26-header-actions {
    display: none;
  }
  .dspa26-content-layout {
    grid-template-columns: 1fr;
  }
  .dspa26-sidebar {
    position: static;
  }
  .dspa26-toc-nav {
    max-height: none;
  }
}
@media (max-width: 680px) {
  .dspa26-container,
  .dspa26-header-inner,
  .dspa26-hero-inner {
    width: min(100% - 24px, var(--max));
  }
  .dspa26-logo img {
    width: 135px;
  }
  .dspa26-hero {
    min-height: 390px;
  }
  .dspa26-hero-inner {
    padding: 52px 0;
  }
  .dspa26-hero h1 {
    font-size: 42px;
  }
  .dspa26-hero p {
    font-size: 16px;
  }
  .dspa26-section {
    padding: 28px 0 48px;
  }
  .dspa26-content {
    padding: 24px 18px;
  }
  .dspa26-content h2 {
    font-size: 27px;
  }
  .dspa26-content h3 {
    font-size: 21px;
  }
  .dspa26-content th,
  .dspa26-content td {
    min-width: 145px;
    padding: 10px;
  }
  .dspa26-article-meta {
    flex-direction: column;
  }
  .dspa26-author-box {
    grid-template-columns: 1fr;
  }
  .dspa26-footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .dspa26-footer-bottom > div {
    flex-direction: column;
    gap: 5px;
  }
}
