
:root {
  --brand-dark-violet: #5F4B8B;
  --brand-electric-blue: #007FFF;
  --brand-soft-bg: #131d33;
  --brand-text: #f2f6ff;
  --brand-border: rgba(162, 184, 226, 0.26);
  --brand-panel: linear-gradient(145deg, rgba(16, 31, 58, 0.9), rgba(31, 30, 61, 0.86));
  --brand-link: #41e2ff;
}

body,
.ycb-article-page,
.ycb-content,
.ycb-content p,
.ycb-content li,
.ycb-content td,
.ycb-content th,
.ycb-hero p {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  color: var(--brand-text);
}

body {
  background:
    radial-gradient(900px 360px at 12% -6%, rgba(0, 127, 255, 0.24), transparent 65%),
    radial-gradient(780px 340px at 84% 10%, rgba(95, 75, 139, 0.36), transparent 67%),
    linear-gradient(180deg, #071225 0%, #0b1630 52%, #0b1427 100%);
}

.legal-text {
  font-family: Cambria, "Times New Roman", serif;
  font-size: 0.95rem;
  color: #c8d2ef;
}

.ycb-article-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.4rem;
}

.ycb-hero {
  background: var(--brand-panel);
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1.35rem;
  margin-bottom: 1rem;
}

.ycb-hero h1,
.ycb-section h2,
.ycb-section h3 {
  font-family: "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
  color: #f5f8ff;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-electric-blue);
}

.ycb-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 1rem;
}

.ycb-content {
  background: var(--brand-panel);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.ycb-section {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 170, 216, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  margin-bottom: 0.85rem;
}

.ycb-section:last-child { margin-bottom: 0; }

.ycb-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00b3ff, #007fff);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.table-wrap { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(8, 16, 34, 0.7);
}

.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(130, 152, 196, 0.28);
  padding: 0.55rem;
  text-align: left;
  color: #ecf3ff;
}

.comparison-table th {
  background: rgba(79, 94, 148, 0.4);
  color: #f7faff;
}

.ycb-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
}

.affiliate-card {
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 32, 60, 0.92), rgba(17, 22, 44, 0.94));
  padding: 0.9rem;
}

.faq details {
  border: 1px solid rgba(133, 157, 205, 0.28);
  border-radius: 10px;
  background: rgba(10, 18, 36, 0.62);
  padding: 0.6rem;
  margin-bottom: 0.5rem;
}

.ycb-yeti-callout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 32, 61, 0.9), rgba(28, 24, 58, 0.9));
  padding: 0.85rem;
}

.ycb-yeti-callout img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  max-height: 260px;
  object-fit: contain;
  justify-self: center;
  animation: yetiFloat 4s ease-in-out infinite;
}

@keyframes yetiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.price-table {
  border: 1px dashed rgba(130, 154, 208, 0.4);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(10, 20, 39, 0.72);
}

.ycb-content a,
.ycb-content a:visited {
  color: var(--brand-link);
  text-decoration: none;
}

.ycb-content a:hover,
.ycb-content a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .ycb-layout { grid-template-columns: 1fr; }
  .ycb-sidebar { position: static; }
  .ycb-yeti-callout { grid-template-columns: 1fr; }
  .ycb-yeti-callout img { width: 160px; height: auto; }
}
