:root {
  --bosr-bg: #070910;
  --bosr-bg-soft: #101521;
  --bosr-panel: rgba(14, 20, 33, 0.74);
  --bosr-panel-strong: rgba(18, 26, 43, 0.9);
  --bosr-line: rgba(255, 255, 255, 0.14);
  --bosr-line-hot: rgba(0, 229, 255, 0.46);
  --bosr-text: #f6fbff;
  --bosr-muted: #a9b8c7;
  --bosr-cyan: #00e5ff;
  --bosr-pink: #ff2bd6;
  --bosr-purple: #8d2cff;
  --bosr-blue: #2f6dff;
  --bosr-lime: #b5ff35;
  --bosr-orange: #ffb000;
  --bosr-danger: #ff477e;
  --bosr-radius: 8px;
  --bosr-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  --bosr-glow: 0 0 24px rgba(0, 229, 255, 0.34), 0 0 42px rgba(255, 43, 214, 0.2);
}

@keyframes bosr-border-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bosr-bg);
  color: var(--bosr-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 229, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 82% 16%, rgba(255, 43, 214, 0.16), transparent 30rem),
    linear-gradient(135deg, #070910 0%, #0d1320 46%, #080a12 100%);
  color: var(--bosr-text);
  font-size: 15px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), transparent 78%);
}

a {
  color: var(--bosr-cyan);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus {
  color: #ffffff;
}

img,
iframe,
object,
embed,
video {
  max-width: 100%;
  height: auto;
}

input,
select,
textarea,
button {
  max-width: 100%;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bosr-radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--bosr-text);
  padding: 9px 11px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--bosr-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.16);
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button {
  width: auto;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--bosr-radius);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.24), rgba(255, 43, 214, 0.18));
  color: var(--bosr-text);
  padding: 9px 14px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td,
th {
  border-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  vertical-align: top;
}

.bosr-shell {
  min-height: 100vh;
}

.bosr-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-bottom: 1px solid var(--bosr-line);
}

.bosr-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(7, 9, 16, 0.26), rgba(7, 9, 16, 0.92)),
    url("images/bosr-hero-radio-studio.png") center / cover no-repeat,
    repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.08) 0 1px, transparent 1px 120px),
    linear-gradient(120deg, rgba(0, 229, 255, 0.22), transparent 32%, rgba(255, 43, 214, 0.18) 68%, rgba(181, 255, 53, 0.1));
}

.bosr-hero__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(0, 229, 255, 0.3) 8.1%, transparent 8.4% 42%, rgba(255, 43, 214, 0.24) 42.2%, transparent 42.6%),
    linear-gradient(180deg, transparent, rgba(7, 9, 16, 0.86));
  opacity: 0.72;
}

.bosr-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
}

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

.bosr-brand__mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--bosr-line-hot);
  border-radius: var(--bosr-radius);
  background: rgba(4, 12, 21, 0.64);
  color: var(--bosr-cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
  box-shadow: var(--bosr-glow);
  overflow: hidden;
}

.bosr-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bosr-brand__mark--wide {
  width: clamp(190px, 18vw, 320px);
  height: 82px;
}

.bosr-brand__mark--wide img {
  object-fit: contain;
  padding: 4px;
}

.bosr-brand__text {
  display: grid;
  line-height: 1.2;
}

.bosr-brand__text strong {
  font-size: 16px;
}

.bosr-brand__text small {
  color: var(--bosr-muted);
  font-size: 12px;
}

.bosr-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bosr-menu a,
.bosr-nav__item {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--bosr-radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--bosr-text);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.bosr-menu a:hover,
.bosr-menu a:focus {
  border-color: var(--bosr-cyan);
  color: #ffffff;
  transform: translateY(-1px);
}

.bosr-menu-toggle {
  display: none;
}

.bosr-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

.bosr-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(181, 255, 53, 0.32);
  border-radius: 999px;
  background: rgba(181, 255, 53, 0.09);
  color: var(--bosr-lime);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bosr-hero h1 {
  max-width: 860px;
  margin: 18px 0 12px;
  color: #ffffff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(0, 229, 255, 0.42);
}

.bosr-hero p {
  max-width: 650px;
  margin: 0;
  color: #d6e2ef;
  font-size: 18px;
}

.bosr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bosr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--bosr-radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--bosr-text);
  padding: 10px 16px;
  font-weight: 800;
}

.bosr-button--primary {
  border-color: rgba(0, 229, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.8), rgba(255, 43, 214, 0.7));
  box-shadow: var(--bosr-glow);
}

.bosr-now-card,
.bosr-content-card,
.bosr-panel {
  position: relative;
  border: 1px solid var(--bosr-line);
  border-radius: var(--bosr-radius);
  background: var(--bosr-panel);
  box-shadow: var(--bosr-shadow);
  backdrop-filter: blur(18px);
}

.bosr-now-card::after,
.bosr-content-card::after,
.bosr-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(115deg, var(--bosr-pink), var(--bosr-purple), var(--bosr-blue), var(--bosr-pink));
  background-size: 260% 260%;
  opacity: 0.42;
  animation: bosr-border-flow 5.5s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bosr-now-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
}

.bosr-now-card__image {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  height: 150px;
  margin: -24px -24px 18px;
  object-fit: cover;
  border-bottom: 1px solid var(--bosr-line);
}

.bosr-now-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.16), transparent 38%, rgba(255, 43, 214, 0.18));
}

.bosr-now-card > * {
  position: relative;
}

.bosr-now-card strong {
  display: block;
  margin-top: 30px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 28px;
}

.bosr-live-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bosr-danger);
  box-shadow: 0 0 0 8px rgba(255, 71, 126, 0.16), 0 0 28px rgba(255, 71, 126, 0.75);
}

.bosr-stream-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--bosr-lime);
  font-weight: 800;
}

.bosr-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) minmax(240px, 340px);
  gap: 18px;
  width: min(1440px, calc(100% - 32px));
  margin: 22px auto 0;
  align-items: start;
}

.bosr-layout__main {
  min-width: 0;
}

.bosr-content-card,
.bosr-panel {
  overflow: hidden;
  margin: 0 0 18px;
}

.bosr-card-head,
.bosr-panel__head {
  border-bottom: 1px solid var(--bosr-line);
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.13), rgba(255, 43, 214, 0.1));
  padding: 14px 16px;
}

.bosr-card-head h2,
.bosr-panel__head h3 {
  margin: 0;
  color: #ffffff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

.bosr-card-body,
.bosr-panel__body {
  padding: 16px;
}

.bosr-card-body > :first-child,
.bosr-panel__body > :first-child {
  margin-top: 0;
}

.bosr-card-body > :last-child,
.bosr-panel__body > :last-child {
  margin-bottom: 0;
}

.bosr-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--bosr-line);
  color: var(--bosr-muted);
  padding: 12px 16px;
  font-size: 13px;
}

.bosr-panel__body ul,
.bosr-card-body ul {
  padding-left: 20px;
}

.bosr-panel__body li,
.bosr-card-body li {
  margin: 4px 0;
}

.bosr-panel img {
  border-radius: 6px;
}

.side-label,
.tbl-border,
.tbl,
.textbox,
.button {
  max-width: 100%;
}

.textbox {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: var(--bosr-radius) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--bosr-text) !important;
}

.tbl-border,
.tbl1,
.tbl2 {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--bosr-text);
}

.quote,
.admin-message,
.info-message,
.warning-message {
  border: 1px solid var(--bosr-line);
  border-radius: var(--bosr-radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--bosr-text);
  padding: 12px;
}

.bosr-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--bosr-cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.75);
}

.bosr-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1440px, calc(100% - 32px));
  margin: 22px auto 0;
  border-top: 1px solid var(--bosr-line);
  color: var(--bosr-muted);
  padding: 22px 0 34px;
  font-size: 13px;
}

.bosr-footer strong {
  color: var(--bosr-text);
}

.bosr-footer__credit,
.bosr-footer__visits {
  color: var(--bosr-muted);
}

.bosr-footer__credit a,
.bosr-license a {
  color: var(--bosr-pink);
}

.bosr-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bosr-license {
  flex-basis: 100%;
  color: #7f8da0;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .bosr-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  }

  .bosr-layout__left {
    grid-column: 1 / -1;
    columns: 2 260px;
    column-gap: 18px;
  }

  .bosr-layout__left .bosr-panel {
    break-inside: avoid;
  }
}

@media (max-width: 860px) {
  .bosr-topbar {
    align-items: flex-start;
  }

  .bosr-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    border-color: var(--bosr-line-hot);
  }

  .bosr-menu {
    display: none;
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    z-index: 10;
    border: 1px solid var(--bosr-line);
    border-radius: var(--bosr-radius);
    background: rgba(8, 12, 21, 0.96);
    padding: 10px;
    box-shadow: var(--bosr-shadow);
  }

  .bosr-menu.is-open {
    display: grid;
  }

  .bosr-menu a,
  .bosr-nav__item {
    justify-content: center;
  }

  .bosr-hero__content {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .bosr-now-card {
    min-height: 170px;
  }

  .bosr-layout {
    grid-template-columns: 1fr;
  }

  .bosr-layout__left {
    columns: 1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .bosr-topbar,
  .bosr-hero__content,
  .bosr-layout,
  .bosr-footer {
    width: min(100% - 20px, 1440px);
  }

  .bosr-brand__text {
    display: none;
  }

  .bosr-brand__mark {
    width: 58px;
    height: 58px;
  }

  .bosr-brand__mark--wide {
    width: min(58vw, 240px);
    height: 62px;
  }

  .bosr-hero {
    min-height: 390px;
  }

  .bosr-hero h1 {
    font-size: 40px;
  }

  .bosr-hero p {
    font-size: 16px;
  }

  .bosr-card-head,
  .bosr-panel__head,
  .bosr-card-body,
  .bosr-panel__body {
    padding: 12px;
  }
}
