:root {
  --black: #03040a;
  --navy: #00072d;
  --indigo: #24224c;
  --panel: #11162b;
  --panel2: #16213e;
  --gold: #edbb27;
  --gold2: #ffd700;
  --cyan: #22c9ff;
  --blue: #0b3d91;
  --text: #fff;
  --muted: #b8c1d8;
  --line: rgba(34, 201, 255, 0.24);
  --max: 1320px;
  --radius: 15px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0;
  color: var(--text);
  font-family: Quicksand, Arial, sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at 3% 28%, rgba(0, 191, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 96% 72%, rgba(0, 191, 255, 0.13), transparent 24rem), #05060b;
  background-attachment: fixed;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.acpk26-container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.acpk26-agebar {
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid rgba(237, 187, 39, 0.18);
  background: #000;
  color: #d8def0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.acpk26-agebar span:first-child {
  color: var(--gold2);
}
.acpk26-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--gold);
  background: rgba(30, 31, 45, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}
.acpk26-header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.acpk26-logo {
  flex: 0 0 auto;
}
.acpk26-logo img {
  width: 222px;
  max-height: 58px;
  object-fit: contain;
}
.acpk26-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.acpk26-nav > a,
.acpk26-dropdown > button {
  position: relative;
  display: block;
  padding: 12px 10px;
  border: 0;
  background: none;
  color: #fff;
  text-decoration: none;
  font:
    800 12px/1.2 Quicksand,
    Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  cursor: pointer;
}
.acpk26-nav > a:after,
.acpk26-dropdown > button:after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: 0.2s;
}
.acpk26-nav > a:hover,
.acpk26-dropdown > button:hover {
  color: var(--gold2);
}
.acpk26-nav > a:hover:after,
.acpk26-dropdown > button:hover:after {
  transform: scaleX(1);
}
.acpk26-dropdown {
  position: relative;
}
.acpk26-dropdown > div {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 205px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #15172a;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.65);
  transform: translateX(-50%);
}
.acpk26-dropdown:hover > div,
.acpk26-dropdown:focus-within > div {
  display: flex;
  flex-direction: column;
}
.acpk26-dropdown > div a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #eef5ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.acpk26-dropdown > div a:hover {
  background: #24294a;
  color: var(--gold2);
}
.acpk26-actions {
  display: flex;
  gap: 9px;
}
.acpk26-cta,
.acpk26-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 11px 21px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition:
    transform 0.2s,
    filter 0.2s,
    box-shadow 0.2s;
}
.acpk26-cta {
  border: 1px solid #ffe675;
  background: linear-gradient(180deg, #ffe05a, var(--gold));
  color: #17131f;
  box-shadow: 0 7px 20px rgba(237, 187, 39, 0.25);
}
.acpk26-login {
  border: 1px solid #6adfff;
  background: linear-gradient(180deg, #36d1ff, #159bd0);
  color: #001321;
  box-shadow: 0 7px 20px rgba(34, 201, 255, 0.2);
}
.acpk26-cta:hover,
.acpk26-login:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.acpk26-menu {
  display: none;
  width: 44px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background: #15172a;
}
.acpk26-menu span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold2);
}
.acpk26-hero {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 430px;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(34, 201, 255, 0.35);
  border-bottom: 3px solid var(--gold);
  border-radius: 18px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 14, 0.98) 5%, rgba(5, 9, 25, 0.84) 47%, rgba(0, 7, 45, 0.18)), var(--hero);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(34, 201, 255, 0.07);
}
.acpk26-hero:after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.35);
}
.acpk26-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 66px 55px;
}
.acpk26-hero-inner > div {
  max-width: 715px;
}
.acpk26-kicker {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 6px 13px;
  border: 1px solid rgba(34, 201, 255, 0.55);
  border-radius: 999px;
  background: rgba(34, 201, 255, 0.1);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.acpk26-hero h1 {
  margin: 0 0 15px;
  color: #fff;
  font-family: Quicksand, Arial, sans-serif;
  font-size: clamp(43px, 5.4vw, 70px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: none;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.65);
}
.acpk26-hero h1:after {
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 18px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--gold2), var(--cyan));
  content: "";
}
.acpk26-hero p {
  max-width: 690px;
  margin: 0 0 25px;
  color: #e6ecf8;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.7);
}
.acpk26-hero-updated {
  margin: -12px 0 24px;
  color: #aeb9ce;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.acpk26-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.acpk26-hero-actions span {
  display: none;
}
.acpk26-content-section {
  padding: 42px 0 76px;
}
.acpk26-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  gap: 28px;
  align-items: start;
}
.acpk26-article {
  min-width: 0;
  padding: 39px 43px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 33, 62, 0.96), rgba(12, 16, 35, 0.98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.acpk26-article > p:first-child {
  padding: 21px 23px;
  border: 1px solid rgba(237, 187, 39, 0.24);
  border-radius: 11px;
  background: rgba(237, 187, 39, 0.055);
  font-size: 17px;
}
.acpk26-article h2,
.acpk26-article h3 {
  scroll-margin-top: 112px;
  line-height: 1.22;
}
.acpk26-article h2 {
  position: relative;
  margin: 50px 0 18px;
  padding: 13px 17px 13px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 0 9px 9px 0;
  background: linear-gradient(90deg, rgba(237, 187, 39, 0.12), transparent);
  color: #fff;
  font-family: Quicksand, Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
}
.acpk26-article h3 {
  margin: 32px 0 12px;
  color: var(--cyan);
  font-size: 21px;
  font-weight: 900;
}
.acpk26-article p {
  margin: 0 0 20px;
  color: #e2e7f2;
}
.acpk26-article a {
  color: var(--cyan);
  font-weight: 800;
}
.acpk26-article ul,
.acpk26-article ol {
  margin: 0 0 25px;
  padding: 19px 22px 19px 45px;
  border: 1px solid rgba(34, 201, 255, 0.16);
  border-radius: 10px;
  background: rgba(0, 7, 45, 0.32);
}
.acpk26-article li {
  margin: 8px 0;
  color: #e7ebf5;
}
.acpk26-article li::marker {
  color: var(--gold);
}
.acpk26-article table {
  display: block;
  width: 100%;
  margin: 26px 0 34px;
  border: 1px solid rgba(34, 201, 255, 0.24);
  border-radius: 11px;
  border-collapse: separate;
  border-spacing: 0;
  overflow-x: auto;
  background: #0c1125;
}
.acpk26-article tbody {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.acpk26-article th {
  background: linear-gradient(180deg, #2d2c59, var(--indigo));
  color: var(--gold2);
  text-align: left;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.acpk26-article th,
.acpk26-article td {
  min-width: 145px;
  padding: 13px 14px;
  border: 1px solid rgba(184, 193, 236, 0.12);
  vertical-align: top;
}
.acpk26-article td {
  color: #e3e7f0;
}
.acpk26-article tr:nth-child(even) td {
  background: rgba(34, 201, 255, 0.035);
}
.acpk26-figure {
  position: relative;
  margin: 30px 0 38px;
  padding: 7px;
  border: 1px solid rgba(34, 201, 255, 0.38);
  border-radius: 14px;
  background: linear-gradient(145deg, #292953, #11162b);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.42);
}
.acpk26-figure:before {
  position: absolute;
  top: -1px;
  left: 8%;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}
.acpk26-figure img {
  width: 100%;
  border-radius: 9px;
}
.acpk26-figure figcaption {
  padding: 9px 8px 3px;
  color: #aeb9cf;
  font-size: 12px;
  text-align: center;
}
.acpk26-notice {
  margin-top: 50px;
  padding: 22px 24px;
  border: 1px solid rgba(237, 187, 39, 0.38);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(237, 187, 39, 0.13), rgba(237, 187, 39, 0.035));
}
.acpk26-notice strong {
  color: var(--gold2);
  font-size: 18px;
}
.acpk26-notice p {
  margin: 4px 0 0;
  color: #d6dbea;
  font-size: 14px;
}
.acpk26-sidebar {
  position: sticky;
  top: 115px;
}
.acpk26-sidebar > div {
  padding: 23px;
  border: 1px solid rgba(34, 201, 255, 0.28);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #232348, #11162b);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.38);
}
.acpk26-sidebar > div > strong {
  display: block;
  color: var(--gold2);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.acpk26-sidebar nav {
  display: flex;
  flex-direction: column;
  max-height: 57vh;
  margin: 15px 0 20px;
  overflow: auto;
  scrollbar-color: var(--gold) #11162b;
  scrollbar-width: thin;
}
.acpk26-sidebar nav a {
  padding: 9px 2px;
  border-bottom: 1px solid rgba(184, 193, 236, 0.13);
  color: #d4daea;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
}
.acpk26-sidebar nav a:hover {
  color: var(--cyan);
}
.acpk26-sidebar nav .acpk26-toc-sub {
  padding-left: 15px;
  color: #aab6cb;
  font-size: 12px;
}
.acpk26-sidebar .acpk26-cta {
  width: 100%;
}
.acpk26-footer {
  border-top: 3px solid var(--gold);
  background: #00072d;
  color: #abb6cb;
}
.acpk26-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding: 45px 0 36px;
}
.acpk26-footer-grid img {
  width: 220px;
  max-height: 64px;
  object-fit: contain;
}
.acpk26-footer-grid p {
  max-width: 420px;
}
.acpk26-footer-grid > div > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.acpk26-footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acpk26-footer-grid nav a {
  color: #d0d8e7;
  text-decoration: none;
  font-size: 14px;
}
.acpk26-footer-grid nav a:hover {
  color: var(--cyan);
}
.acpk26-footer-bottom {
  border-top: 1px solid rgba(34, 201, 255, 0.16);
  background: #02051b;
}
.acpk26-footer-bottom > div {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  color: #8492aa;
  font-size: 12px;
}
@media (max-width: 1080px) {
  .acpk26-menu {
    display: block;
  }
  .acpk26-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 16px 20px;
    border-bottom: 2px solid var(--gold);
    background: #171828;
    flex-direction: column;
    align-items: stretch;
  }
  .acpk26-nav.acpk26-open {
    display: flex;
  }
  .acpk26-nav > a,
  .acpk26-dropdown > button {
    text-align: center;
  }
  .acpk26-dropdown > div {
    position: static;
    width: min(100%, 380px);
    margin: 4px auto;
    transform: none;
  }
  .acpk26-actions {
    display: none;
  }
  .acpk26-grid {
    grid-template-columns: 1fr;
  }
  .acpk26-sidebar {
    position: static;
  }
  .acpk26-sidebar nav {
    max-height: none;
  }
}
@media (max-width: 700px) {
  .acpk26-agebar {
    gap: 17px;
  }
  .acpk26-agebar span:nth-child(3) {
    display: none;
  }
  .acpk26-container,
  .acpk26-header-inner,
  .acpk26-hero {
    width: min(100% - 22px, var(--max));
  }
  .acpk26-logo img {
    width: 175px;
  }
  .acpk26-hero {
    min-height: 410px;
    margin-top: 12px;
    background-position: 62% center;
  }
  .acpk26-hero-inner {
    padding: 50px 22px;
  }
  .acpk26-hero h1 {
    font-size: 40px;
  }
  .acpk26-hero p {
    font-size: 16px;
  }
  .acpk26-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .acpk26-content-section {
    padding: 22px 0 48px;
  }
  .acpk26-article {
    padding: 24px 17px;
  }
  .acpk26-article > p:first-child {
    padding: 16px;
  }
  .acpk26-article h2 {
    font-size: 25px;
  }
  .acpk26-article h3 {
    font-size: 19px;
  }
  .acpk26-article th,
  .acpk26-article td {
    min-width: 145px;
    padding: 11px;
  }
  .acpk26-footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .acpk26-footer-bottom > div {
    flex-direction: column;
    gap: 4px;
  }
}
.acpk26-article thead,
.acpk26-article tbody {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.acpk26-article thead tr,
.acpk26-article tbody tr {
  display: table-row;
}
.acpk26-article ul,
.acpk26-article ol {
  padding: 0 0 0 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.acpk26-article h2 {
  padding: 0 0 0 18px;
  border-radius: 0;
  background: none;
}
