@charset "UTF-8";
/*
Theme Name: Theme 2.0
Theme URI: https://onlineradiohub.com
Author: Online Radio Hub team
Description: Live streaming of entire radio stations around the globe.
Version: 2.0
Text Domain: radio
*/

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --clr-bg: #ffffff;
  --clr-surface: #f6f7f9;
  --clr-surface-2: #eef0f4;
  --clr-border: #e8eaed;
  --clr-accent: #e53935;
  --clr-accent-2: #d32f2f;
  --clr-text: #1a1a1a;
  --clr-muted: #6b7280;
  --clr-link: #1a6fb8;
  --clr-nav-hover: rgba(0, 0, 0, 0.06);
  --clr-sidebar-bg: #f6f7f9;
  --sidebar-w: 240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
  --transition: 0.22s ease;
  --font: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --player-bg: #ffffff;
  --player-border: rgba(0, 0, 0, 0.08);
  --footer-bg: #1a1d2e;
}



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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--clr-bg) !important;
  color: var(--clr-text) !important;
  font-family: var(--font) !important;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
  margin: 0;
}

a {
  color: var(--clr-link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-accent-2);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.3;
}

h1 {
  font-size: 28px;
  font-weight: 800;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

address {
  margin-bottom: 0;
}

.clear {
  float: none;
  clear: both;
}

/* ── Bootstrap dark overrides ───────────────────────────────── */
.bg-body {
  background-color: var(--clr-surface) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-card) !important;
}

.text-muted {
  color: var(--clr-muted) !important;
}

.border-bottom {
  border-color: var(--clr-border) !important;
}

/* ── Legacy radio-col3 (kept for any widget output) ─────────── */
.radio-col3 {
  display: none;
}

/* hidden — use .orh-card instead */

/* ── Old navbar removed — replaced by left sidebar in nav.php ── */


/* ── Hero / Trending / Old catalog styles removed ─────────── */
/* Replaced by .orh-page-header, .orh-trending, .orh-section-row */

/* Legacy section title (kept for any remaining references) */
.rd-catalog__section {
  padding: 0;
  font-size: 15px;
}

.section-spacer {
  height: 0;
}

.rd-catalog__section>ul>li:not(:last-child)::after {
  display: none;
}

/* "Show All" link */
.rd-catalog-common {
  margin-top: 16px;
  text-align: center;
}

/* ── Province / child category link pills ───────────────────── */
.provins-link {
  margin: 12px 0;
}

.provins-link ul {
  display: flex !important;
  flex-wrap: wrap;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 8px;
}

.provins-link ul li {
  float: none;
  padding: 0;
}

.provins-link ul li a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--clr-border) !important;
  color: var(--clr-muted);
  font-size: 13px;
  text-decoration: none !important;
  transition: all var(--transition);
}

.provins-link ul li a:hover {
  background: rgba(229, 57, 53, 0.12);
  border-color: var(--clr-accent) !important;
  color: var(--clr-accent-2);
}

/* ── Card panel (replaces my-3 p-3 bg-body rounded shadow-sm) ─ */
.orh-card-panel,
.my-3.p-3.bg-body.rounded.shadow-sm {
  background: var(--clr-surface) !important;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg) !important;
  padding: 20px !important;
  box-shadow: var(--shadow-card) !important;
}

/* ── Main heading (archive pages) ───────────────────────────── */
h1.main-heading {
  color: var(--clr-text);
  padding: 24px 0 8px;
  text-align: center;
}

/* ── Country list page ──────────────────────────────────────── */
.cntry-list-pg {
  padding: 0;
  font-size: 15px;
}

.cntry-list-pg ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.cntry-list-pg ul li {
  display: block;
  padding: 5px;
}

.cntry-list-pg ul li a {
  color: var(--clr-text);
  text-decoration: none;
}

.cntry-list-pg ul li ul li {
  display: inline-block;
  padding: 5px;
}

.cntry-list-pg ul li ul li a {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
  color: var(--clr-link);
  font-size: 13px;
  transition: all var(--transition);
}

.cntry-list-pg ul li ul li a:hover {
  background: rgba(229, 57, 53, 0.1);
  border-color: var(--clr-accent);
  color: var(--clr-accent-2);
}

.cntry-list-pg>ul>li>ul>li:not(:last-child)::after {
  display: none;
}

/* ── Tab content ────────────────────────────────────────────── */
.tab-content {
  width: 100%;
}

.tab-content ul {
  display: flex !important;
  flex-wrap: wrap;
  list-style: none !important;
  padding: 0;
  gap: 8px;
}

.tab-content ul li {
  float: none;
  padding: 0;
}

.tab-content ul li a {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  color: var(--clr-link);
  font-size: 14px;
  transition: all var(--transition);
}

.tab-content ul li a:hover {
  background: rgba(229, 57, 53, 0.12);
  color: var(--clr-accent-2);
  border-color: var(--clr-accent);
}

/* ── Radio player grid (single.php) ─────────────────────────── */
.parent-r-player {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-column-gap: 24px;
  align-items: start;
  margin: 16px 0;
}

.rplayer-div1 {
  grid-area: 1 / 1 / 2 / 2;
}

.rplayer-div2 {
  grid-area: 1 / 2 / 2 / 3;
}

.rplayer-div1 img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

/* ── Station page play button (top) ─────────────────────────── */
.orh-page-btn {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  border: none;
  border-radius: 28px;
  height: 46px;
  padding: 0 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.35);
}

.orh-page-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.orh-page-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

.orh-page-btn span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ── Station details ────────────────────────────────────────── */
.orh-station-header {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.orh-station-header h1 {
  margin-bottom: 8px;
}

.orh-station-tags a {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.3);
  color: var(--clr-accent-2);
  font-size: 12px;
  font-weight: 600;
  margin: 2px;
  transition: all var(--transition);
}

.orh-station-tags a:hover {
  background: rgba(229, 57, 53, 0.25);
}

/* ── Custom fields / contact details ────────────────────────── */
.custom-fields {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
}

.custom-fields strong {
  color: var(--clr-muted);
  font-weight: 600;
}

.custom-fields a {
  color: var(--clr-link);
}

.custom-fields a:hover {
  color: var(--clr-accent-2);
}

/* ── Sidebar ────────────────────────────────────────────────── */
.orh-sidebar-widget {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.orh-sidebar-widget .orh-widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.orh-sidebar-widget .orh-widget-title a {
  color: var(--clr-text);
}

.orh-sidebar-widget .d-flex.text-muted {
  color: var(--clr-muted) !important;
}

.orh-sidebar-widget a {
  color: var(--clr-text);
  font-size: 14px;
}

.orh-sidebar-widget a:hover {
  color: var(--clr-accent-2);
}

/* ── Footer ─────────────────────────────────────────────────── */
.orh-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 28px;
  color: var(--clr-muted);
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.orh-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.orh-footer a:hover {
  color: #fff;
}

.orh-footer__brand {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.orh-footer__tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 0;
}

.orh-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.orh-footer__links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color var(--transition);
}

.orh-footer__links li a:hover {
  color: #fff;
}

.orh-footer__social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.orh-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  transition: all var(--transition);
}

.orh-footer__social a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

.orh-footer__divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 28px 0 18px;
}

.orh-footer__bottom {
  font-size: 12px;
  color: var(--clr-muted);
}

/* back to top */
.orh-back-top {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-muted);
  transition: color var(--transition);
}

.orh-back-top:hover {
  color: var(--clr-text);
}

/* ── 404 Page ───────────────────────────────────────────────── */
.orh-404 {
  text-align: center;
  padding: 60px 20px;
}

.orh-404__code {
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.orh-404__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.orh-404__msg {
  color: var(--clr-muted);
  margin-bottom: 28px;
}

.orh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  color: #fff !important;
  border-radius: 28px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.35);
}

.orh-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ── Win number table ───────────────────────────────────────── */
.win-number table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: var(--clr-surface-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.win-number th {
  background: var(--clr-surface);
  color: var(--clr-text);
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid var(--clr-border);
}

.win-number td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-size: 14px;
}

/* ── AIOSEO breadcrumbs ─────────────────────────────────────── */
.aioseo-breadcrumbs {
  font-size: 12px !important;
  color: var(--clr-muted) !important;
}

.aioseo-breadcrumbs a {
  color: var(--clr-muted) !important;
}

/* ── Misc plugin overrides ──────────────────────────────────── */
.wprpsponsors {
  display: none !important;
}

a.wprperrorsform {
  color: #dc3545 !important;
}

.wprperrorsform {
  background: none !important;
  padding: 0 !important;
}

/* ── Page description ───────────────────────────────────────── */
.page_discription,
.category-description {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0;
  color: var(--clr-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 576px) {
  .col-2 {
    width: 33% !important;
  }

  .parent-r-player {
    grid-template-columns: 90px 1fr;
    grid-column-gap: 14px;
  }
}

@media (max-width: 768px) {
  .orh-footer .row>div+div {
    margin-top: 24px;
  }
}

/* ── Player z-index ─────────────────────────────────────────── */
#player {
  z-index: 1 !important;
}