.ba-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  font-family: var(--ba-font);
}

.ba-header {
  margin: 18px auto 0;
  padding: var(--ba-header-padding-y) var(--ba-header-padding-x);
  min-height: var(--ba-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  color: var(--ba-text);
  position: relative;
  overflow: hidden;
  background-color: var(--ba-header-bg);
  background-image: var(--ba-header-bg-image), linear-gradient(135deg, var(--ba-dark), #20232b);
  background-size: var(--ba-header-bg-size), cover;
  background-position: var(--ba-header-bg-position), center;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid rgba(243, 210, 122, .2);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .16);
}

.ba-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--ba-header-overlay));
  pointer-events: none;
}

.ba-header > * {
  position: relative;
  z-index: 1;
}

.ba-ticker {
  margin: 0 auto 18px;
  overflow: hidden;
  color: var(--ba-ticker-text);
  background: var(--ba-ticker-bg);
  border: 1px solid rgba(243, 210, 122, .18);
  border-top: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .1);
}

.ba-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  white-space: nowrap;
  animation: baTicker var(--ba-ticker-speed) linear infinite;
}

.ba-ticker:hover .ba-ticker-track {
  animation-play-state: paused;
}

.ba-ticker-item {
  font-weight: 800;
  opacity: .92;
}

.ba-ticker-separator {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--ba-primary);
  box-shadow: 0 0 0 1px rgba(243, 210, 122, .24);
}

.ba-ticker-separator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes baTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

.ba-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ba-text);
  text-decoration: none;
}

.ba-brand img,
.ba-logo-mark {
  width: 58px;
  height: 58px;
  width: var(--ba-logo-width);
  height: var(--ba-logo-height);
  object-fit: cover;
  border-radius: var(--ba-logo-radius);
  transform: translate(var(--ba-logo-offset-x), var(--ba-logo-offset-y));
  background: var(--ba-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.ba-brand strong {
  display: block;
  font-size: var(--ba-brand-title-size);
  line-height: 1.1;
}

.ba-brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: var(--ba-brand-tagline-size);
}

.ba-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ba-nav-right .ba-nav {
  justify-content: flex-start;
}

.ba-nav-left .ba-nav {
  justify-content: flex-end;
}

.ba-layout-logo-top,
.ba-layout-nav-top,
.ba-layout-stacked {
  grid-template-columns: 1fr;
}

.ba-layout-logo-top .ba-brand,
.ba-layout-nav-top .ba-brand,
.ba-layout-stacked .ba-brand {
  justify-self: center;
}

.ba-layout-logo-top .ba-brand {
  grid-row: 1;
}

.ba-layout-logo-top .ba-nav {
  grid-row: 2;
}

.ba-layout-nav-top .ba-nav {
  grid-row: 1;
}

.ba-layout-nav-top .ba-brand {
  grid-row: 2;
}

.ba-layout-stacked .ba-nav,
.ba-layout-stacked .ba-cta {
  justify-self: center;
}

.ba-brand-center .ba-brand {
  justify-self: center;
}

.ba-brand-left .ba-brand {
  grid-column: 3;
  justify-self: end;
}

.ba-brand-left .ba-nav {
  grid-column: 2;
}

.ba-brand-left .ba-cta {
  grid-column: 1;
  justify-self: start;
}

.ba-nav-item {
  position: relative;
  display: inline-flex;
}

.ba-nav a,
.ba-cta,
.ba-main-button,
.ba-ghost-button,
.ba-social-strip a {
  min-height: var(--ba-nav-button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: var(--ba-nav-button-radius);
  text-decoration: none;
  font-weight: 800;
  font-size: var(--ba-nav-font-size);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.ba-nav a {
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .12);
}

.ba-nav-caret {
  font-size: .8em;
  opacity: .7;
}

.ba-submenu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  display: grid;
  gap: 6px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  border-radius: 16px;
  background: rgba(17, 19, 24, .98);
  border: 1px solid rgba(243, 210, 122, .22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 20;
}

.ba-submenu-boxed .ba-submenu {
  border-radius: 6px;
  background: #fff;
}

.ba-submenu-boxed .ba-submenu a {
  color: #15171d;
  border-color: rgba(17, 19, 24, .08);
}

.ba-submenu-compact .ba-submenu {
  min-width: 180px;
  padding: 6px;
  border-radius: 10px;
}

.ba-submenu-compact .ba-submenu a {
  min-height: 32px;
  padding: 6px 10px;
  font-size: calc(var(--ba-nav-font-size) - 1px);
}

.ba-submenu-gold .ba-submenu {
  background: linear-gradient(145deg, #9f7a2d, #2a2112);
  border-color: rgba(243, 210, 122, .55);
}

.ba-submenu-gold .ba-submenu a {
  color: #fff7d6;
  border-color: rgba(255, 255, 255, .18);
}

.ba-submenu a {
  justify-content: flex-start;
  min-height: 38px;
  border-radius: 12px;
  white-space: nowrap;
}

.ba-nav-item:hover .ba-submenu,
.ba-nav-item:focus-within .ba-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ba-cta,
.ba-main-button {
  color: #171717;
  background: linear-gradient(135deg, var(--ba-accent), #fff0b4);
  border: 0;
}

.ba-ghost-button {
  color: var(--ba-text);
  border: 1px solid rgba(255, 255, 255, .24);
}

.ba-nav a:hover,
.ba-cta:hover,
.ba-main-button:hover,
.ba-ghost-button:hover,
.ba-social-strip a:hover {
  transform: translateY(-1px);
}

.ba-home {
  margin-top: 18px;
  margin-bottom: 28px;
}

.ba-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  gap: 26px;
  align-items: stretch;
  padding: var(--ba-hero-padding);
  color: var(--ba-text);
  position: relative;
  overflow: hidden;
  background-color: var(--ba-hero-bg);
  background-image:
    var(--ba-hero-bg-image),
    radial-gradient(circle at top right, rgba(243, 210, 122, .26), transparent 38%),
    linear-gradient(135deg, var(--ba-dark), #111318 72%, #090a0d);
  background-size: var(--ba-hero-bg-size), auto, cover;
  background-position: var(--ba-hero-bg-position), top right, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  border: 1px solid rgba(243, 210, 122, .22);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
}

.ba-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--ba-hero-overlay));
  pointer-events: none;
}

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

.ba-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(159, 122, 45, .28);
  color: var(--ba-accent);
  font-weight: 900;
}

.ba-hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(32px, 5vw, var(--ba-hero-title-size));
  line-height: 1.08;
  letter-spacing: 0;
}

.ba-hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .76);
  font-size: var(--ba-hero-text-size);
  line-height: 1.9;
}

.ba-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ba-video-card {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto !important;
  min-height: auto;
  max-height: none;
  overflow: hidden;
  position: relative;
  background: #0d0f14;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.ba-hero-video-slider {
  grid-template-columns: 1fr;
}

.ba-video-stage {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.ba-video-card-wide {
  width: min(100%, 980px);
  height: auto !important;
  min-height: auto;
}

.ba-video-card-wide iframe,
.ba-video-card-wide .ba-hero-video-track {
  height: 100% !important;
  min-height: 0;
}

.ba-video-thumbs {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ba-video-thumbs span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  color: var(--ba-accent);
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(243, 210, 122, .18);
  font-weight: 800;
}

.ba-hero-video-track {
  position: relative;
  height: 100%;
  min-height: 0;
}

.ba-hero-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-hero-video.is-active {
  display: block;
  height: 100%;
}

.ba-hero-video-controls {
  position: absolute;
  inset-inline: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #fff;
  pointer-events: none;
}

.ba-hero-video-controls button {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #111318;
  background: var(--ba-accent);
  cursor: pointer;
}

.ba-hero-video-controls span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  font-weight: 800;
}

.ba-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 0;
}

.ba-video-placeholder {
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: rgba(255, 255, 255, .66);
  text-align: center;
}

.ba-social-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  margin: 16px 0 22px;
}

.ba-social-strip a {
  color: #fff;
  background: #20232b;
  border: 1px solid rgba(159, 122, 45, .38);
}

.ba-social-strip span,
.ba-footer-social a {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ba-primary);
  color: #fff;
  font-weight: 900;
}

.ba-channel-videos {
  margin: 18px 0 24px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #12151c, #202633);
  border: 1px solid rgba(243, 210, 122, .2);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .12);
}

.ba-channel-videos-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.ba-channel-videos-head span {
  color: var(--ba-accent);
  font-size: 23px;
  font-weight: 900;
}

.ba-channel-videos-head a {
  color: #171717;
  background: var(--ba-accent);
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.ba-channel-videos-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.ba-channel-card {
  overflow: hidden;
  background: #1b2029;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .18s ease, border-color .18s ease;
}

.ba-channel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 210, 122, .48);
}

.ba-channel-card a {
  display: grid;
  color: #fff;
  text-decoration: none;
}

.ba-channel-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #101217;
}

.ba-channel-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ba-channel-thumb b {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #111318;
  background: var(--ba-accent);
}

.ba-channel-card strong {
  min-height: 86px;
  display: block;
  padding: 12px;
  font-size: 15px;
  line-height: 1.55;
}

.ba-social-panels {
  margin: 18px 0 26px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(243, 210, 122, .12), transparent 34%),
    linear-gradient(135deg, #12151c, #1d222d);
  border: 1px solid rgba(243, 210, 122, .2);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .14);
}

.ba-social-panels-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.ba-social-panels-head span {
  color: var(--ba-accent);
  font-weight: 900;
}

.ba-social-panels-head h2 {
  margin: 0;
  font-size: 26px;
}

.ba-social-panels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ba-social-panel {
  overflow: hidden;
  background: #f8fafc;
  color: #15171d;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.ba-social-panel-media {
  min-height: 138px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), transparent),
    #222833;
}

.ba-social-panel-media span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, .34);
  font-size: 34px;
  font-weight: 900;
}

.ba-social-pink .ba-social-panel-media {
  background: linear-gradient(135deg, #9b2c7a, #f05a9d);
}

.ba-social-cyan .ba-social-panel-media {
  background: linear-gradient(135deg, #111827, #00d4ff);
}

.ba-social-blue .ba-social-panel-media {
  background: linear-gradient(135deg, #173b8f, #4b8dff);
}

.ba-social-slate .ba-social-panel-media {
  background: linear-gradient(135deg, #111827, #475569);
}

.ba-social-panel-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.ba-social-panel-body strong {
  font-size: 22px;
}

.ba-social-panel-body p {
  margin: 0;
  color: #667085;
  font-weight: 800;
}

.ba-social-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ba-social-panel-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
}

.ba-social-view {
  color: #102018;
  background: #7ee0a8;
}

.ba-social-download {
  color: #9d2525;
  background: #fff;
  border: 1px solid #c93d3d;
}

.ba-social-panel-actions a.is-disabled {
  opacity: .38;
  pointer-events: none;
  filter: grayscale(1);
}

.ba-slider {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, .1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.ba-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ba-slider h2 {
  margin: 0;
  font-size: 24px;
}

.ba-slider button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ba-dark);
  cursor: pointer;
}

.ba-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.ba-slide {
  scroll-snap-align: start;
  background: #f6f6f6;
  border: 1px solid rgba(17, 19, 24, .08);
}

.ba-slide a {
  display: block;
  color: #15171d;
  text-decoration: none;
}

.ba-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.ba-slide strong {
  display: block;
  padding: 14px;
  line-height: 1.6;
}

.ba-footer {
  margin-top: 34px;
  padding: var(--ba-footer-padding) 0;
  color: var(--ba-footer-text);
  background: linear-gradient(135deg, var(--ba-footer-bg), var(--ba-dark));
}

.ba-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr auto;
  align-items: center;
  gap: 18px;
}

.ba-footer-brand {
  display: grid;
  gap: 6px;
}

.ba-footer-logo-center .ba-footer-brand {
  justify-items: center;
  text-align: center;
}

.ba-footer-logo-left .ba-footer-brand {
  justify-items: end;
  text-align: left;
}

.ba-footer strong {
  display: block;
  font-size: 24px;
}

.ba-footer-logo {
  width: var(--ba-logo-width);
  height: var(--ba-logo-height);
  object-fit: cover;
  border-radius: var(--ba-logo-radius);
  margin-bottom: 10px;
}

.ba-footer p {
  margin: 6px 0 0;
  color: color-mix(in srgb, var(--ba-footer-text), transparent 35%);
}

.ba-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ba-footer-social a {
  text-decoration: none;
}

.ba-footer-links {
  display: grid;
  gap: 8px;
}

.ba-footer-links a {
  color: var(--ba-footer-text);
  text-decoration: none;
  opacity: .78;
  font-weight: 800;
}

.ba-footer-links a:hover {
  opacity: 1;
  color: var(--ba-accent);
}

.ba-newsletter {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(243, 210, 122, .18);
}

.ba-newsletter p {
  margin: 0;
}

.ba-newsletter div {
  display: flex;
  gap: 6px;
}

.ba-newsletter input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 10px 12px;
}

.ba-newsletter button {
  border: 0;
  padding: 10px 14px;
  color: #171717;
  background: var(--ba-accent);
  font-weight: 900;
  cursor: pointer;
}

.ba-footer-copy {
  opacity: .7;
}

.ba-footer-center,
.ba-footer-stacked {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.ba-footer-center .ba-footer-social,
.ba-footer-stacked .ba-footer-social {
  justify-content: center;
}

@media (max-width: 900px) {
  .ba-header,
  .ba-hero,
  .ba-footer-grid {
    grid-template-columns: 1fr;
  }

  .ba-newsletter div {
    flex-direction: column;
  }

  .ba-nav {
    justify-content: flex-start;
  }

  .ba-social-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-social-panels-head {
    display: grid;
  }

  .ba-social-panels-grid {
    grid-template-columns: 1fr;
  }

  .ba-channel-videos-head {
    display: grid;
  }

  .ba-channel-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-slider-track {
    grid-auto-columns: minmax(240px, 80%);
  }

  .ba-video-thumbs {
    grid-template-columns: 1fr;
  }
}
