:root {
  --bco-bg-deep: #05000d;
  --bco-bg-mid: #0a0020;
  --bco-bg-low: #000a18;
  --bco-card: #0d0a1f;
  --bco-card-soft: #151033;
  --bco-border: rgba(139, 92, 246, 0.25);
  --bco-border-strong: rgba(45, 212, 191, 0.35);
  --bco-text: #f5f3ff;
  --bco-muted: #c4b5fd;
  --bco-violet: #8b5cf6;
  --bco-violet-soft: #a78bfa;
  --bco-teal: #14b8a6;
  --bco-teal-soft: #2dd4bf;
  --bco-shadow: 0 24px 70px rgba(2, 8, 30, 0.35);
  --bco-inner-glow: inset 0 0 30px rgba(139, 92, 246, 0.06);
  --bco-radius-xl: 30px;
  --bco-radius-lg: 24px;
  --bco-radius-md: 18px;
  --bco-radius-sm: 12px;
  --bco-page-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  color: var(--bco-text);
  background: linear-gradient(
    180deg,
    var(--bco-bg-deep) 0%,
    var(--bco-bg-mid) 45%,
    var(--bco-bg-low) 100%
  );
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -14rem;
  left: -8rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.22) 0%,
    rgba(139, 92, 246, 0.07) 45%,
    rgba(139, 92, 246, 0) 72%
  );
}

body::after {
  right: -12rem;
  bottom: -10rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.2) 0%,
    rgba(20, 184, 166, 0.08) 40%,
    rgba(20, 184, 166, 0) 74%
  );
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.bco-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.06);
}

.bco-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--bco-violet) 0%,
    var(--bco-teal) 100%
  );
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.45);
  transition: width 0.18s ease;
}

.bco-page {
  width: min(var(--bco-page-width), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bco-cookie-banner {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 12px 18px;
  background: rgba(9, 4, 26, 0.96);
  border-bottom: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow: 0 14px 30px rgba(2, 8, 30, 0.28);
}

.bco-cookie-banner[data-bco-cookie-state="hidden"] {
  display: none;
}

.bco-cookie-copy {
  font-size: 0.95rem;
  color: var(--bco-text);
}

.bco-cookie-actions,
.bco-age-actions,
.bco-hero-actions,
.bco-card-actions,
.bco-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bco-button,
.bco-link-button,
.bco-cookie-banner button,
.bco-age-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  color: var(--bco-text);
  cursor: pointer;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.bco-button,
.bco-link-button,
.bco-button-primary {
  background: linear-gradient(
    110deg,
    var(--bco-violet) 0%,
    var(--bco-teal) 100%
  );
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.22);
}

.bco-button:hover,
.bco-link-button:hover,
.bco-button-primary:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 1px rgba(245, 243, 255, 0.14),
    0 0 24px rgba(45, 212, 191, 0.34);
}

.bco-button-secondary,
.bco-cookie-banner .bco-cookie-decline,
.bco-age-leave {
  background: rgba(13, 10, 31, 0.9);
  border: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow: none;
}

.bco-button-secondary:hover,
.bco-cookie-banner .bco-cookie-decline:hover,
.bco-age-leave:hover {
  background: rgba(21, 16, 51, 0.95);
  border-color: rgba(45, 212, 191, 0.35);
}

.bco-topbar-offset {
  height: 62px;
}

html.bco-cookie-done .bco-topbar-offset,
.bco-cookie-banner[data-bco-cookie-state="hidden"] + .bco-topbar-offset {
  display: none;
}

.bco-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding-top: 0.5rem;
}

.bco-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.bco-header[data-bco-header-state="solid"]::before {
  background: rgba(5, 0, 13, 0.88);
  border-color: rgba(167, 139, 250, 0.18);
}

.bco-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.bco-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.bco-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.22);
}

.bco-logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bco-text);
}

.bco-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.24);
  background: rgba(10, 0, 32, 0.75);
  cursor: pointer;
}

.bco-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--bco-text);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.bco-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.bco-nav a {
  position: relative;
  padding: 0.35rem 0.1rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bco-muted);
}

.bco-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(
    90deg,
    var(--bco-violet) 0%,
    var(--bco-teal) 100%
  );
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.42);
  transition: opacity 0.2s ease;
}

.bco-nav a:hover,
.bco-nav a:focus-visible {
  color: var(--bco-text);
}

.bco-nav a:hover::after,
.bco-nav a:focus-visible::after,
.bco-nav a.bco-nav-active::after {
  opacity: 1;
}

.bco-hero,
.bco-page-hero,
.bco-section,
.bco-card,
.bco-footer-box,
.bco-contact-card,
.bco-legal-section {
  background: rgba(13, 10, 31, 0.82);
  border: 1px solid var(--bco-border);
  box-shadow: var(--bco-shadow), var(--bco-inner-glow);
}

.bco-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100vh - 130px);
  overflow: hidden;
  border-radius: 34px;
}

.bco-hero-copy,
.bco-hero-visual {
  position: relative;
  min-height: 100%;
}

.bco-hero-copy {
  padding: 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  background: linear-gradient(
    140deg,
    rgba(16, 8, 40, 0.96) 0%,
    rgba(11, 6, 27, 0.92) 52%,
    rgba(8, 5, 22, 0.55) 100%
  );
}

.bco-hero-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -7rem;
  bottom: 0;
  width: 14rem;
  background: linear-gradient(
    100deg,
    rgba(8, 5, 22, 0.6) 0%,
    rgba(8, 5, 22, 0) 72%
  );
  transform: skewX(-12deg);
  transform-origin: bottom left;
  pointer-events: none;
}

.bco-hero-copy > * {
  position: relative;
  z-index: 1;
}

.bco-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(167, 139, 250, 0.18);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bco-muted);
}

.bco-hero h1,
.bco-page-hero h1,
.bco-section h2,
.bco-card h3,
.bco-footer-title,
.bco-legal-section h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  color: var(--bco-text);
}

.bco-hero h1,
.bco-page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bco-hero .bco-subline,
.bco-page-hero p,
.bco-section p,
.bco-card p,
.bco-footer-box p,
.bco-legal-section p,
.bco-contact-card p,
.bco-methodology-table,
.bco-lexicon-item p {
  color: rgba(245, 243, 255, 0.9);
  line-height: 1.8;
}

.bco-hero .bco-subline {
  max-width: 34rem;
  font-size: 1.06rem;
}

.bco-hero-visual {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(139, 92, 246, 0.34) 0%,
      rgba(139, 92, 246, 0.05) 30%,
      transparent 58%
    ),
    radial-gradient(
      circle at 72% 62%,
      rgba(20, 184, 166, 0.28) 0%,
      rgba(20, 184, 166, 0.08) 32%,
      transparent 62%
    ),
    linear-gradient(180deg, rgba(5, 0, 13, 0.15) 0%, rgba(0, 10, 24, 0.25) 100%);
}

.bco-nebula,
.bco-nebula::before,
.bco-nebula::after {
  position: absolute;
  inset: 0;
  content: "";
}

.bco-nebula::before {
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(167, 139, 250, 0.38) 0%,
      rgba(167, 139, 250, 0) 34%
    ),
    radial-gradient(
      circle at 72% 56%,
      rgba(45, 212, 191, 0.28) 0%,
      rgba(45, 212, 191, 0) 30%
    ),
    radial-gradient(
      circle at 58% 28%,
      rgba(139, 92, 246, 0.2) 0%,
      rgba(139, 92, 246, 0) 32%
    );
  animation: bcoNebulaFloat 14s ease-in-out infinite alternate;
}

.bco-nebula::after {
  background:
    radial-gradient(circle, rgba(245, 243, 255, 0.95) 0 1px, transparent 1.2px)
      18% 22% / 90px 90px,
    radial-gradient(circle, rgba(245, 243, 255, 0.85) 0 1px, transparent 1.2px)
      62% 38% / 120px 120px,
    radial-gradient(circle, rgba(245, 243, 255, 0.75) 0 1px, transparent 1.2px)
      30% 74% / 110px 110px,
    radial-gradient(circle, rgba(245, 243, 255, 0.85) 0 1px, transparent 1.2px)
      78% 68% / 130px 130px;
  animation: bcoStarDrift 22s linear infinite;
  opacity: 0.9;
}

.bco-page-hero {
  padding: 3rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  background:
    linear-gradient(140deg, rgba(12, 8, 36, 0.92), rgba(6, 11, 26, 0.88)),
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, 0.18),
      transparent 28%
    );
}

.bco-section,
.bco-contact-card,
.bco-legal-section {
  padding: 2rem;
  border-radius: var(--bco-radius-xl);
  margin-bottom: 1.75rem;
}

.bco-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.bco-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.14;
}

.bco-section-intro {
  max-width: 42rem;
  color: var(--bco-muted);
}

.bco-team-grid,
.bco-guide-grid,
.bco-lexicon-grid,
.bco-footer-trust,
.bco-contact-grid,
.bco-legal-grid {
  display: grid;
  gap: 1.2rem;
}

.bco-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bco-team-card,
.bco-guide-card,
.bco-lexicon-item,
.bco-trust-item {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(21, 16, 51, 0.9);
  border: 1px solid rgba(167, 139, 250, 0.16);
}

.bco-team-role,
.bco-type-reco,
.bco-lexicon-term {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  color: var(--bco-muted);
  font-size: 0.82rem;
}

.bco-team-card h3,
.bco-guide-card h3,
.bco-lexicon-item h3,
.bco-contact-card h2 {
  margin: 0.9rem 0 0.7rem;
  font-size: 1.18rem;
}

.bco-card-list {
  display: grid;
  gap: 1.5rem;
}

.bco-card {
  position: relative;
  padding: 0 1.4rem 1.35rem;
  overflow: hidden;
  border-radius: 28px;
}

.bco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    18px 14px 0 -17px rgba(245, 243, 255, 0.2),
    140px 52px 0 -139px rgba(245, 243, 255, 0.25),
    260px 96px 0 -258px rgba(45, 212, 191, 0.24),
    510px 30px 0 -509px rgba(167, 139, 250, 0.28);
  opacity: 0.88;
  pointer-events: none;
}

.bco-card-banner {
  height: 144px;
  margin: 0 -1.4rem;
  border-radius: 27px 27px 0 0;
  background:
    linear-gradient(
      120deg,
      rgba(139, 92, 246, 0.9) 0%,
      rgba(20, 184, 166, 0.68) 100%
    ),
    radial-gradient(
      circle at top right,
      rgba(245, 243, 255, 0.18),
      transparent 36%
    );
}

.bco-card:nth-child(2n) .bco-card-banner {
  background:
    linear-gradient(
      120deg,
      rgba(20, 184, 166, 0.82) 0%,
      rgba(139, 92, 246, 0.78) 100%
    ),
    radial-gradient(
      circle at top left,
      rgba(245, 243, 255, 0.16),
      transparent 36%
    );
}

.bco-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 24px;
  margin-top: -40px;
}

.bco-logo-orb {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid rgba(245, 243, 255, 0.22);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.bco-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.bco-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.bco-logo-orb .bco-logo-wrap {
  width: 78px;
  height: 48px;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.bco-brand-meta {
  min-width: 0;
  flex: 1 1 180px;
}

.bco-brand-meta h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.bco-card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.bco-score {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bco-text);
}

.bco-stars {
  color: var(--bco-teal-soft);
  letter-spacing: 0.12em;
}

.bco-badge,
.bco-reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bco-text);
  font-size: 0.82rem;
}

.bco-reg-badge {
  color: var(--bco-muted);
}

.bco-card-grid {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  align-items: start;
  margin-top: 1rem;
}

.bco-card-grid > * {
  min-width: 0;
}

.bco-card-offer {
  flex: 1.2 1 250px;
}

.bco-card-cta {
  flex: 0.9 1 220px;
}

.bco-bonus {
  margin: 0 0 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.16);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bco-text);
}

.bco-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bco-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.13);
  border: 1px solid rgba(45, 212, 191, 0.18);
  color: var(--bco-text);
  font-size: 0.85rem;
}

.bco-card-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--bco-muted);
}

.bco-card-actions .bco-link-button {
  width: 100%;
}

.bco-guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bco-guide-card {
  background: linear-gradient(
    180deg,
    rgba(21, 16, 51, 0.95) 0%,
    rgba(11, 9, 26, 0.92) 100%
  );
}

.bco-type-reco {
  margin-top: 0.8rem;
}

.bco-table-wrap {
  overflow-x: auto;
  max-width: 100%;
}

.bco-methodology-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.bco-methodology-table th,
.bco-methodology-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(167, 139, 250, 0.12);
}

.bco-methodology-table thead th {
  color: var(--bco-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.bco-methodology-table tbody tr:last-child td {
  border-bottom: 0;
}

.bco-methodology-highlight {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(20, 184, 166, 0.09);
  border: 1px solid rgba(45, 212, 191, 0.18);
}

.bco-rg-panel {
  display: grid;
  gap: 1rem;
}

.bco-rg-quote {
  margin: 0;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--bco-teal);
  border-radius: 0 18px 18px 0;
  background: rgba(20, 184, 166, 0.08);
  color: var(--bco-text);
  font-size: 1.05rem;
}

.bco-rg-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.bco-rg-item {
  padding: 1.3rem;
  border-radius: 20px;
  background: rgba(21, 16, 51, 0.88);
  border: 1px solid rgba(167, 139, 250, 0.16);
}

.bco-rg-checklist {
  margin: 0;
  padding-left: 1.15rem;
}

.bco-rg-checklist li + li {
  margin-top: 0.7rem;
}

.bco-link-list {
  display: grid;
  gap: 0.65rem;
}

.bco-link-list a {
  color: var(--bco-teal-soft);
}

.bco-lexicon-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bco-contact-grid,
.bco-footer-trust {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bco-contact-card ul,
.bco-legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(245, 243, 255, 0.9);
}

.bco-contact-card li + li,
.bco-legal-section li + li {
  margin-top: 0.6rem;
}

.bco-footer-box {
  padding: 2rem;
  border-radius: 30px 30px 0 0;
  margin-top: 2rem;
  margin-bottom: 0;
}

.bco-footer-title {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.bco-footer-trust {
  margin: 1.4rem 0;
}

.bco-trust-item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Orbitron", sans-serif;
}

.bco-footer-links,
.bco-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  align-items: center;
}

.bco-footer-links a,
.bco-footer-meta a {
  color: var(--bco-muted);
}

.bco-footer-divider {
  height: 1px;
  margin: 1.2rem 0;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0) 0%,
    rgba(139, 92, 246, 0.35) 20%,
    rgba(45, 212, 191, 0.35) 80%,
    rgba(45, 212, 191, 0) 100%
  );
}

.bco-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  background: rgba(0, 0, 0, 0.9) !important;
  margin: 0 !important;
  padding: 0.65rem !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

.bco-age-overlay[data-bco-age-state="confirmed"],
.bco-age-overlay[data-bco-age-state="hidden"] {
  display: none !important;
}

.bco-age-box {
  width: min(100%, 520px);
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(13, 10, 31, 0.98) 0%,
    rgba(9, 5, 23, 0.96) 100%
  );
  border: 1px solid rgba(167, 139, 250, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.bco-age-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.2);
  color: var(--bco-text);
}

.bco-age-box h2 {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.bco-age-box p {
  color: var(--bco-muted);
}

.bco-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 115;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(
    130deg,
    rgba(139, 92, 246, 0.95) 0%,
    rgba(20, 184, 166, 0.95) 100%
  );
  color: var(--bco-text);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 18px 40px rgba(2, 8, 30, 0.34);
}

.bco-scroll-top[data-bco-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bco-legal-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: 0.8rem;
}

.bco-legal-section + .bco-legal-section {
  margin-top: 1.2rem;
}

.bco-small-note {
  font-size: 0.9rem;
  color: var(--bco-muted);
}

@keyframes bcoNebulaFloat {
  from {
    transform: translate3d(-1.2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1.8%, 0) scale(1.05);
  }
}

@keyframes bcoStarDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-28px, 26px, 0);
  }
}

@media (max-width: 1080px) {
  .bco-team-grid,
  .bco-guide-grid,
  .bco-lexicon-grid,
  .bco-rg-grid,
  .bco-contact-grid,
  .bco-footer-trust {
    grid-template-columns: 1fr;
  }

  .bco-hero {
    grid-template-columns: 1fr;
  }

  .bco-hero-copy {
    clip-path: none;
  }
}

@media (max-width: 900px) {
  .bco-header-inner {
    position: relative;
  }

  .bco-nav-toggle {
    display: inline-block;
  }

  .bco-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0.75rem;
    left: 0.75rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(9, 4, 26, 0.98);
    border: 1px solid rgba(167, 139, 250, 0.18);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .bco-nav[data-bco-menu-state="open"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .bco-hero,
  .bco-page-hero {
    border-radius: 24px;
  }

  .bco-hero-copy,
  .bco-page-hero,
  .bco-section,
  .bco-card,
  .bco-footer-box,
  .bco-contact-card,
  .bco-legal-section {
    padding: 1.4rem;
  }

  .bco-hero-copy {
    min-height: 420px;
  }

  .bco-hero-visual {
    min-height: 280px;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .bco-page,
  .bco-page * {
    max-width: 100%;
  }

  .bco-page {
    width: min(1180px, calc(100% - 12px));
  }

  .bco-header-inner {
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
    position: relative;
  }

  .bco-logo {
    min-width: 0;
  }

  .bco-logo-text {
    font-size: clamp(0.58rem, 2.9vw, 0.78rem);
    letter-spacing: 0.05em;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-hero h1,
  .bco-page-hero h1 {
    font-size: clamp(1.05rem, 5.8vw, 2rem);
    letter-spacing: 0.055em;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-button,
  .bco-link-button,
  .bco-age-actions button,
  .bco-cookie-banner button {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
  }

  .bco-hero p,
  .bco-hero .bco-subline {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .bco-section {
    padding: 0.95rem 0.75rem;
    border-radius: 18px;
    margin-bottom: 1.25rem;
  }

  .bco-section h2 {
    font-size: clamp(1.02rem, 4.8vw, 1.55rem);
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-methodology-table,
  table {
    font-size: 0.78rem;
    table-layout: auto;
    width: max-content;
    min-width: 100%;
  }

  .bco-methodology-table thead th,
  table thead th {
    white-space: nowrap;
  }

  .bco-methodology-table th,
  .bco-methodology-table td,
  table th,
  table td {
    padding: 0.5rem 0.4rem;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .bco-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bco-card {
    padding: 0.95rem 0.75rem;
  }

  .bco-card:hover,
  .bco-card[data-hover="active"] {
    transform: none;
  }

  .bco-card-top {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.55rem;
    position: relative;
    z-index: 2;
  }

  .bco-score {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    flex-shrink: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-badge {
    font-size: 0.65rem;
    padding: 0.32rem 0.55rem;
    max-width: 100%;
    white-space: normal;
  }

  .bco-card,
  .bco-card * {
    min-width: 0;
    max-width: 100%;
  }

  .bco-card h3,
  .bco-card p,
  .bco-card a,
  .bco-card .bco-bonus {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-logo-wrap {
    width: min(140px, 100%);
    max-width: 100%;
    height: auto;
    min-height: 4.25rem;
  }

  .bco-logo-orb {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bco-logo-orb .bco-logo-wrap {
    width: 78px;
    height: 48px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .bco-brand-meta {
    min-width: 0;
    flex: 1 1 180px;
    word-break: break-word;
  }

  .bco-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .bco-card-grid > * {
    min-width: 0;
  }

  .bco-brand-meta h3,
  .bco-bonus {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-cookie-banner {
    padding: 10px;
    gap: 10px;
    font-size: 0.84rem;
    flex-direction: column;
  }

  .bco-footer-box {
    padding: 1.15rem 0.75rem;
    border-radius: 20px;
  }

  .bco-age-overlay {
    padding: 0.65rem;
  }

  .bco-age-box h2 {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    word-break: break-word;
  }

  .bco-rg-item {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .bco-rg-checklist li,
  .bco-rg-checklist p {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    min-width: 0;
  }

  .bco-reg-badge {
    white-space: normal;
    padding: 0.28rem 0.5rem;
    font-size: 0.72rem;
    max-width: 100%;
    flex-shrink: 1;
  }
}

@media (max-width: 380px) {
  .bco-page {
    width: min(1180px, calc(100% - 8px));
  }

  .bco-logo-text {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }

  .bco-hero h1 {
    font-size: clamp(1rem, 5.2vw, 1.75rem);
  }

  .bco-header-inner {
    padding: 0.55rem;
  }

  .bco-section,
  .bco-card,
  .bco-footer-box {
    padding-inline: 0.65rem;
  }

  table th,
  table td {
    padding: 0.42rem 0.32rem;
    font-size: 0.72rem;
  }
}
