/* Base */
html, body {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #000;
}

a {
    color: #fff;
    text-decoration: none;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2px;
}

h1, h2, h3, .logo {
    font-family: 'Goldman', sans-serif;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    border-bottom: none;
    
    z-index: 1000;
}

.site-header-inner {
    display: grid;
    grid-template-columns: 162px 1fr 162px;
    align-items: center;
    height: 48px;
}

.logo img {
    display: block;
    grid-column: 1;
    width: 162px;
    height: 12px;
}

/* HEADER ACTIONS */
.header-actions {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
}

/* Desktop search */
.header-search {
    display: flex;
    align-items: center;
}

/* Hamburger */
.menu-toggle {
    position: relative;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

/* lijnen */
.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* startpositie */
.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 8px;
}

.menu-toggle span:nth-child(3) {
    top: 16px; /* 🔥 NIET bottom */
}

/* ACTIVE */
.menu-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-menu.active {
    display: block;

    position: fixed;
    top: 48px;
    left: 0;

    width: 100%;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-top: none;
    box-shadow: none;

    z-index: 9999;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 10px;
    color: #ffffff;
    margin-bottom: 12px;
}

.breadcrumbs a,
.breadcrumbs span {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

.breadcrumb-home img {
    width: 12px;
    height: 12px;
    display: block;
}

.breadcrumb-separator {
    color: #acacac;
}

/* Search */
.search-field-block {
    display: inline-block;
    background-color: #151515;
    border-radius: 4px;
    padding: 1rem;
}

.search-field-block h3 {
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
}

.search-field_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
}

.search-field-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
}

.search-form {
    display: flex;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 6px;
    width: max-content !important;
    margin: 0 !important;
    padding: 0;
}

.search-form .search-field {
    flex: 0 1 auto;
    margin: 0 !important;
    text-align: left;
    color: #b2b2b2;
    background-color: #3b3b3b;
}

.search-form .search-submit {
    flex: 0 1 auto;
    margin: 0 !important;
    padding: 0;
}

.search-form .search-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.search-field {
  flex: 1;
  padding: 6px 6px;
  font-family: 'Ubuntu', sans‑serif;
  font-size: 14px;
  border: 1px solid #151515;
  border-radius: 4px;
}

.search-field::placeholder {
  font-family: 'Ubuntu', sans‑serif;
  color: #a2a2a2;
  opacity: 1;
}

.search-field::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-field:focus {
    outline: none;
    border-color: #151515;
    background-color: #3b3b3b;
    box-shadow: none;
}
.search-submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.search-submit .search-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.search-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

.search-toggle img {
    width: 20px;
    height: 20px;
    display: block;
}

.search-results-header {
    margin-bottom: 6px;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #ffffff;
	margin-top: 16px;
    margin-bottom: 8px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 218px);
    gap: 6px;
    justify-content: start;
    margin-bottom: 6px;
}

.search-results-card {
    width: 100%;
    max-width: none;
    background-color: #262626;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5a5a5a;
    color: #fff;
}

.search-results-card-dummy {
    width: 100%;
    max-width: none;
	pointer-events: none;
}

.search-results-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.search-results-content {
    padding: 6px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}

.search-results-content h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.search-results-ad {
    grid-column: 1 / -1;
    width: 100%;
}

.ad-mobile {
    display: none;
}

.error-wrapper {
    width: 100%;
    font-family: 'Goldman', sans-serif;
    color: #fff;
    flex: 1;
	margin-bottom: 6px;
}

.error-header {
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
    display: block;
	margin-top: 16px;
    margin-bottom: 8px;
    
}

.error-grid {
    display: grid;
    grid-template-columns: repeat(4, 218px);
    gap: 6px;
    justify-content: start;
}

.error-card {
    width: 100%;
    background-color: #262626;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5a5a5a;
    color: #fff;
	margin-bottom: 12px;
}

.error-card-dummy {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
	margin-bottom: 6px;

    pointer-events: none;
    opacity: 0;          /* 🔥 maakt hem visueel weg */
}

.error-card-dummy {
    pointer-events: none;
}

.error-content-dummy {
    padding: 12px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}

.error-card.dummy {
    pointer-events: none;
}

.error-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.error-content {
    padding: 6px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}

.error-content h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Desktop search zichtbaar */
.header-search {
    display: block;
}

/* Menu knop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 10px;
}

/* Layout */
.site-content {
    display: flex;
    flex: 1;
    gap: 6px;
    margin-top: 6px;
    align-items: stretch;
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
    align-self: flex-start;
}

.sidebar-inner {
   font-family: 'Goldman', sans-serif;
}

.sidebar-block {
    background: #151515;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.sidebar-blocks {
    display: block;
}

.sidebar_title {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Sidebar items */
.div_country_quick_choice,
.div_country_quick_choice_more {
    background-color: #262626;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px;
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    min-height: 40px;
    margin-bottom: 4px;
    border: 1px solid #4f4f4f;
}

.div_country_quick_choice_more {
    justify-content: space-between;
}

.div_country_flag img,
.div_country_flag_more img {
    width: 42px;
    height: 22px;
    border-radius: 4px;
    display: block;
    margin-left: 2px;
}

.div_country_text {
    display: flex;
    align-items: center;
}

.div_country_text_more {
    text-align: right;
    white-space: nowrap;
    margin-right: 4px;
}

/* Content */
.content {
    flex: 1;
    min-width: 0;
}

.content article {
    margin-bottom: 30px;
}

.content h1 {
    margin-bottom: 12px;
}

.post-meta {
    margin-bottom: 15px;
    color: #777;
}

.post-content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: stretch;
	margin-top: 18px;
    margin-bottom: 6px;
}

.primary-content,
.secondary-content {
    flex: 1;
    min-width: 0;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.primary-content .player-block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
	position: relative;
    overflow: hidden;
	border-radius: 6px;
    box-sizing: border-box;
    border: solid thin #5a5a5a;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Player */
.player-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(40, 40, 40, 0.6);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.player-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.player-image-block {
  max-width: 226px;
  max-height: 120px;
  aspect-ratio: 226 / 120;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 26px;
}

.player-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.player-content-block {
  max-width: 84%;
  box-sizing: border-box;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}

/* Buttons */
.fav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 3;
  transition: transform 0.2s ease;
}

.fav-btn:hover {
  transform: scale(1.1);
}

.fav-btn img {
  width: 26px;
  height: 26px;
}

.share-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 3;
  transition: transform 0.2s ease;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn img {
  width: 26px;
  height: 26px;
}

.embed-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  top: 8px;
  left: 46px;
  z-index: 3;
  transition: transform 0.2s ease;
}

.embed-btn:hover {
  transform: scale(1.1);
}

.embed-btn img {
  width: 26px;
  height: 26px;
}

.secondary-content {
    font-weight: normal;

    background-color: #262626;
    border-radius: 6px;
    border: solid thin #5a5a5a;

    padding: 6px;
}

.extra_content_title {
    font-size: 14px;
    font-weight: normal;
    font-family: 'Goldman', sans-serif;
    color: #ffffff;
	margin: 0;
}

.extra_content_text {
	color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: normal;
}

.now_playing_title {
    font-size: 14px;
    font-weight: normal;
    font-family: 'Goldman', sans-serif;
    color: #ffffff;
	margin-top: 12px;
}

/* Meta */
.meta-bottom {
    margin-top: auto;
}

.geoblocking-notice {
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
	margin-top: 4px;
}

.geoblocking-notice img {
    width: 10px;
    height: 10px;
	margin-right: 4px;
}

.stream-info {
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.stream-info img {
    width: 10px;
    height: 10px;
	margin-right: 4px;
}

.broken-link {
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.broken-link img {
    width: 10px;
    height: 10px;
	margin-right: 4px;
}

.station-link {
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.station-link img {
    width: 10px;
    height: 10px;
	margin-right: 4px;
}

.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Ubuntu', sans-serif;
	font-size: 14px;
	background: #3b3b3b;
    color: #b2b2b2;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 9999;
}

.toast-notification.show {
    opacity: 1;
    pointer-events: auto;
}

/* Content Meta */
.meta-block {
    display: flex;
	width: 100%;
	background-color: #262626;
	padding-left: 2px;
	border-radius: 6px;
	box-sizing: border-box;
    border: solid;
    border-width: thin;
    border-color: #5a5a5a;
	margin-bottom: 6px;
}

.meta-box {
    flex: 0 1 auto;
    width: auto;
}

.meta-inner {
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    color: #ffffff;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
}

.post-tags a {
    display: inline-block;
    padding: 6px;
    border-radius: 6px;
    box-sizing: border-box;
    min-height: 14px;
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    background-color: #262626;
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-tags a:hover {
    background-color: #262626;
}

.post-tags-background {
    display: inline-block;
    padding: 6px;
    border-color: #151515;
    border-radius: 4px;
    box-sizing: border-box;
    min-height: 14px;
    background-color: #151515;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rating-background {
    display: inline-block;
    padding: 6px;
    border-radius: 4px;
    background-color: #151515;
    box-sizing: border-box;
    min-height: 14px;
}

.rating-system {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px;
    border-radius: 6px;
    background-color: #262626;
}

.rating-system .stars {
    display: flex;
    gap: 4px;
}

.rating-system .stars img {
    width: 14px;
    height: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.rating-system .stars img.hovered,
.rating-system .stars img.selected {
    content: url('https://cdn.nlradiostreams.nl/icon/icon-star-yellow.png');
}

.content-slider-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-top: 12px;
	margin-bottom: 6px;
}

.family-overview-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
	margin-top: 12px;
    margin-bottom: 6px;
}


/* Footer */
.site-footer {
    background: #151515;
    border-top: 1px solid #262626;
    padding: 16px 0;
}

.footer-top {
	display: flex;
  	justify-content: center;
  	text-align: center;
  	flex-wrap: wrap;
  	margin-bottom: 20px;
    color: #acacac;
}

.footer-center {
	width: fit-content;
}

.footer-column {
	flex: unset;              /* belangrijk */
  	min-width: unset;
  	min-width: 33.33%;
  	font-family: 'Ubuntu', sans-serif;  
  	color: #acacac;
}

.footer-center h3 {
  margin-bottom: 10px;
  font-size: 12px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  flex: 0 0 33.33%;
  margin: 5px 0;
  text-align: left;
}

.footer-center ul li a {
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;  
  color: #acacac;
}

.footer-center ul li a:hover {
  text-decoration: none;
}

.sections-wrapper {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.sections-wrapper h3 {
  margin-bottom: 10px;
  font-size: 12px;
  text-align: center;
  color: #acacac;
}

.sections-wrapper ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px 20px;
}

.sections-wrapper ul li {
  margin: 0;
}

.sections-wrapper ul li a {
  text-decoration: none;
}

.sections-wrapper ul li a:hover {
  text-decoration: none;
}

.footer-sections {
  font-size: 10px;
}

.site-footer-bottom {
    text-align: center;
    color: #acacac;
    font-family: 'Goldman', sans-serif;
    font-size: 10px;
}

/* Ads */
.ads_home {
    display: grid;
    width: 100%;
    padding: 6px;
    background-color: #262626;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
    margin-top: -6px;
    margin-bottom: 12px;
}

.ads_error {
    flex: 0 0 100%;
    width: 100%;
    padding: 6px;
    background-color: #262626;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
	margin-top: 6px;    
    margin-bottom: 12px;
}

.ads_overview {
    flex: 0 0 100%;
    width: 100%;
    padding: 6px;
    background-color: #262626;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
}

.ads_content {
    flex: 0 0 100%;
    width: 100%;
    padding: 6px;
    background-color: #262626;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
	margin-bottom: 6px;
}

/* Slider */
.slider-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.slider-title {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-nav {
    display: flex;
    gap: 0px;
}

.slider-nav button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    padding: 0px;
    transition: opacity 2.0s ease;
}

.slider-nav button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.slider-viewport {
    max-width: 100%;
	overflow: hidden; /* belangrijk */
}

.slider-cards {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.slider-card {
    flex: 0 0 218px;
    max-width: 218px;
    background-color: #262626;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5a5a5a;
}

.slider-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.slider-content {
    padding: 6px;
    font-size: 12px;
}

.slider-content h4 {
    margin: 0;
	font-family:  'Ubuntu', sans-serif; 
    font-size: 12px;
    font-weight: 500;
}

/* Overview */
.overview-top-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
}

.overview-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.overview-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    align-items: stretch;
}

.overview-top-card:nth-child(n+9) {
        display: none;
    }

.overview-top-title {
    display: flex;
    gap: 6px;
    align-items: center;
}

.overview-top_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 5px 0;
}

.overview-top-cards {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.overview-top-card {
	width: 100%;
    background-color: #262626;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5a5a5a;
}

.overview-top-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overview-top-content {
    padding: 6px;
    font-size: 12px;
}

.overview-top-content h4 {
    margin: 0;
	font-family:  'Ubuntu', sans-serif; 
    font-size: 12px;
    font-weight: 500;
}

.overview-bottom-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 6px;
}

.overview-bottom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.overview-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    align-items: stretch;
}

.overview-bottom-card:nth-child(n+9) {
        display: none;
    }

.overview-bottom-title {
    display: flex;
    gap: 6px;
    align-items: center;
}

.overview-bottom_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 5px 0;
}

.overview-bottom-cards {
    display: flex;
    gap: 6px;
    transition: transform 0.3s ease;
}

.overview-bottom-card {
    width: 100%;
    background-color: #262626;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5a5a5a;
}

.overview-bottom-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overview-bottom-content {
    padding: 6px;
    font-size: 12px;
}

.overview-bottom-content h4 {
    margin: 0;
	font-family:  'Ubuntu', sans-serif; 
    font-size: 12px;
    font-weight: 500;
}

.overview-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 6px;
}

.page-overview-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
	margin-top: 16px;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.page-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.overview-title {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* GRID = IDENTIEK AAN SEARCH */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 218px);
    gap: 6px;
    justify-content: start;
}

.overview-card {
    width: 100%;
    background-color: #262626;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5a5a5a;
}

.overview-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
}

.page-overview-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overview_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 5px 0;
}

.overview-content {
    padding: 6px;
    font-size: 12px;
}

.overview-content h4 {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.overview-ad {
    grid-column: 1 / -1;
}

.alphabet-pagination-block {
    flex: 0 0 100%;
    width: 100%;
    padding: 6px;
    background-color: #262626;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
	margin-bottom: 12px;
}

.alphabet-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.alphabet-pagination a {
    display: inline-block;
    padding: 0px 6px;
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;
    font-weight: normal;
}

.alphabet-pagination .current {
    display: inline-block;
    padding: 0px 6px;
    color: #b2b2b2;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;
    font-weight: normal;
}

.alphabet-pagination .disabled {
    display: inline-block;
    padding: 0px 6px;
    color: #b2b2b2;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;
    opacity: 0.6;
}

.pagination-block {
    flex: 0 0 100%;
    width: 100%;
    padding: 6px;
    background-color: #262626;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
	margin-top: 12px;
	margin-bottom: 6px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.pagination a {
    display: inline-block;
    padding: 0px 4px;
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;
    font-weight: normal;
}

.pagination .current {
    display: inline-block;
    padding: 0px 4px;
    color: #b2b2b2;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;    
    font-weight: normal;
}

.pagination .disabled {
    display: inline-block;
    padding: 0px 4px;
    color: #b2b2b2;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;
    opacity: 0.6;
    font-weight: normal;
}

.dots  {
    display: inline-block;
    padding: 0px 4px;
    color: #ffffff;
    font-family: 'Goldman', sans-serif;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: normal;
}

/* About */
.about-wrapper {
    overflow: hidden;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Goldman', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 6px;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.about-grid {
    display: grid;
    gap: 6px;
    width: 100%;
    background-color: #262626;
    border-radius: 6px;
    border: 1px solid #5a5a5a;
}

.about-content {
    padding: 6px;
    font-size: 12px;
}

.about-content h4 {
    margin: 0;
	font-family:  'Ubuntu', sans-serif; 
    font-size: 12px;
    font-weight: 500;
}

.about-title {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* ========================= */
/* RESPONSIVE (ALLEMAAL ONDERAAN) */
/* ========================= */

/* Tablet */
@media (max-width: 1024px) {

    .site-container {
        max-width: 100%;
    }

    .site-content {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .site-header-inner {
        grid-template-columns: 162px 1fr 24px;
    }

    .header-actions {
        grid-column: 3;
        justify-self: end;
    }

    .header-search {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
	
    .content {
        width: 100%;
        order: 1;
        flex: 1;
    }

    .sidebar {
        width: 100%;
        max-width: none;
        order: 2;
        position: static;
        top: auto;
        margin-top: 6px;
        margin-bottom: 6px;
        align-self: stretch;
    }

    .sidebar-inner {
        position: relative;
        top: auto;
        width: 100%;
    }

    /* Sidebar → 4 kolommen */
    .sidebar-blocks {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        width: 100%;
    }

    .sidebar-block {
        margin-bottom: 0;
        width: 100%;
    }
    
    .header-search {
        display: none; /* desktop search weg */
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-search {
        justify-self: center;
    }

    .search-results-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-content: start;
    }

    .dummy-slot-4 {
        display: none;
    }
	
	.error-header {
		margin-top: 0px;
    
}	.error-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .error-card:nth-child(n+4) {
        display: none;
    }
    
    .error-card-dummy.dummy-slot-4 {
        display: none;
    }
	
	.slider-header {
		font-size: 14px;
	}
    
    .slider-card {
        flex: 0 0 calc((100% - 18px) / 4);
        max-width: calc((100% - 18px) / 4);
    }
    
    .page-overview-wrapper {
		margin-bottom: 6px;
	}

	.family-overview-wrapper {
		margin-bottom: 6px;
	}

	.overview-top-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .overview-top-card {
        display: block;
    }
    
    .overview-top_title {
		font-size: 22px;
	}
    
    .overview-bottom-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .overview-bottom-card {
        display: block;
    }
    
    .overview-bottom_title {
		font-size: 22px;
	}
	
	.overview_title {
		font-size: 22px;
	}
    
    .overview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pagination-block {
		margin-bottom: 0px;
	}
	
	.primary-content,
    .secondary-content {
        flex: 0 0 calc(50% - 3px);
        max-width: calc(50% - 3px);
    }
	
	.player-image-block {
		max-width: 192px;
		max-height: 102px;
		aspect-ratio: 192 / 102;
	}

}

@media (max-width: 900px) {

    .ad-desktop {
        display: none;
    }

    .ad-mobile {
        display: block;
    }
}

@media (max-width: 768px) {

    .header-search {
        display: none; /* desktop search weg */
    }

    .menu-toggle {
        display: block;
    }

    .mobile-search {
        justify-self: center;
    }

    .content {
        width: 100%;
        order: 1;
    }

    .sidebar {
        width: 100%;
        max-width: none;
        order: 2;
        position: static;
        top: auto;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .sidebar-inner {
        position: relative;
        top: auto;
        width: 100%;
    }

    /* Sidebar → 4 kolommen */
    .sidebar-blocks {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        width: 100%;
    }

    .sidebar-block {
        margin-bottom: 0;
        width: 100%;
    }

    .sidebar_title {
        font-size: 12px;
    }

    .div_country_quick_choice,
    .div_country_quick_choice_more {
        font-size: 12px;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-results-content,
    .search-results-content h4 {
        font-size: 10px;
    }

    .dummy-slot-4 {
        display: none;
    }
	
	.error-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .error-card-dummy.dummy-slot-4 {
        display: none;
    }
	
	.error-card:nth-child(n+4) {
        display: none;
    }
    
    .error-header {
		font-size: 12px;
	}

	.error-content {
	    font-size: 10px;
	}

	.error-content h4 {
	    font-size: 10px;
	}
    
	.slider-header {
		font-size: 12px;
	}
    
    .slider-nav button {
		font-size: 16px;
	}
    
    .slider-card {
        flex: 0 0 calc((100% - 12px) / 3);
        max-width: calc((100% - 12px) / 3);
    }

	.slider-content {
	    font-size: 10px;
	}

	.slider-content h4 {
	    font-size: 10px;
	}

	.overview-top-wrapper {
		font-size: 12px;
	}
    
    .overview-top-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.overview-top-grid .overview-top-card:nth-child(n+7) {
        display: none;
    }
    
    .overview-top-card {
        display: block;
    }
    
    .overview-top-card:nth-child(n+7) {
        display: none;
    }
    
    .overview-top-content {
	    font-size: 10px;
	}

	.overview-top-content h4 {
	    font-size: 10px;
	}
    
    .overview-top_title {
		font-size: 14px;
	}
    
    .overview-bottom-wrapper {
		font-size: 12px;
	}
    
    .overview-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.overview-bottom-grid .overview-bottom-card:nth-child(n+7) {
        display: none;
    }
    
    .overview-bottom-content {
	    font-size: 10px;
	}

	.overview-bottom-content h4 {
	    font-size: 10px;
	}

	.overview-bottom-card {
        display: block;
    }
    
    .overview-bottom-card:nth-child(n+7) {
        display: none;
    }
    
    .overview-bottom_title {
		font-size: 14px;
	}
	
	.overview_title {
		font-size: 14px;
	}
    
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.overview-wrapper {
		font-size: 12px;
	}

	.family-overview-wrapper {
		font-size: 12px;
	}

	.page-overview-wrapper {
		font-size: 12px;
		margin-bottom: 6px;
	}
    
    .alphabet-pagination a,
    .alphabet-pagination .current,
    .pagination a,
    .pagination .current,
    .alphabet-pagination .disabled{
        font-size: 10px;
    }
	
	.overview-content {
	    font-size: 10px;
	}

	.overview-content h4 {
	    font-size: 10px;
	}
    
	.about-wrapper {
		font-size: 12px;
	}
    
    .about-content {
	    font-size: 10px;
	}

	.post-content-container {
        flex-direction: column;
    }

    .primary-content,
    .secondary-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
	
	.extra_content_title {
		font-size: 12px;
	}
	
	.extra_content_text {
		font-size: 10px;
	}
	
	.now_playing_title {
		font-size: 12px;
	}
	
	.station-link,
	.geoblocking-notice,
	.stream-info {
		font-size: 10px;
	}
	
	.post-tags a {
		font-size: 10px;
	}

	.rating-system .stars img {
		width: 12px;
		height: 12px;
	}
    
}

/* Mobiel */
@media (max-width: 599px) {

    .site-content {
        gap: 6px;
    }

    .site-container {
        padding: 0;
    }
	
	.header-search {
        display: none; /* desktop search weg */
    }

    .menu-toggle {
        display: block;
    }

    .mobile-search {
        justify-self: center;
    }

    .sidebar-blocks {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar_title {
        font-size: 12px;
    }

    .div_country_quick_choice,
    .div_country_quick_choice_more {
        font-size: 12px;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-results-content,
    .search-results-content h4 {
        font-size: 10px;
    }

    .dummy-slot-3,
    .dummy-slot-4 {
        display: none;
    }
	
	.ad-desktop {
        display: none;
    }

    .ad-mobile {
        display: block;
    }
	
	.error-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .error-card-dummy.dummy-slot-4 {
        display: none;
    }
	
	.error-card:nth-child(n+3) {
        display: none;
    ]
    
	.error-header {
		font-size: 14px;
	}

	.error-content {
	    font-size: 10px;
	}

	.error-content h4 {
	    font-size: 10px;
	}
	
    .slider-header {
		font-size: 14px;
	}
	
	.slider-card {
        flex: 0 0 calc((100% - 6px) / 2);
        max-width: calc((100% - 6px) / 2);
    }

	.slider-content {
	    font-size: 10px;
	}

	.slider-content h4 {
	    font-size: 10px;
	}
	
	.slider-nav button {
		font-size: 18px;
	}
    
    .overview-top-header {
		font-size: 14px;
	}
    
    .overview-top-card {
        display: block;
    }
    
    .overview-top-content {
	    font-size: 10px;
	}

	.overview-top-content h4 {
	    font-size: 10px;
	}

	.overview-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-top-card:nth-child(n+5) {
        display: none;
    }
	
	.overview-top_title {
		font-size: 14px;
	}
    
    .overview-bottom-header {
		font-size: 14px;
	}
    
    .overview-bottom-card {
        display: block;
    }
    
    .overview-bottom-content {
	    font-size: 10px;
	}

	.overview-bottom-content h4 {
	    font-size: 10px;
	}

	.overview-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-bottom-card:nth-child(n+5) {
        display: none;
    }
	
	.overview-bottom_title {
		font-size: 14px;
	}
	
	.overview_title {
		font-size: 14px;
	}
    
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
	
	.overview-wrapper {
		font-size: 14px;
	}

	.family-overview-wrapper {
		font-size: 14px;
	}

	.page-overview-wrapper {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.about-wrapper {
		font-size: 14px;
	}
    
    .about-content {
	    font-size: 12px;
	}

	.overview-content {
	    font-size: 10px;
	}

	.overview-content h4 {
	    font-size: 10px;
	}
	
	.player-image-block {
		max-width: 166px;
		max-height: 88px;
		aspect-ratio: 166 / 88;
	}
	
}