/* Base layout – matches BlackBriar colors */
@import url('https://fonts.googleapis.com/css?family=Unica+One|Source+Sans+Pro:300,400,700');

:root {
  --bb-bg: #343540;
  --bb-bg-dark: #2c2f3a;
  --bb-accent: #40e693;
  --bb-text: #f0f0f0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--bb-bg);
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--bb-text);
  display: flex;
  flex-direction: column;
}

/* Top bar header */
.bb-header {
  background: #ffffff;
  color: #3f3f4b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bb-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-logo {
  height: 40px;
  width: auto;
}

.bb-title {
  font-family: 'Unica One', cursive;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bb-nav {
  display: flex;
  gap: 16px;
  font-family: 'Unica One', cursive;
  font-size: 16px;
  letter-spacing: 1px;
}

.bb-nav a {
  color: #3f3f4b;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.bb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--bb-accent);
  transition: width 0.2s ease;
}

.bb-nav a:hover::after {
  width: 100%;
}

/* Main page layout */
.bb-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

.bb-card {
  background: var(--bb-bg-dark);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  padding: 32px 24px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* light geometric accent */
.bb-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center,
                               rgba(64,230,147,0.35),
                               transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.bb-card h1 {
  font-family: 'Unica One', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #ffffff;
}

.bb-card h2 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--bb-accent);
}

.bb-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #c8c9d0;
  margin-bottom: 16px;
}

.bb-status-line {
  font-family: 'Unica One', cursive;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9fa1b5;
  margin-bottom: 12px;
}

/* Audio player */
.bb-player {
  margin: 16px 0 8px;
}

.bb-player audio {
  width: 100%;
  outline: none;
}

/* Small link buttons below */
.bb-links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bb-links a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--bb-accent);
}

/* Footer */
.bb-footer {
  text-align: center;
  padding: 12px 10px 18px;
  font-size: 12px;
  color: #9fa1b5;
}

/* Responsive */
@media (max-width: 600px) {
  .bb-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .bb-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .bb-card {
    padding: 24px 18px;
  }
  .bb-card h1 {
    font-size: 26px;
  }
}
.bb-iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}
.bb-stats-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  background: rgba(0,0,0,0.2);
}

.bb-stats-table th,
.bb-stats-table td {
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.bb-stats-table th {
  text-align: left;
  background: rgba(0,0,0,0.35);
  color: var(--bb-accent);
  font-weight: 600;
}

.bb-stats-table tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}
.bb-stats-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  background: rgba(0,0,0,0.2);
}

.bb-stats-table th,
.bb-stats-table td {
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.bb-stats-table th {
  text-align: left;
  background: rgba(0,0,0,0.35);
  color: var(--bb-accent);
  font-weight: 600;
}

.bb-stats-table tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}
/* Links and lists inside the injected status content */
.bb-stats-table a,
.bb-status-inner a {
  color: var(--bb-accent);
  text-decoration: none;
}

.bb-stats-table a:hover,
.bb-status-inner a:hover {
  text-decoration: underline;
}

/* Tidy up bullet lists in the status content */
.bb-status-inner ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.bb-status-inner li {
  margin: 4px 0;
}
.bb-password-form {
  margin-top: 8px;
}

.bb-password-row {
  margin-bottom: 8px;
}

.bb-password-form input[type="password"] {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #252737;
  color: var(--bb-text);
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
}

.bb-password-form button {
  margin-top: 6px;
}

.bb-password-message {
  margin-top: 8px;
  font-size: 13px;
  color: var(--bb-accent);
}
.station-sup {
    font-size: 1.1em;       /* larger than default superscript */
    color: #21c04b;         /* green — adjust as desired */
    vertical-align: super;  /* ensures superscript alignment */
    font-weight: 600;       /* slightly bolder */
}
/* Radio ¹ / ² superscripts in the top menu */
sup.station-sup {
    font-size: 0.9em;        /* a bit larger than default superscript */
    color: #21c04b;          /* site green */
    vertical-align: baseline;/* keep the line height stable */
    position: relative;
    top: -0.4em;             /* move the number up so RADIO aligns */
    font-weight: 600;
}
