@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("media/fonts/barlow-condensed-500.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("media/fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  --bo-bg: #070d2f;
  --bo-bg-soft: #0d1643;
  --bo-surface: #131f58;
  --bo-surface-2: #1a2a6d;
  --bo-surface-3: #1a1741;
  --bo-text: #ecf1ff;
  --bo-muted: #b7c3ea;
  --bo-accent: #ffd34d;
  --bo-accent-2: #2ec4ff;
  --bo-success: #2ac971;
  --bo-danger: #ff6a6a;
  --bo-border: #2b3f8e;
  --bo-shadow: 0 12px 34px rgba(4, 8, 28, 0.42);
  --bo-radius: 18px;
  --bo-shell-pad: clamp(16px, 2.1vw, 24px);
  --bo-gap: clamp(16px, 1.8vw, 24px);
  --bo-sidebar-w: 284px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow Condensed", "Trebuchet MS", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bo-text);
  background:
    radial-gradient(circle at 85% -10%, rgba(38, 145, 255, 0.2), transparent 42%),
    radial-gradient(circle at 12% 14%, rgba(255, 204, 90, 0.14), transparent 34%),
    linear-gradient(165deg, #05092a 0%, #0b1242 46%, #070d2f 100%);
}

a {
  color: inherit;
}

.bo-site {
  min-height: 100vh;
}

.bo-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--bo-sidebar-w);
  height: 100vh;
  padding: 20px;
  background: linear-gradient(180deg, rgba(10, 17, 59, 0.98), rgba(8, 13, 43, 0.98));
  border-right: 1px solid rgba(133, 158, 255, 0.22);
  z-index: 35;
}

.bo-sidebar-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.bo-logo-link {
  display: flex;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.bo-logo {
  width: 158px;
  height: auto;
  display: block;
}

.bo-sidebar-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.bo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: 50px;
  min-width: 214px;
  padding: 0 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bo-btn:hover,
.bo-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.bo-btn:focus-visible {
  outline: 2px solid var(--bo-accent);
  outline-offset: 2px;
}

.bo-btn-primary {
  color: #0a1037;
  background: linear-gradient(120deg, #ffd862, #ffbf2c);
}

.bo-btn-secondary {
  color: var(--bo-text);
  background: linear-gradient(120deg, #2a5eff, #30a8ff);
}

.bo-btn-success {
  color: #eafff3;
  background: linear-gradient(120deg, #12a54f, #38cc70);
}

.bo-sidebar-nav {
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid rgba(108, 137, 231, 0.32);
  background: rgba(10, 21, 69, 0.66);
  padding: 12px;
}

.bo-sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.bo-sidebar-nav a {
  display: block;
  text-decoration: none;
  color: var(--bo-muted);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1.04rem;
}

.bo-sidebar-nav a:hover,
.bo-sidebar-nav a:focus-visible {
  color: #f6f9ff;
  background: rgba(72, 104, 212, 0.32);
}

.bo-sidebar-disclaimer {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.42;
  color: #95aadf;
}

.bo-main-shell {
  margin-left: var(--bo-sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.bo-cookie-open .bo-main-shell {
  padding-bottom: 104px;
}

.bo-mobile-head {
  display: none;
}

.bo-main {
  width: min(1180px, 100%);
  padding: var(--bo-shell-pad);
  margin: 0 auto;
}

.bo-section {
  margin: var(--bo-gap) 0;
}

.bo-main > .bo-section:first-child {
  margin-top: 0;
}

.bo-main > .bo-section:last-child {
  margin-bottom: 0;
}

.bo-card {
  background: linear-gradient(160deg, rgba(17, 28, 82, 0.95), rgba(15, 24, 66, 0.95));
  border: 1px solid rgba(92, 119, 215, 0.42);
  border-radius: var(--bo-radius);
  box-shadow: var(--bo-shadow);
}

.bo-hero {
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.bo-hero-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

.bo-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 28px);
  background: linear-gradient(90deg, rgba(8, 13, 47, 0.75), rgba(8, 13, 47, 0.28));
}

.bo-hero-cta {
  width: min(560px, 92%);
  text-align: center;
  background: rgba(7, 13, 47, 0.84);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(94, 131, 244, 0.6);
  border-radius: 18px;
  padding: clamp(16px, 2.5vw, 24px);
}

.bo-eyebrow {
  display: inline-block;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bo-accent);
  font-size: 0.95rem;
}

.bo-title-xl {
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3.1rem);
  line-height: 1.02;
}

.bo-hero-cta p {
  margin: 12px 0 16px;
  color: #d8e2ff;
  font-size: clamp(1.04rem, 1.55vw, 1.25rem);
}

.bo-accordion {
  padding: clamp(14px, 1.6vw, 18px);
}

.bo-accordion > h2,
.bo-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.1;
}

.bo-accordion-toggle {
  width: 100%;
  border: 1px solid rgba(96, 134, 248, 0.6);
  background: rgba(16, 31, 93, 0.74);
  border-radius: 14px;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
  font-family: inherit;
  color: #f0f5ff;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bo-accordion-toggle:hover,
.bo-accordion-toggle:focus-visible {
  background: rgba(25, 44, 120, 0.9);
  border-color: rgba(129, 163, 255, 0.85);
}

.bo-accordion-panel {
  padding: 10px 0 0;
}

.bo-accordion-toggle[aria-expanded="true"] {
  color: #ffffff;
  border-color: rgba(137, 171, 255, 0.88);
}

.bo-accordion-links {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bo-accordion-links a {
  display: block;
  text-decoration: none;
  font-family: inherit;
  color: #e8efff;
  border: 0;
  background: transparent;
  padding: 8px 2px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.bo-accordion-links a:hover,
.bo-accordion-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.bo-accordion ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--bo-muted);
}

.bo-overview,
.bo-pay-grid,
.bo-calculator,
.bo-pros-cons,
.bo-practical,
.bo-login-block,
.bo-faq,
.bo-reviews,
.bo-slots,
.bo-keys {
  padding: clamp(16px, 2.2vw, 24px);
}

.bo-overview-table,
.bo-pay-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 10px;
}

.bo-overview-table th,
.bo-overview-table td,
.bo-pay-table th,
.bo-pay-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(120, 145, 232, 0.28);
  vertical-align: top;
}

.bo-overview-table th,
.bo-pay-table th {
  color: #f2f6ff;
  font-size: 1.02rem;
}

.bo-overview-table td,
.bo-pay-table td {
  color: #cfdbff;
}

.bo-overview-table a {
  color: var(--bo-accent-2);
}

.bo-keys p,
.bo-practical p,
.bo-pay-grid p,
.bo-pros-cons p,
.bo-login-block p,
.bo-faq p,
.bo-reviews p {
  margin: 0 0 12px;
  color: #d4dfff;
  font-size: 1.06rem;
}

.bo-keys ul,
.bo-practical ul,
.bo-pros-cons ul {
  margin: 10px 0 14px;
  padding-left: 18px;
}

.bo-keys li,
.bo-practical li,
.bo-pros-cons li {
  margin: 6px 0;
  color: #d9e3ff;
}

.bo-cta-banner {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.bo-cta-banner img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.bo-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.2vw, 24px);
  background: linear-gradient(90deg, rgba(7, 11, 34, 0.68), rgba(7, 11, 34, 0.36));
}

.bo-cta-box {
  width: min(520px, 92%);
  text-align: center;
  background: rgba(9, 16, 49, 0.82);
  border: 1px solid rgba(116, 146, 243, 0.58);
  border-radius: 16px;
  padding: clamp(16px, 2.2vw, 24px);
}

.bo-cta-box h2,
.bo-cta-box p {
  margin: 0;
}

.bo-cta-box p {
  margin-top: 10px;
  margin-bottom: 14px;
  color: #d5dfff;
}

.bo-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.bo-slot-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(102, 129, 224, 0.5);
  background: rgba(15, 24, 70, 0.92);
}

.bo-slot-media {
  position: relative;
  min-height: 180px;
}

.bo-slot-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.bo-slot-media .bo-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 148px;
  min-height: 44px;
  font-size: 1rem;
  background: rgba(9, 15, 52, 0.83);
  color: #f7fbff;
  border: 1px solid rgba(255, 212, 88, 0.66);
}

.bo-slot-media .bo-btn:hover,
.bo-slot-media .bo-btn:focus-visible {
  transform: translate(-50%, -50%) translateY(-2px);
}

.bo-slot-name {
  margin: 0;
  padding: 10px;
  text-align: center;
  font-size: 0.96rem;
  color: #dbe6ff;
}

.bo-pay-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.bo-pay-card {
  border: 1px solid rgba(106, 135, 230, 0.45);
  border-radius: 14px;
  padding: 10px;
  background: rgba(14, 26, 77, 0.65);
}

.bo-review-slider {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: stretch;
  gap: 10px;
  margin-top: 12px;
}

.bo-review-nav {
  border: 1px solid rgba(127, 154, 239, 0.58);
  background: rgba(17, 31, 84, 0.9);
  color: #eff4ff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.bo-review-nav:hover,
.bo-review-nav:focus-visible {
  background: rgba(37, 61, 146, 0.95);
}

.bo-review-viewport {
  overflow: hidden;
}

.bo-review-track {
  display: flex;
  transition: transform 0.34s ease;
}

.bo-review-card {
  flex: 0 0 100%;
  border: 1px solid rgba(111, 140, 232, 0.4);
  border-radius: 14px;
  padding: 14px;
  background: rgba(14, 25, 72, 0.88);
}

.bo-review-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  align-items: baseline;
}

.bo-review-name {
  margin: 0;
  font-size: 1.12rem;
  color: #f4f8ff;
}

.bo-review-date,
.bo-review-rate {
  margin: 0;
  color: #a8bbef;
}

.bo-calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.bo-field {
  display: grid;
  gap: 6px;
}

.bo-field label {
  color: #dce7ff;
  font-size: 1rem;
}

.bo-field input {
  width: 100%;
  border: 1px solid rgba(116, 145, 240, 0.52);
  border-radius: 11px;
  min-height: 44px;
  padding: 8px 10px;
  font-size: 1rem;
  color: #f1f6ff;
  background: rgba(7, 15, 46, 0.88);
}

.bo-field input:focus-visible {
  outline: 2px solid rgba(255, 211, 76, 0.68);
  outline-offset: 1px;
}

#stx-calculator .bo-calc-result {
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(109, 137, 232, 0.52);
  background: rgba(18, 31, 89, 0.76);
}

.bo-calc-result p {
  margin: 0;
  color: #e8f0ff;
}

.bo-calc-value {
  margin-top: 4px;
  font-size: 1.34rem;
  color: var(--bo-accent);
}

.bo-pros-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bo-pros-list,
.bo-cons-list {
  border: 1px solid rgba(106, 136, 229, 0.44);
  border-radius: 14px;
  padding: 12px;
  background: rgba(14, 25, 76, 0.75);
}

.bo-cons-list {
  border-color: rgba(215, 127, 138, 0.45);
}

.bo-pros-list h3,
.bo-cons-list h3,
.bo-practical h3,
.bo-pay-card h3,
.bo-faq h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.bo-login-frame {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.bo-login-frame img {
  width: min(100%, 380px);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(114, 142, 236, 0.45);
  box-shadow: var(--bo-shadow);
}

.bo-faq details {
  border: 1px solid rgba(111, 139, 233, 0.44);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(13, 24, 72, 0.8);
  margin: 10px 0;
}

.bo-faq summary {
  font-size: 1.1rem;
  cursor: pointer;
  color: #f5f8ff;
}

.bo-footer {
  margin-top: var(--bo-gap);
  padding: 22px var(--bo-shell-pad) 16px;
  border-top: 1px solid rgba(109, 135, 228, 0.35);
  background: rgba(5, 10, 34, 0.85);
}

.bo-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bo-footer-links a {
  color: #c7d6ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.bo-footer-links a:hover,
.bo-footer-links a:focus-visible {
  border-bottom-color: #c7d6ff;
}

.bo-footer p {
  margin: 10px 0 0;
  color: #90a7e0;
  font-size: 0.95rem;
}

.bo-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 20px));
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(117, 146, 235, 0.58);
  border-radius: 14px;
  background: rgba(7, 15, 47, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  padding: 12px 14px;
}

.bo-cookie-banner p {
  margin: 0;
  color: #d7e3ff;
}

.bo-cookie-btn {
  min-width: 160px;
  min-height: 44px;
  font-size: 1.02rem;
}

@media (max-width: 1180px) {
  :root {
    --bo-sidebar-w: 252px;
  }

  .bo-btn {
    min-width: 186px;
  }
}

@media (max-width: 960px) {
  .bo-sidebar {
    display: none;
  }

  .bo-main-shell {
    margin-left: 0;
  }

  .bo-mobile-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px var(--bo-shell-pad) 12px;
    position: sticky;
    top: 0;
    z-index: 44;
    backdrop-filter: blur(6px);
    background: rgba(8, 14, 46, 0.92);
    border-bottom: 1px solid rgba(113, 141, 236, 0.32);
  }

  .bo-mobile-head .bo-logo-link {
    width: 100%;
    justify-content: center;
  }

  .bo-mobile-head .bo-logo {
    width: min(170px, 46vw);
  }

  .bo-mobile-actions {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .bo-mobile-actions .bo-btn {
    min-width: 138px;
    min-height: 40px;
    font-size: 0.96rem;
    padding: 0 14px;
  }

  .bo-main {
    width: 100%;
  }

  .bo-hero,
  .bo-hero-image {
    min-height: 400px;
  }

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

  .bo-pay-columns,
  .bo-pros-columns,
  .bo-calculator-grid {
    grid-template-columns: 1fr;
  }

  .bo-review-slider {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
  }

  .bo-review-nav {
    border-radius: 8px;
    width: 30px;
    min-height: 60px;
    font-size: 1.2rem;
  }

  .bo-overview-table th,
  .bo-overview-table td,
  .bo-pay-table th,
  .bo-pay-table td {
    font-size: 0.88rem;
    padding: 8px 8px;
    word-break: break-word;
  }

  .bo-overview-table,
  .bo-pay-table {
    font-size: 0.88rem;
    table-layout: fixed;
  }

  .bo-cookie-banner {
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .bo-cookie-btn {
    width: 100%;
    min-width: 0;
  }

  body.bo-cookie-open .bo-main-shell {
    padding-bottom: 146px;
  }
}

@media (max-width: 760px) {
  .bo-hero,
  .bo-hero-image {
    min-height: 430px;
  }

  .bo-hero-cta,
  .bo-cta-box {
    width: 94%;
    padding: 14px;
  }

  .bo-title-xl {
    font-size: clamp(1.65rem, 7.4vw, 2.15rem);
    line-height: 1.06;
  }

  .bo-hero-cta p {
    margin: 10px 0 14px;
    font-size: 1rem;
  }

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

  .bo-slot-media,
  .bo-slot-media img {
    min-height: 168px;
  }

  .bo-slot-media .bo-btn {
    min-width: 132px;
    min-height: 40px;
  }
}

@media (min-width: 1080px) {
  .bo-review-card {
    flex-basis: 50%;
  }
}
