/* ============================================================
   RADIO SITE — CUSTOM DESIGN SYSTEM
   Modern Dark Theme | Inter Font | Glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
	--primary:       #6C63FF;
	--primary-dark:  #4B44CC;
	--primary-glow:  rgba(108, 99, 255, 0.35);
	--accent:        #FF6584;
	--accent2:       #43E8B0;
	--bg-base:       #0D0E1A;
	--bg-card:       #14152A;
	--bg-card2:      #1A1B30;
	--bg-glass:      rgba(255,255,255,0.05);
	--border:        rgba(255,255,255,0.08);
	--border-hover:  rgba(108, 99, 255, 0.5);
	--text-main:     #E8E8F0;
	--text-muted:    #8888AA;
	--text-dim:      #555577;
	--radius-sm:     8px;
	--radius-md:     14px;
	--radius-lg:     20px;
	--radius-xl:     28px;
	--shadow-card:   0 4px 24px rgba(0,0,0,0.35);
	--shadow-glow:   0 0 30px var(--primary-glow);
	--transition:    all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing:  antialiased;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	min-width: 320px;
	background-color: var(--bg-base);
	color: var(--text-main);
}

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

a:hover { color: var(--primary); }

a:focus, a:active,
.btn:focus, .btn:active {
	box-shadow: none !important;
	outline: 0 !important;
}

.btn:hover { color: #fff; }

.container { max-width: 1140px; }

.form-control:focus {
	box-shadow: 0 0 0 3px var(--primary-glow);
	border-color: var(--primary);
	background-color: var(--bg-card);
	color: var(--text-main);
}

/* ─── Header / Top Menu ─────────────────────────────────── */
.top-menu {
	padding-top: 0.7rem !important;
	padding-bottom: 0.7rem !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.top-menu button {
	border: 0;
	padding: 0;
	background-color: transparent;
}

.top-menu .nav-link {
	color: var(--text-muted) !important;
	font-size: 13px;
	font-weight: 500;
	padding: 4px 10px !important;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.top-menu .nav-link:hover {
	color: var(--text-main) !important;
	background: var(--bg-glass);
}

.logo { height: 29px; }

/* Site color classes → unified header bg */
.site-color-1, .site-color-2, .site-color-3,
.site-color-4, .site-color-5, .site-color-6,
.site-color-7, .site-color-8 {
	background: rgba(13, 14, 26, 0.85) !important;
}

/* ─── Main Background Themes ────────────────────────────── */
.site-bg-1, .site-bg-2, .site-bg-3,
.site-bg-4, .site-bg-5, .site-bg-6,
.site-bg-7, .site-bg-8 {
	background-color: var(--bg-base) !important;
}

/* ─── Left Menu / Partials ──────────────────────────────── */
#menu-content {
	position: sticky;
	top: 70px;
	height: fit-content;
}

.genre-list { font-size: 13px; }

.genre-list a {
	color: var(--text-muted);
	display: block;
	margin-bottom: 4px;
	padding: 3px 8px;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.genre-list a:hover {
	color: var(--primary);
	background: var(--bg-glass);
	padding-left: 12px;
}

.filter-title {
	font-weight: 700;
	color: var(--text-main);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.section-title {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: var(--text-main);
	letter-spacing: -0.01em;
}

.letter {
	font-weight: 900;
	font-size: 20px;
	color: var(--primary);
}

/* ─── Radio Channels Grid ───────────────────────────────── */
.radio-channels img {
	border: 1px solid var(--border);
	background-color: var(--bg-card);
	border-radius: var(--radius-md);
	transition: var(--transition);
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.radio-channels img:hover {
	box-shadow: 0 8px 32px var(--primary-glow);
	border-color: var(--border-hover);
	transform: translateY(-3px) scale(1.03);
}

.radio-channels .col-md-2,
.radio-channels .col-4 {
	transition: var(--transition);
}

/* ─── Station Player ─────────────────────────────────────── */
.player {
	background: var(--bg-card) !important;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg) !important;
	overflow: hidden;
	position: relative;
}

.player::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2));
}

.player .station-name h1 {
	font-size: 18px;
	font-weight: 800;
	color: var(--text-main);
	margin: 0;
	letter-spacing: -0.02em;
}

.station-image {
	border: 2px solid var(--border) !important;
	border-radius: var(--radius-md) !important;
}

/* ─── Play/Pause Buttons ─────────────────────────────────── */
.jp-play, .jp-pause,
.m3-play, .m3-pause,
.report {
	border: 0;
	padding: 0;
	background-color: transparent;
}

.jp-controls svg,
.m3-play svg, .m3-pause svg {
	width: 48px;
	height: 48px;
	padding: 13px;
	fill: #fff;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: 50%;
	text-align: center;
	box-shadow: 0 4px 20px var(--primary-glow);
	transition: var(--transition);
}

.jp-controls svg:hover,
.m3-play svg:hover, .m3-pause svg:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px var(--primary-glow);
}

/* ─── Volume Bar ─────────────────────────────────────────── */
.jp-volume-bar {
	overflow: hidden;
	background-color: var(--border);
	width: 100%;
	height: 4px;
	margin: 6px 0;
	cursor: pointer;
	border-radius: 5px;
}

.jp-volume-bar-value {
	background: linear-gradient(90deg, var(--primary), var(--accent2));
	width: 0;
	height: 4px;
	transition: width 0.1s;
}

.jp-current-time {
	color: var(--text-muted);
	font-size: 12px;
}

.mute-box {
	width: 18px;
	height: 18px;
	display: inline-block;
	text-align: center;
	overflow: hidden;
}

/* ─── Station Data (genre/country/language links) ────────── */
.station-data {
	color: var(--text-muted);
	font-size: 13px;
}

.station-data a {
	text-decoration: none;
	color: var(--primary);
	transition: var(--transition);
}

.station-data a:hover { color: var(--accent2); }

.station-data .sep { margin: 0 3px; color: var(--text-dim); }

.description {
	display: block;
	margin: 4px 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-muted);
}

/* ─── Vote Buttons ───────────────────────────────────────── */
.up-button {
	background: linear-gradient(135deg, #3ecf8e, #2aa876);
	color: #fff;
	transition: var(--transition);
}

.up-button:hover { transform: scale(1.05); }

.down-button {
	background: linear-gradient(135deg, #f56565, #c53030);
	color: #fff;
	transition: var(--transition);
}

.down-button:hover { transform: scale(1.05); }

#up, #down {
	line-height: 22px;
	font-size: 12px;
	color: var(--text-muted);
}

#down {
	height: 10px;
	display: block;
}

/* ─── Radio Details Block ────────────────────────────────── */
.radio-details {
	background: var(--bg-card) !important;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	color: var(--text-main);
}

/* ─── Comments / User Reviews ────────────────────────────── */
.user-reviews {
	background: var(--bg-card) !important;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
}

.user-reviews .name {
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin-bottom: 2px;
}

.user-reviews .date {
	color: var(--text-dim);
	font-size: 12px;
	display: block;
	margin-bottom: 4px;
}

.user-reviews .comment {
	color: var(--text-main);
	font-size: 14px;
	display: block;
}

.comment-button {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border: 0;
	padding: 7px 16px;
	font-size: 13px;
	border-radius: var(--radius-sm);
	color: #fff;
	transition: var(--transition);
}

.comment-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px var(--primary-glow);
}

/* ─── Forms ──────────────────────────────────────────────── */
.form-control, .form-select {
	font-size: 14px;
	background-color: var(--bg-card2);
	color: var(--text-main);
	border-color: var(--border);
	border-radius: var(--radius-sm);
}

.form-control::placeholder { color: var(--text-dim); }

.form-select option {
	background-color: var(--bg-card2);
	color: var(--text-main);
}

#comment-form, #contact-form, #submission-form {
	font-size: 14px;
}

/* ─── Search ─────────────────────────────────────────────── */
.search-form {
	width: 100%;
	font-size: 0.875rem;
	font-weight: 500;
	border: 0;
	background: var(--bg-card2);
	color: var(--text-main);
	border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.search-btn {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border: 0;
	font-size: 13px;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	transition: var(--transition);
}

.search-btn:hover {
	box-shadow: 0 4px 16px var(--primary-glow);
}

.search-btn svg { fill: #fff; width: 12px; }

/* ─── Autocomplete ───────────────────────────────────────── */
.ui-widget.ui-widget-content {
	border: 1px solid var(--border);
	padding: 7px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
	background: var(--bg-card2);
	border-radius: var(--radius-md);
}

.ui-autocomplete img {
	width: 70px;
	height: 70px;
	margin-right: 8px;
	float: left;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
}

.ui-menu .ui-menu-item {
	font-size: 14px;
	display: table;
	border-bottom: 1px solid var(--border);
	width: 100%;
	height: 70px;
	line-height: 20px;
	padding: 7px 0;
	color: var(--text-main);
}

.ui-menu .ui-menu-item:first-child { padding-top: 0; }

.ui-menu .ui-menu-item:last-child {
	padding-bottom: 0;
	border-bottom: 0 !important;
}

.ui-menu .ui-menu-item strong {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.ui-menu .ui-menu-item-wrapper {
	margin: 0 !important;
	padding: 0 !important;
}

.ui-widget-content .ui-state-active {
	background-color: var(--bg-glass);
	color: var(--primary);
	border-color: transparent;
	border: 0;
}

/* ─── Menu Icon ──────────────────────────────────────────── */
.menu-icon, #menu-opener {
	transition: var(--transition);
	width: 25px;
	height: 22px;
	fill: var(--text-muted);
	margin-left: 5px;
}

.menu-icon:hover { fill: #fff; }

/* ─── Pagination ─────────────────────────────────────────── */
.pagination-next { display: none; }

.pagination { margin-bottom: 15px !important; }

.pagination .page-link {
	color: var(--text-muted);
	font-size: 12px;
	border: 0 !important;
	background: transparent;
	border-radius: var(--radius-sm) !important;
	transition: var(--transition);
}

.pagination .page-link:hover {
	background: var(--bg-glass);
	color: var(--primary);
}

.page-item.active .page-link {
	color: #fff !important;
}

.site-pagination-1 .page-item.active .page-link,
.site-pagination-2 .page-item.active .page-link,
.site-pagination-3 .page-item.active .page-link,
.site-pagination-4 .page-item.active .page-link,
.site-pagination-5 .page-item.active .page-link,
.site-pagination-6 .page-item.active .page-link,
.site-pagination-7 .page-item.active .page-link,
.site-pagination-8 .page-item.active .page-link {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
	box-shadow: 0 2px 10px var(--primary-glow);
}

/* ─── Alert No Record ────────────────────────────────────── */
.alert-no-record {
	color: var(--text-muted);
	background-color: var(--bg-card);
	border: 1px solid var(--border);
	font-size: 14px;
	border-radius: var(--radius-md);
}

/* ─── Notification System ────────────────────────────────── */
@keyframes progress-shrink {
	0%   { width: 100%; }
	100% { width: 0%; }
}

@keyframes notify-in {
	0%   { left: -50px; opacity: 0; }
	100% { left: 0;     opacity: 1; }
}

@keyframes notify-in-out {
	0%   { left: -50px; opacity: 0; }
	5%   { left: 0;     opacity: 1; }
	95%  { left: 0;     opacity: 1; }
	100% { left: -50px; opacity: 0; }
}

@keyframes fadeSlideUp {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 0 16px var(--primary-glow); }
	50%       { box-shadow: 0 0 32px var(--primary-glow), 0 0 48px rgba(108,99,255,0.2); }
}

#notificationsContainer {
	position: fixed;
	max-width: 310px;
	z-index: 10;
	margin: 5px;
}

.bottomleft  { left: 0;  bottom: 0; }
.bottomright { right: 0; bottom: 0; }
.topright    { right: 0; top: 0; }
.topleft     { left: 0;  top: 0; }

#notificationsContainer .notification {
	float: left;
	position: relative;
	margin: 3px;
	background: var(--bg-card2);
	border: 1px solid var(--border);
	width: 300px;
	border-radius: var(--radius-md);
	box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.n-animate-in {
	animation: notify-in 0.5s linear;
}

.n-animate {
	animation: notify-in-out 6s linear;
}

.notification .pad {
	padding: 10px;
	margin-bottom: 10px;
}

.notification .pad .message {
	font-weight: 600;
	font-size: 13px;
	color: var(--text-main);
	display: inline-block;
	float: left;
	width: calc(100% - 15px);
}

.notification .pad .close {
	display: inline-block;
	float: right;
	width: 15px;
}

.close-btn {
	height: 10px;
	width: 10px;
	background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='iso-8859-1'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' width='512px' height='512px' viewBox='0 0 41.756 41.756' style='enable-background:new 0 0 41.756 41.756;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M27.948,20.878L40.291,8.536c1.953-1.953,1.953-5.119,0-7.071c-1.951-1.952-5.119-1.952-7.07,0L20.878,13.809L8.535,1.465 c-1.951-1.952-5.119-1.952-7.07,0c-1.953,1.953-1.953,5.119,0,7.071l12.342,12.342L1.465,33.22c-1.953,1.953-1.953,5.119,0,7.071 C2.44,41.268,3.721,41.755,5,41.755c1.278,0,2.56-0.487,3.535-1.464l12.343-12.342l12.343,12.343 c0.976,0.977,2.256,1.464,3.535,1.464s2.56-0.487,3.535-1.464c1.953-1.953,1.953-5.119,0-7.071L27.948,20.878z' fill='%23AAAACC'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 10px 10px;
}

.btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23aaa'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.65em auto no-repeat;
}

.notification .progressContainer {
	clear: both;
	float: left;
	padding-top: 10px;
	width: 100%;
	text-align: left;
}

.notification .progressContainer .progress {
	background-color: var(--bg-glass);
	min-height: 4px;
	width: 100%;
	border-radius: 10px;
	bottom: 0;
}

.progress-animate {
	height: 5px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	animation: progress-shrink 6s linear;
	animation-timing-function: linear;
}

/* ─── Genre Image Label ──────────────────────────────────── */
.genre-image {
	position: absolute;
	bottom: 0;
	line-height: 35px;
	padding-left: 10px;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0, rgba(0,0,0,0.8) 100%);
	width: 100%;
	color: #fff;
	font-weight: 700;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* ─── Modal ──────────────────────────────────────────────── */
.modal-backdrop.show {
	z-index: 999999;
	opacity: 0.7;
	background-color: rgba(0,0,0,0.7);
	backdrop-filter: blur(6px);
}

.modal { z-index: 9999999; }

#MyModal { z-index: 9999999 !important; font-size: 14px; font-weight: 400; }

.modal-content {
	background: var(--bg-card2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	color: var(--text-main);
}

.modal-header {
	border-bottom: 1px solid var(--border) !important;
}

.modal-footer {
	border-top: 1px solid var(--border);
}

.modal-body {
	background-color: var(--bg-card2);
}

.modal-title { font-size: 15px; font-weight: 700; }

.submit-button {
	color: #fff;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border: 0;
	font-size: 13px;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.submit-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px var(--primary-glow);
}

/* ─── Dropdown / Share Menu ──────────────────────────────── */
.dropdown-menu {
	border: 1px solid var(--border);
	min-width: 0;
	padding: .5rem;
	background: var(--bg-card2);
	border-radius: var(--radius-md);
}

/* ─── Social Share Boxes ─────────────────────────────────── */
.facebook-box {
	background-color: #4267b2;
	width: 32px; height: 32px;
	text-align: center; line-height: 32px;
	border-radius: var(--radius-sm);
	display: inline-block; border: 0; padding: 0;
	transition: var(--transition);
}
.facebook-box:hover { opacity: 0.85; transform: scale(1.1); }

.twitter-box {
	background-color: #111;
	width: 32px; height: 32px;
	text-align: center; line-height: 32px;
	border-radius: var(--radius-sm);
	display: inline-block; border: 0; padding: 0;
	transition: var(--transition);
}
.twitter-box:hover { opacity: 0.85; transform: scale(1.1); }

.whatsapp-box {
	background-color: #25d366;
	width: 32px; height: 32px;
	text-align: center; line-height: 32px;
	border-radius: var(--radius-sm);
	display: inline-block; border: 0; padding: 0;
	transition: var(--transition);
}
.whatsapp-box:hover { opacity: 0.85; transform: scale(1.1); }

.telegram-box {
	background-color: #0088cc;
	width: 32px; height: 32px;
	text-align: center; line-height: 32px;
	border-radius: var(--radius-sm);
	display: inline-block; border: 0; padding: 0;
	transition: var(--transition);
}
.telegram-box:hover { opacity: 0.85; transform: scale(1.1); }

/* ─── Footer Social Media Icons ─────────────────────────── */
.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
}

.social-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	transition: var(--transition);
	flex-shrink: 0;
}

.social-icon-link svg {
	width: 15px;
	height: 15px;
	fill: var(--text-muted);
	transition: var(--transition);
	display: block;
}

/* Hover — generic lift */
.social-icon-link:hover {
	transform: translateY(-3px) scale(1.1);
	border-color: transparent;
}

.social-icon-link:hover svg { fill: #fff; }

/* Brand colors on hover */
.social-x:hover        { background: #000; }
.social-fb:hover       { background: #1877F2; }
.social-ig:hover       { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-tiktok:hover   { background: #010101; box-shadow: 2px 2px 0 #EE1D52, -2px -2px 0 #69C9D0; border-color: transparent !important; }
.social-pinterest:hover { background: #E60023; }
.social-telegram:hover { background: #0088cc; }

/* ─── SVG Icon Colors ────────────────────────────────────── */
.twitter-icon  { fill: #fff; width: 15px; margin-top: -1px; }
.facebook-icon { fill: #fff; width: 10px; margin-top: -2px; }
.telegram-icon { fill: #fff; width: 14px; margin-top: -2px; }
.whatsapp-icon { fill: #fff; width: 15px; margin-top: -2px; }

.mute-icon   { fill: var(--text-muted); width: 15px; height: 15px; }
.unmute-icon { fill: var(--text-muted); width: 15px; height: 15px; }
.report-icon { fill: #FFB347; width: 20px; margin-top: -1px; }
.random-icon { fill: var(--primary); width: 20px; }
.share-icon  { fill: var(--text-muted); width: 18px; margin-top: -3px; }
.heart-icon  { fill: rgba(255, 101, 132, 0.4); width: 20px; }
.heart-icon.active { fill: var(--accent); }
.vote-icon   { fill: #fff; width: 16px; }

.facebook-footer, .telegram-footer { fill: var(--text-muted); height: 18px; }
.twitter-footer { fill: var(--text-muted); height: 20px; }
.menu-icon, #menu-opener { fill: var(--text-muted); }

/* ─── Favorites Button ───────────────────────────────────── */
.favorites {
	border: 0; padding: 0;
	background-color: transparent;
	transition: var(--transition);
}
.favorites:hover { transform: scale(1.2); }

/* ─── Close Button ───────────────────────────────────────── */
.close {
	font-size: 1.1rem; font-weight: 700; line-height: 1;
	color: var(--text-muted); text-shadow: none;
	border: 0; background-color: transparent;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer-container {
	color: var(--text-muted);
}

.footer-container,
.site-color-1 ~ .footer-container,
.site-color-2 ~ .footer-container {
	background: var(--bg-card) !important;
	border-top: 1px solid var(--border);
}

/* Override all site-color footer classes */
.footer-container.site-color-1,
.footer-container.site-color-2,
.footer-container.site-color-3,
.footer-container.site-color-4,
.footer-container.site-color-5,
.footer-container.site-color-6,
.footer-container.site-color-7,
.footer-container.site-color-8 {
	background: var(--bg-card) !important;
}

.section-head { font-size: 13px; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.06em; }

.footer-copyright {
	margin-top: 25px;
	color: var(--text-dim);
	font-size: 13px;
}

.site-copyright-1, .site-copyright-2, .site-copyright-3,
.site-copyright-4, .site-copyright-5, .site-copyright-6,
.site-copyright-7, .site-copyright-8 {
	background: var(--bg-base) !important;
	border-top: 1px solid var(--border);
	color: var(--text-dim) !important;
}

.page-footer { font-size: 14px; padding-top: 40px; }

.page-footer a {
	font-size: 13px;
	color: var(--text-muted);
}

.page-footer a:hover { color: var(--primary); }

.page-footer br { display: block; margin: 3px 0; }
.page-footer i  { font-size: 16px; margin-right: 11px; }
.page-footer li { line-height: 28px; }

.footer-logo { height: 29px; }

.footer-text-logo {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 700;
	display: block;
	color: var(--text-main);
}

/* ─── FAQ / Accordion ────────────────────────────────────── */
.faqs .accordion-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md) !important;
	margin-bottom: 8px;
}

.faqs .accordion-button {
	font-size: 14px;
	background: var(--bg-card);
	color: var(--text-main);
	border-radius: var(--radius-md) !important;
}

.faqs .accordion-button:not(.collapsed) {
	color: var(--primary);
	font-weight: 700;
	background-color: var(--bg-card);
	box-shadow: inset 0 -1px 0 var(--border);
}

.faqs .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236C63FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faqs .accordion-body { color: var(--text-muted); font-size: 14px; }

.faqs .accordion-body p:last-child { padding-bottom: 0; margin-bottom: 0; }

button.accordion-button { box-shadow: inherit !important; }

/* ─── Page Details ───────────────────────────────────────── */
.page-details p { margin-bottom: 10px; }
.page-details p:last-child { margin-bottom: 0; }
.radio-details p { margin-bottom: 10px; }
.radio-details p:last-child { margin-bottom: 0; }

/* ─── Bootstrap Select ───────────────────────────────────── */
.bootstrap-select .filter-option { font-size: 14px; color: var(--text-main); }
.bootstrap-select .btn:hover { color: var(--text-main); }
.bootstrap-select a {
	color: var(--text-muted);
	padding: 6px 9px;
	font-size: 14px;
	border-bottom: 1px solid var(--border);
	display: block;
}
.bootstrap-select a:hover { color: var(--primary); background: var(--bg-glass); }

/* ─── Cookie Alert ───────────────────────────────────────── */
.cookiealert {
	position: fixed;
	bottom: 0; left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 99999999999;
	opacity: 0;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
	font-size: 14px;
	color: var(--text-main);
	background: rgba(13, 14, 26, 0.97);
	border-top: 1px solid var(--border);
	backdrop-filter: blur(10px);
}

.cookiealert.show {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 1000ms;
}

.cookiealert a { text-decoration: underline; color: var(--primary); }

.cookiealert .acceptcookies {
	margin: 0 0 0 8px;
	text-align: center;
	padding: 4px 12px;
	font-size: 13px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	border: 0;
	border-radius: var(--radius-sm);
}

/* ─── Sleep Timer Styles (custom feature) ────────────────── */
.sleep-timer-btn {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-muted);
	border-radius: var(--radius-sm);
	padding: 2px 8px;
	font-size: 12px;
	cursor: pointer;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.sleep-timer-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.sleep-timer-btn.active {
	border-color: var(--accent);
	color: var(--accent);
	animation: pulse-glow 2s infinite;
}

.sleep-timer-countdown {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--accent);
	margin-left: 4px;
}

.sleep-option-btn {
	display: block;
	width: 100%;
	padding: 10px 16px;
	margin-bottom: 6px;
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--text-main);
	font-size: 14px;
	cursor: pointer;
	transition: var(--transition);
	text-align: left;
}

.sleep-option-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(108,99,255,0.08);
}

.sleep-option-btn.selected {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(255,101,132,0.08);
}

/* ─── Embed Widget Styles (custom feature) ───────────────── */
.embed-btn {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-muted);
	border-radius: var(--radius-sm);
	padding: 2px 8px;
	font-size: 12px;
	cursor: pointer;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.embed-btn:hover {
	border-color: var(--accent2);
	color: var(--accent2);
}

.embed-code-box {
	background: var(--bg-base);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 12px;
	font-family: 'Courier New', monospace;
	font-size: 12px;
	color: var(--accent2);
	word-break: break-all;
	line-height: 1.5;
	max-height: 100px;
	overflow-y: auto;
}

.copy-embed-btn {
	background: linear-gradient(135deg, var(--accent2), #2dba8a);
	border: 0;
	color: #000;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 20px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: var(--transition);
	width: 100%;
	margin-top: 10px;
}

.copy-embed-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(67,232,176,0.35);
}

.copy-embed-btn.copied {
	background: linear-gradient(135deg, #3ecf8e, #2aa876);
}

/* ─── Animation on page load ─────────────────────────────── */
.container.mt-3 > .row {
	animation: fadeSlideUp 0.4s ease both;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {

	.cookiealert { font-size: 13px; }
	.cookiealert .acceptcookies { font-size: 12px; margin: 0 0 0 5px; }

	.menu-icon, #menu-opener {
		width: 26px; height: 23px; margin-left: 8px;
	}

	.report-icon { width: 23px; }
	.random-icon { width: 22px; }
	.share-icon  { width: 21px; }
	.heart-icon  { width: 22px; }

	.station-data { color: var(--text-muted); font-size: 14px; }

	.description {
		display: block;
		margin: 2px 0;
		font-size: 14px;
		line-height: 1.6;
	}

	.jp-controls svg {
		width: 50px; height: 50px; padding: 15px;
		margin-bottom: 3px;
	}

	.jp-current-time { font-size: 13px; }
}