:root {
  --bg: #001827;
  --panel: #ffffff;
  --panel-soft: #fff0f7;
  --text: #fff9df;
  --muted: #c8d9d1;
  --gold: #b58b28;
  --gold-2: #f4d16f;
  --green: #ee3b8e;
  --deep: #001827;
  --line: rgba(223, 189, 91, .3);
  --content: #ffffff;
  --body: #edf6f1;
  --max: 1360px;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--body);
  background: linear-gradient(180deg, #001827, #32152f 45%, #001827);
  line-height: 1.65;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
  radial-gradient(circle at 12% 0%, rgba(238, 59, 142, .18), transparent 28%),
  radial-gradient(circle at 78% 6%, rgba(244, 209, 111, .12), transparent 34%),
  #001827;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.swca26-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 25, 19, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0,0,0,.42);
}
.swca26-header-inner {
  min-height: 70px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.swca26-logo {
  flex: 0 0 auto;
}
.swca26-logo img {
  width: 210px;
  max-height: 52px;
  object-fit: contain;
}
.swca26-site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: center;
  min-width: 0;
}
.swca26-site-nav a {
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.06);
}
.swca26-site-nav a:hover {
  background: rgba(238,59,142,.2);
  color: var(--gold-2);
}
.swca26-header-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.swca26-btn, .swca26-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #172116;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}
.swca26-btn-dark {
  background: #173442 !important;
  color: #fff !important;
  border-color: rgba(244,209,111,.38) !important;
}
.swca26-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #173442;
  color: #fff;
}
.swca26-menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 6px;
  background: currentColor;
}
.swca26-hero {
  color: #fff;
  border-bottom: 1px solid var(--line);
  background: #001827;
  background-size: cover;
  background-position: center;
}
.swca26-breadcrumbs {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 13px 20px;
  color: var(--muted);
  font-size: 13px;
}
.swca26-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.swca26-breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--gold);
}
.swca26-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.swca26-breadcrumbs a:hover {
  color: var(--gold);
}
.swca26-hero-inner {
  min-height: 430px;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  display: grid;
  grid-template-columns: minmax(300px, 590px) 1fr;
  align-items: center;
  gap: 30px;
  background: linear-gradient(90deg, rgba(4,25,20,.98), rgba(5,52,40,.76) 48%, rgba(4,25,20,.3));
}
.swca26-hero-kicker {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h1,h2,h3 {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.15;
}
.swca26-hero h1 {
  font-size: clamp(34px, 3vw, 54px);
  max-width: 720px;
  text-shadow: 0 8px 22px rgba(0,0,0,.5);
}
.swca26-hero p {
  max-width: 640px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}
.swca26-section {
  padding: 64px 20px;
}
.swca26-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.swca26-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}
.swca26-review-content, .swca26-side-box {
  background: rgba(4,28,21,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.swca26-review-content {
  padding: 30px;
  min-width: 0;
}
.swca26-review-content p {
  margin: 0 0 18px;
}
.swca26-review-content .swca26-legal-intro {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(238,59,142,.09);
  color: var(--text);
}
.swca26-review-content h2 {
  margin-top: 34px;
  font-size: 28px;
  color: var(--gold-2);
}
.swca26-review-content h3 {
  margin-top: 24px;
  font-size: 21px;
  color: #ffffff;
}
.swca26-review-content ul, .swca26-review-content ol {
  padding-left: 22px;
  margin: 0 0 22px;
}
.swca26-review-content li {
  margin: 7px 0;
}
.swca26-faq-item {
  padding: 2px 0;
  border-bottom: 1px solid var(--line);
}
.swca26-faq-item:last-child {
  border-bottom: 0;
}
.swca26-text-home-link {
  color: #d92b78;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.swca26-text-home-link:hover,
.swca26-text-home-link:focus-visible {
  color: #ee3b8e;
}
.swca26-review-content table {
  display: table;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  border-radius: 8px;
  overflow: hidden;
}
.swca26-review-content tbody {
  display: table-row-group;
}
.swca26-review-content th, .swca26-review-content td {
  border: 1px solid rgba(223,189,91,.22);
  padding: 11px 12px;
  vertical-align: top;
}
.swca26-review-content th {
  background: #d92b78;
  color: var(--gold-2);
  text-align: left;
}
.swca26-review-content tr:nth-child(even) td {
  background: rgba(255,255,255,.035);
}
.swca26-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}
.swca26-article-meta span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 7px 10px;
  border-radius: 999px;
}
.swca26-article-figure {
  display: block;
  width: 100%;
  max-width: none;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #001827;
}
.swca26-article-figure img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}
.swca26-article-figure figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}
.swca26-author-box {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19,75,57,.48);
}
.swca26-author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff url('/assets/img/sweetsino/favicon-sweet.ico') center / 52% no-repeat;
  border: 2px solid var(--gold);
}
.swca26-author-body p {
  margin: 6px 0 10px;
  color: var(--muted);
}
.swca26-author-body span[itemprop="name"] {
  color: var(--gold-2);
  font-size: 18px;
}
.swca26-author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.swca26-sidebar {
  position: sticky;
  top: 84px;
}
.swca26-side-box {
  padding: 18px;
}
.swca26-side-box > span:first-child {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 18px;
}
.swca26-toc-nav {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  max-height: 62vh;
  overflow: auto;
  padding-right: 4px;
}
.swca26-toc-nav a {
  text-decoration: none;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: var(--body);
  font-size: 13px;
  line-height: 1.25;
}
.swca26-toc-nav a:hover {
  background: rgba(238,59,142,.13);
  color: #c9236e;
}
.swca26-toc-sub {
  margin-left: 12px;
  opacity: .9;
}
.swca26-site-footer {
  background: #001827;
  border-top: 1px solid var(--line);
}
.swca26-footer-main {
  padding: 48px 20px 44px;
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(340px, 1fr) minmax(170px, 210px);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.swca26-footer-badges {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: start;
}
.swca26-footer-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}
.swca26-footer-badge img {
  max-width: 160px;
  object-fit: contain;
}
.swca26-footer-badge-text {
  width: 76px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid var(--line);
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  color: var(--gold-2);
}
.swca26-footer-badge-text small {
  color: var(--muted);
  font-size: 10px;
}
.swca26-footer-copy-block p {
  margin: 0 0 16px;
  color: #b9c9d1;
  max-width: 680px;
  line-height: 1.75;
}
.swca26-language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.swca26-language-switch:hover {
  transform: translateY(-2px);
  background: rgba(238,59,142,.20);
  border-color: var(--gold);
}
.swca26-language-switch:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}
.swca26-footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(80px, 1fr));
  gap: 12px 24px;
  align-content: start;
}
.swca26-footer-menu a {
  color: #ff83b9;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.swca26-footer-menu a:hover,
.swca26-footer-menu a:focus-visible {
  color: #ffffff;
}
.swca26-language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.swca26-language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.swca26-language-switcher a:hover,
.swca26-language-switcher a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16);
  outline: 2px solid var(--gold-2);
  outline-offset: 2px;
}
.swca26-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 20px;
}
.swca26-footer-bottom .swca26-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}
@media (max-width: 1100px) {
  .swca26-header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
  }
  .swca26-site-nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .swca26-content-layout, .swca26-footer-main {
    grid-template-columns: 1fr;
  }
  .swca26-sidebar {
    position: static;
  }
}
@media (max-width: 760px) {
  .swca26-review-content table {
    table-layout: fixed;
    font-size: 14px;
  }
  .swca26-review-content th,
  .swca26-review-content td {
    overflow-wrap: anywhere;
  }
  .swca26-menu-toggle {
    display: block;
  }
  .swca26-site-nav {
    display: none;
  }
  .swca26-site-nav.swca26-is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .swca26-header-actions {
    width: 100%;
  }
  .swca26-header-actions a {
    flex: 1;
  }
  .swca26-hero-inner {
    min-height: 360px;
    grid-template-columns: 1fr;
    padding: 54px 20px;
  }
  .swca26-review-content {
    padding: 20px;
  }
  .swca26-author-box {
    grid-template-columns: 1fr;
  }
  .swca26-footer-bottom .swca26-container {
    flex-direction: column;
  }
}

/* Sweetsino candy visual system */
:root {
  --bg: #f8f4fb;
  --panel: #ffffff;
  --panel-soft: #fff0f7;
  --text: #162e3d;
  --muted: #62717b;
  --gold: #ee3b8e;
  --gold-2: #ff8fbe;
  --green: #ee3b8e;
  --deep: #001827;
  --line: rgba(238, 59, 142, .20);
  --content: #ffffff;
  --body: #263c49;
}
html,
body {
  background: #f8f4fb;
}
body::before {
  background:
    radial-gradient(circle at 7% 2%, rgba(238, 59, 142, .12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(81, 215, 216, .10), transparent 26%),
    #f8f4fb;
}
.swca26-site-header {
  background: rgba(0, 24, 39, .98);
  box-shadow: 0 7px 24px rgba(0, 24, 39, .22);
}
.swca26-site-nav {
  color: #ffffff;
}
.swca26-site-nav a {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .10);
}
.swca26-site-nav a:hover {
  color: #ffffff;
  background: #ee3b8e;
}
.swca26-btn,
.swca26-header-actions a {
  color: #ffffff;
  background: linear-gradient(180deg, #ff60a7, #e72b7d);
  box-shadow: 0 8px 20px rgba(238, 59, 142, .24);
}
.swca26-btn-dark,
.swca26-menu-toggle {
  background: #173442 !important;
}
.swca26-hero {
  background-color: #001827;
}
.swca26-hero-inner {
  background: linear-gradient(90deg, rgba(0, 24, 39, .98), rgba(91, 20, 75, .70) 50%, rgba(0, 24, 39, .16));
}
.swca26-hero h1,
.swca26-hero p {
  color: #ffffff;
}
.swca26-review-content,
.swca26-side-box {
  background: #ffffff;
  color: #2a3347;
  box-shadow: 0 16px 36px rgba(31, 42, 66, .10);
}
.swca26-review-content h2 {
  color: #d92b78;
}
.swca26-review-content h3 {
  color: #173442;
}
.swca26-review-content th {
  background: #d92b78;
  color: #ffffff;
}
.swca26-review-content tr:nth-child(even) td {
  background: #f5f7fa;
}
.swca26-review-content th,
.swca26-review-content td {
  border-color: #dce2ec;
}
.swca26-review-content .swca26-legal-intro {
  background: #fff0f7;
  color: #173442;
}
.swca26-article-meta,
.swca26-article-figure figcaption,
.swca26-side-box nav a {
  color: #5f6878;
}
.swca26-author-box {
  background: #fff0f7;
  border-color: #f2c9dc;
}
.swca26-site-footer {
  background: #001827;
  color: #d8e5ea;
}
.swca26-author-body span[itemprop="name"] {
  color: #d92b78;
}
.swca26-footer-main img {
  width: 220px;
  height: 86px;
  max-height: 86px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}
.swca26-footer-main > div:first-child {
  display: grid;
  gap: 16px;
  align-content: start;
}
.swca26-footer-main > div:first-child p {
  margin: 0;
  color: #b9c9d1;
  line-height: 1.55;
}
.swca26-footer-bottom .swca26-container {
  color: #aebfc7;
}
