/* ===================================
   ENHANCED MODERN CSS - RADIO WEBSITE
   ================================== */

/* === BASE STYLES === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #92c66c;
	--secondary-color: #584359;
	--dark-bg: #250a26;
	--light-bg: #fff;
	--text-dark: #111;
	--text-light: #fff;
	--border-radius: 12px;
	--transition-speed: 0.3s;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
	--gradient-primary: linear-gradient(135deg, #92c66c 0%, #7ab055 100%);
	--gradient-dark: linear-gradient(135deg, #351837 0%, #250a26 100%);
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font: 15px/1.6 'Segoe UI', Arial, Helvetica Neue, Helvetica, sans-serif;
	min-width: 320px;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
	color: var(--text-dark);
	overflow-x: hidden;
}

/* === SMOOTH SCROLL === */
html {
	scroll-behavior: smooth;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.7;
}

/* === LINKS & BUTTONS === */
a {
	text-decoration: none;
	color: inherit;
	transition: all var(--transition-speed) ease;
	position: relative;
}

a:hover {
	color: var(--primary-color);
	transform: translateY(-1px);
}

a:focus,
a:active,
.btn:focus,
.btn:active {
	box-shadow: none !important;
	outline: 0px !important;
}

.btn {
	border-radius: var(--border-radius);
	padding: 10px 24px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all var(--transition-speed) ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
	z-index: -1;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* === CONTAINER === */
.container {
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}

/* === FORM CONTROLS === */
.form-control {
	font-size: 14px;
	color: #333;
	border: 2px solid #e8e8e8;
	border-radius: var(--border-radius);
	padding: 12px 16px;
	transition: all var(--transition-speed) ease;
	background: #fff;
}

.form-control:focus {
	box-shadow: 0 0 0 4px rgba(146, 198, 108, 0.1);
	border-color: var(--primary-color);
	transform: translateY(-1px);
}

.form-control::placeholder {
	color: #999;
	font-style: italic;
}

.form-select {
	font-size: 14px;
	color: #333;
	border: 2px solid #e8e8e8;
	border-radius: var(--border-radius);
	padding: 12px 16px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(146, 198, 108, 0.1);
}

/* === LOGO === */
.logo {
	height: 35px;
	transition: all var(--transition-speed) ease;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
	transform: scale(1.05) rotate(2deg);
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
}

/* === DROPDOWN MENU === */
.dropdown-menu {
	border: 0;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	padding: 8px;
	background: #fff;
	backdrop-filter: blur(10px);
	animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown-item {
	border-radius: 8px;
	padding: 10px 14px;
	transition: all var(--transition-speed) ease;
	margin: 2px 0;
}

.dropdown-item:hover {
	background: var(--gradient-primary);
	color: white;
	transform: translateX(5px);
}

/* === GENRE LIST === */
.genre-list {
	font-size: 14px;
	list-style: none;
}

.genre-list a {
	color: #fff;
	display: block;
	margin-bottom: 8px;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all var(--transition-speed) ease;
	position: relative;
	overflow: hidden;
}

.genre-list a::before {
	content: '♪';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: all var(--transition-speed) ease;
}

.genre-list a:hover {
	background: rgba(255, 255, 255, 0.1);
	padding-left: 24px;
	transform: translateX(5px);
}

.genre-list a:hover::before {
	left: 8px;
	opacity: 1;
}

/* === PLAYER === */
.m3-play, .m3-pause {
	border: 0;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
}

.m3-play:hover, .m3-pause:hover {
	transform: scale(1.1);
}

.player {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: var(--border-radius);
	padding: 24px;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-speed) ease;
	position: relative;
	overflow: hidden;
}

.player::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(146, 198, 108, 0.05) 0%, transparent 70%);
	animation: playerPulse 8s ease-in-out infinite;
}

@keyframes playerPulse {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(10px, 10px) scale(1.1);
	}
}

.player:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.player .station-name h1 {
	font-size: 24px;
	font-weight: 900;
	color: #111;
	margin: 0;
	background: linear-gradient(135deg, #111 0%, #333 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 1;
}

/* === RADIO CHANNELS === */
.radio-channels img {
	border: 2px solid #f0f0f0;
	background-color: #fff;
	border-radius: var(--border-radius);
	transition: all var(--transition-speed) ease;
	cursor: pointer;
	object-fit: cover;
}

.radio-channels img:hover {
	box-shadow: var(--shadow-lg);
	transform: scale(1.05) rotate(2deg);
	border-color: var(--primary-color);
}

/* === STATION IMAGE === */
.station-image {
	border: 3px solid #f4f4f4;
	border-radius: var(--border-radius);
	transition: all var(--transition-speed) ease;
	position: relative;
	overflow: hidden;
}

.station-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent 0%, rgba(146, 198, 108, 0.2) 100%);
	opacity: 0;
	transition: opacity var(--transition-speed) ease;
}

.station-image:hover::after {
	opacity: 1;
}

.station-image:hover {
	border-color: var(--primary-color);
	transform: scale(1.02);
	box-shadow: var(--shadow-md);
}

/* === TITLES === */
.filter-title {
	font-weight: bold;
	color: #fff;
	font-size: 18px;
	margin-bottom: 16px;
	position: relative;
	padding-left: 16px;
}

.filter-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.section-title {
	display: block;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 12px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.letter {
	font-weight: 900;
	font-size: 28px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	display: inline-block;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	margin: 4px;
	transition: all var(--transition-speed) ease;
}

.letter:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

/* === FOOTER === */
.footer-container {
	color: #fff;
	background: var(--gradient-dark);
	position: relative;
}

.section-head {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-copyright {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-footer {
	font-size: 14px;
	padding: 60px 0 40px;
}

.page-footer a {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: all var(--transition-speed) ease;
}

.page-footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width var(--transition-speed) ease;
}

.page-footer a:hover::after {
	width: 100%;
}

.page-footer a:hover {
	color: var(--primary-color);
	padding-left: 4px;
}

.page-footer br {
	display: block;
	margin: 8px 0;
}

.page-footer i {
	font-size: 18px;
	margin-right: 12px;
	transition: all var(--transition-speed) ease;
}

.page-footer li {
	line-height: 32px;
	transition: all var(--transition-speed) ease;
	padding: 4px 0;
}

.page-footer li:hover {
	padding-left: 8px;
}

.footer-logo {
	height: 35px;
	margin-bottom: 16px;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-text-logo {
	font-size: 22px;
	margin-bottom: 16px;
	font-weight: 700;
	display: block;
	background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* === PLAYER CONTROLS === */
.jp-play,
.jp-pause,
.report {
	border: 0;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
}

.jp-controls svg {
	width: 54px;
	height: 54px;
	padding: 18px;
	fill: #fff;
	background: var(--gradient-primary);
	border-radius: 50%;
	text-align: center;
	transition: all var(--transition-speed) ease;
	box-shadow: 0 4px 12px rgba(146, 198, 108, 0.4);
}

.jp-controls svg:hover {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 6px 20px rgba(146, 198, 108, 0.6);
}

.jp-controls svg:active {
	transform: scale(0.95);
}

/* === PAGINATION === */
.pagination-next {
	display: none;
}

.pagination {
	margin-bottom: 20px !important;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-link {
	color: #333;
	font-size: 14px;
	border: 2px solid transparent !important;
	border-radius: 8px;
	padding: 8px 14px;
	font-weight: 600;
	transition: all var(--transition-speed) ease;
	background: #fff;
	margin: 0 2px;
}

.pagination .page-link:hover {
	background: var(--gradient-primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.page-item.active .page-link {
	color: #fff;
	background: var(--gradient-dark);
	box-shadow: var(--shadow-sm);
}

/* === SEARCH === */
.search-form {
	width: 100%;
	font-size: 0.9rem;
	font-weight: 500;
	border: 0;
	border-radius: var(--border-radius);
	padding: 12px 16px;
	transition: all var(--transition-speed) ease;
}

.search-form:focus {
	box-shadow: 0 0 0 4px rgba(146, 198, 108, 0.2);
}

.search-btn {
	background: var(--gradient-primary);
	border: 0;
	font-size: 14px;
	border-radius: var(--border-radius);
	padding: 12px 20px;
	transition: all var(--transition-speed) ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.search-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.search-btn svg {
	fill: #fff;
	width: 14px;
	transition: all var(--transition-speed) ease;
}

.search-btn:hover svg {
	transform: scale(1.2);
}

/* === MENU ICON === */
.menu-icon,
#menu-opener {
	transition: all var(--transition-speed) ease;
	width: 28px;
	height: 24px;
	fill: rgba(255, 255, 255, 0.7);
	margin-left: 8px;
	cursor: pointer;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.menu-icon:hover,
#menu-opener:hover {
	fill: #fff;
	transform: scale(1.1) rotate(90deg);
}

/* === TOP MENU === */
.top-menu {
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	background: var(--gradient-dark);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.top-menu button {
	border: 0;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}

/* === AUTOCOMPLETE === */
.ui-widget.ui-widget-content {
	border: 0;
	padding: 12px;
	box-shadow: var(--shadow-lg) !important;
	border-radius: var(--border-radius);
	background: #fff;
}

.ui-autocomplete img {
	width: 70px;
	height: 70px;
	margin-right: 12px;
	float: left;
	border: 2px solid #f0f0f0;
	border-radius: 8px;
	object-fit: cover;
	transition: all var(--transition-speed) ease;
}

.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 {
	font-size: 14px;
	display: table;
	border-bottom: 1px solid #f0f0f0;
	width: 100%;
	min-height: 80px;
	line-height: 22px;
	padding: 10px;
	border-radius: 8px;
	margin: 4px 0;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.ui-menu .ui-menu-item:hover {
	background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
	transform: translateX(4px);
}

.ui-menu .ui-menu-item:hover img {
	transform: scale(1.05);
	box-shadow: var(--shadow-sm);
}

.ui-menu .ui-menu-item strong {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 700;
	color: #333;
}

.ui-menu .ui-menu-item-wrapper {
	margin: 0 !important;
	padding: 0 !important;
}

.ui-widget-content .ui-state-active {
	background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
	color: #000;
	border-color: transparent;
	border: 0;
}

/* === COLOR THEMES === */
.site-bg-1 {
	background: linear-gradient(135deg, #351837 0%, #250a26 100%);
}

.site-color-1 {
	background: linear-gradient(135deg, #250a26 0%, #1a0619 100%);
}

.site-copyright-1 {
	background-color: #1d071e;
}

.site-pagination-1 .page-item.active .page-link {
	background: linear-gradient(135deg, #250a26 0%, #1a0619 100%);
}

.site-bg-2 {
	background: linear-gradient(135deg, #06623E 0%, #044a2e 100%);
}

.site-color-2 {
	background: linear-gradient(135deg, #101820FF 0%, #0a0f14 100%);
}

.site-copyright-2 {
	background-color: #0d141c;
}

.site-pagination-2 .page-item.active .page-link {
	background: linear-gradient(135deg, #101820FF 0%, #0a0f14 100%);
}

.site-bg-3 {
	background: linear-gradient(135deg, #231431 0%, #1a0f25 100%);
}

.site-color-3 {
	background: linear-gradient(135deg, #301d42 0%, #231432 100%);
}

.site-copyright-3 {
	background-color: #1c0e28;
}

.site-pagination-3 .page-item.active .page-link {
	background: linear-gradient(135deg, #301d42 0%, #231432 100%);
}

.site-bg-4 {
	background: linear-gradient(135deg, #CC313D 0%, #b72530 100%);
}

.site-color-4 {
	background: linear-gradient(135deg, #B72530 0%, #9e1f29 100%);
}

.site-copyright-4 {
	background-color: #ae212c;
}

.site-pagination-4 .page-item.active .page-link {
	background: linear-gradient(135deg, #B72530 0%, #9e1f29 100%);
}

.site-bg-5 {
	background: linear-gradient(135deg, #5e3b3c 0%, #4a2e2f 100%);
}

.site-color-5 {
	background: linear-gradient(135deg, #513233 0%, #3d2526 100%);
}

.site-copyright-5 {
	background-color: #422627;
}

.site-pagination-5 .page-item.active .page-link {
	background: linear-gradient(135deg, #513233 0%, #3d2526 100%);
}

.site-bg-6 {
	background: linear-gradient(135deg, #92C66C 0%, #7ab055 100%);
}

.site-color-6 {
	background: linear-gradient(135deg, #201E20 0%, #161516 100%);
}

.site-copyright-6 {
	background-color: #1c191c;
}

.site-pagination-6 .page-item.active .page-link {
	background: linear-gradient(135deg, #201E20 0%, #161516 100%);
}

.site-bg-7 {
	background: linear-gradient(135deg, #252539 0%, #1a1a2c 100%);
}

.site-color-7 {
	background: linear-gradient(135deg, #12121F 0%, #0a0a14 100%);
}

.site-copyright-7 {
	background-color: #0e0e1a;
}

.site-bg-8 {
	background: linear-gradient(135deg, #171717 0%, #0d0d0d 100%);
}

.site-color-8 {
	background: linear-gradient(135deg, #111 0%, #000 100%);
}

.site-copyright-8 {
	background-color: #0f0e0e;
}

.site-pagination-8 .page-item.active .page-link {
	background: linear-gradient(135deg, #111 0%, #000 100%);
}

/* === ALERTS === */
.alert-no-record {
	color: #fff;
	background: var(--gradient-dark);
	border: 0;
	font-size: 14px;
	border-radius: var(--border-radius);
	padding: 16px;
	box-shadow: var(--shadow-sm);
}

/* === ANIMATIONS === */
@keyframes progress-shrink {
	0% {
		width: 100%;
	}
	100% {
		width: 0%;
	}
}

@keyframes notify-in {
	0% {
		left: -50px;
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		left: 0px;
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes notify-in-out {
	0% {
		left: -50px;
		opacity: 0;
		transform: scale(0.8);
	}
	5% {
		left: 0px;
		opacity: 1;
		transform: scale(1);
	}
	95% {
		left: 0px;
		opacity: 1;
		transform: scale(1);
	}
	100% {
		left: -50px;
		opacity: 0;
		transform: scale(0.8);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

/* === NOTIFICATIONS === */
#notificationsContainer {
	position: fixed;
	max-width: 340px;
	z-index: 99999;
	margin: 10px;
}

.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: 6px;
	background: linear-gradient(135deg, #b5d3ed 0%, #9cc0e0 100%);
	width: 320px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

#notificationsContainer .notification::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 2s infinite;
}

.n-animate-in {
	animation: notify-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.n-animate {
	animation: notify-in-out 6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification .pad {
	padding: 16px;
	margin-bottom: 0;
}

.notification .pad .message {
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	display: inline-block;
	float: left;
	width: calc(100% - 20px);
	line-height: 1.5;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.notification .pad .close {
	display: inline-block;
	float: right;
	width: 20px;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
}

.notification .pad .close:hover {
	transform: scale(1.2) rotate(90deg);
}

.close-btn {
	height: 14px;
	width: 14px;
	background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='iso-8859-1'?%3E%3C!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%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='%23FFFFFF'/%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 14px 14px;
	transition: all var(--transition-speed) ease;
}

.close-btn:hover {
	transform: rotate(90deg);
}

.btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%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.75em auto no-repeat;
	opacity: 0.7;
	transition: all var(--transition-speed) ease;
}

.btn-close:hover {
	opacity: 1;
	transform: scale(1.2);
}

.notification .progressContainer {
	clear: both;
	float: left;
	padding: 0 16px 16px;
	width: 100%;
	text-align: left;
}

.notification .progressContainer .progress {
	background-color: rgba(255, 255, 255, 0.3);
	min-height: 4px;
	width: 100%;
	border-radius: 10px;
	bottom: 0px;
	overflow: hidden;
}

.progress-animate {
	height: 4px;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
	animation: progress-shrink 6s linear;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* === STATION DATA === */
.station-data {
	color: #111;
	font-size: 14px;
	line-height: 1.7;
}

.station-data a {
	text-decoration: none;
	color: var(--primary-color);
	font-weight: 600;
	transition: all var(--transition-speed) ease;
	position: relative;
}

.station-data a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width var(--transition-speed) ease;
}

.station-data a:hover::after {
	width: 100%;
}

.station-data .sep {
	margin: 0 6px;
	opacity: 0.5;
}

.description {
	display: block;
	margin: 8px 0;
	font-size: 14px;
	line-height: 1.7;
	color: #555;
}

/* === VOLUME BAR === */
.jp-volume-bar {
	overflow: hidden;
	background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
	width: 100%;
	height: 8px;
	margin: 8px 0;
	cursor: pointer;
	border-radius: 10px;
	position: relative;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jp-volume-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 3s infinite;
}

.jp-volume-bar-value {
	background: var(--gradient-primary);
	width: 0;
	height: 8px;
	border-radius: 10px;
	position: relative;
	transition: width 0.2s ease;
	box-shadow: 0 0 10px rgba(146, 198, 108, 0.5);
}

.jp-volume-bar-value::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: #fff;
	border: 3px solid var(--primary-color);
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	cursor: grab;
}

.jp-volume-bar-value:active::after {
	cursor: grabbing;
}

.jp-current-time {
	color: #111;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Courier New', monospace;
}

/* === GENRE IMAGE === */
.genre-image {
	position: absolute;
	bottom: 0px;
	line-height: 40px;
	padding: 0 16px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0,
			rgba(0, 0, 0, 0.7) 60%,
			rgba(0, 0, 0, 0.9) 100%);
	width: 100%;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	transition: all var(--transition-speed) ease;
}

.genre-image:hover {
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0,
			rgba(0, 0, 0, 0.8) 60%,
			rgba(0, 0, 0, 1) 100%);
	padding: 0 20px;
}

/* === MODAL === */
.modal-backdrop.show {
	z-index: 999998;
	opacity: 0.8;
	backdrop-filter: blur(5px);
}

.modal {
	z-index: 999999;
}

.modal-content {
	border: 0;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.modal-body {
	background: linear-gradient(135deg, #fcfcfb 0%, #f5f5f5 100%);
	padding: 24px;
}

.modal-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
	padding: 20px 24px;
	background: #fff;
}

.modal-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding: 16px 24px;
	background: #fff;
}

.modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.close {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #555;
	text-shadow: none;
	border: 0;
	background-color: transparent;
	opacity: 0.7;
	transition: all var(--transition-speed) ease;
}

.close:hover {
	opacity: 1;
	transform: scale(1.2) rotate(90deg);
}

#MyModal {
	z-index: 999999 !important;
	font-size: 14px;
	font-weight: 400;
}

.submit-button {
	color: #fff;
	background: var(--gradient-primary);
	border: 0;
	font-size: 14px;
	padding: 10px 24px;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all var(--transition-speed) ease;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* === SOCIAL ICONS === */
.twitter-icon,
.facebook-icon,
.telegram-icon,
.whatsapp-icon {
	fill: #fff;
	transition: all var(--transition-speed) ease;
}

.twitter-icon {
	width: 16px;
	margin-top: -1px;
}

.facebook-icon {
	width: 11px;
	margin-top: -2px;
}

.telegram-icon {
	width: 15px;
	margin-top: -2px;
}

.whatsapp-icon {
	width: 16px;
	margin-top: -2px;
}

.mute-icon,
.unmute-icon {
	fill: #666;
	width: 18px;
	height: 18px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.mute-icon:hover,
.unmute-icon:hover {
	fill: var(--primary-color);
	transform: scale(1.2);
}

.report-icon {
	fill: #ffcb00;
	width: 22px;
	margin-top: -1px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.report-icon:hover {
	fill: #ffc400;
	transform: scale(1.15);
	filter: drop-shadow(0 0 8px rgba(255, 203, 0, 0.5));
}

.random-icon {
	fill: #79b04f;
	width: 22px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.random-icon:hover {
	transform: rotate(180deg) scale(1.15);
	fill: #6a9d45;
}

.share-icon {
	fill: #351837;
	width: 20px;
	margin-top: -3px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.share-icon:hover {
	transform: scale(1.15);
	fill: #250a26;
}

.heart-icon {
	fill: rgba(223, 24, 80, 0.4);
	width: 22px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.heart-icon:hover {
	fill: rgba(223, 24, 80, 0.8);
	transform: scale(1.2);
	animation: pulse 0.5s ease;
}

.vote-icon {
	fill: #fff;
	width: 18px;
	transition: all var(--transition-speed) ease;
}

.favorites {
	border: 0;
	padding: 6px 12px;
	background: #fff;
	border-radius: 8px;
	transition: all var(--transition-speed) ease;
	box-shadow: var(--shadow-sm);
}

.favorites:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.facebook-footer,
.telegram-footer {
	fill: #fff;
	height: 20px;
	transition: all var(--transition-speed) ease;
}

.twitter-footer {
	fill: #fff;
	height: 22px;
	transition: all var(--transition-speed) ease;
}

.facebook-footer:hover,
.telegram-footer:hover,
.twitter-footer:hover {
	transform: scale(1.2) translateY(-2px);
	filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

/* === SOCIAL BOXES === */
.facebook-box,
.twitter-box,
.whatsapp-box,
.telegram-box {
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border-radius: 8px;
	display: inline-block;
	border: 0;
	padding: 0;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.facebook-box::before,
.twitter-box::before,
.whatsapp-box::before,
.telegram-box::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.4s, height 0.4s;
}

.facebook-box:hover::before,
.twitter-box:hover::before,
.whatsapp-box:hover::before,
.telegram-box:hover::before {
	width: 80px;
	height: 80px;
}

.facebook-box {
	background: linear-gradient(135deg, #4267b2 0%, #365899 100%);
}

.facebook-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(66, 103, 178, 0.4);
}

.twitter-box {
	background: linear-gradient(135deg, #111 0%, #000 100%);
}

.twitter-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(17, 17, 17, 0.4);
}

.whatsapp-box {
	background: linear-gradient(135deg, #71c169 0%, #5fa956 100%);
}

.whatsapp-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(113, 193, 105, 0.4);
}

.telegram-box {
	background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
}

.telegram-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 136, 204, 0.4);
}

.mute-box {
	width: 18px;
	height: 20px;
	display: inline-block;
	text-align: center;
	overflow: hidden;
}

/* === BUTTONS === */
.up-button {
	background: linear-gradient(135deg, #837a6f 0%, #6d655c 100%);
	color: #fff;
	border: 0;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.up-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

#up {
	line-height: 24px;
}

.down-button {
	background: linear-gradient(135deg, #444 0%, #333 100%);
	color: #fff;
	border: 0;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.down-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

#down {
	line-height: 24px;
	height: 12px;
	display: block;
}

/* === COOKIE ALERT === */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 99999999;
	opacity: 0;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	font-size: 15px;
	color: #ecf0f1;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%);
	backdrop-filter: blur(10px);
	padding: 20px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookiealert.show {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 1s;
}

.cookiealert a {
	text-decoration: underline;
	color: var(--primary-color);
	font-weight: 600;
	transition: all var(--transition-speed) ease;
}

.cookiealert a:hover {
	color: #7ab055;
}

.cookiealert .acceptcookies {
	margin: 0 0 0 10px;
	text-align: center;
	padding: 8px 20px;
	font-size: 14px;
	background: var(--gradient-primary);
	color: #fff;
	border: 0;
	border-radius: 8px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.cookiealert .acceptcookies:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(146, 198, 108, 0.4);
}

/* === FAQs === */
.faqs .accordion-item {
	font-size: 15px;
	border: 2px solid #f0f0f0;
	border-radius: var(--border-radius);
	margin-bottom: 12px;
	overflow: hidden;
	transition: all var(--transition-speed) ease;
}

.faqs .accordion-item:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-sm);
}

.faqs .accordion-button {
	font-size: 16px;
	font-weight: 600;
	box-shadow: none !important;
	padding: 16px 20px;
	transition: all var(--transition-speed) ease;
}

.faqs .accordion-button:not(.collapsed) {
	color: #111;
	font-weight: 700;
	background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.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='%2392c66c'%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");
	transform: rotate(180deg);
}

.faqs .accordion-body {
	padding: 20px;
	line-height: 1.7;
}

.faqs .accordion-body p:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

/* === FORMS === */
#comment-form,
#contact-form,
#submission-form {
	font-size: 15px;
	padding: 24px;
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
}

.comment-button {
	background: var(--gradient-primary);
	padding: 10px 20px;
	font-size: 14px;
	border: 0;
	border-radius: 8px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all var(--transition-speed) ease;
	cursor: pointer;
}

.comment-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(129, 193, 75, 0.4);
}

/* === PAGE DETAILS === */
.page-details p,
.radio-details p {
	margin-bottom: 12px;
	line-height: 1.7;
}

.page-details p:last-child,
.radio-details p:last-child {
	margin-bottom: 0;
}

/* === USER REVIEWS === */
.user-reviews {
	background: #fff;
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	margin-bottom: 16px;
	transition: all var(--transition-speed) ease;
}

.user-reviews:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.user-reviews .name {
	color: #ce2525;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 4px;
}

.user-reviews .date {
	color: #666;
	font-size: 13px;
	margin-bottom: 8px;
	font-style: italic;
}

.user-reviews .comment {
	color: #333;
	font-size: 15px;
	line-height: 1.7;
	display: table;
}

/* === BOOTSTRAP SELECT === */
.bootstrap-select .filter-option {
	font-size: 15px;
}

.bootstrap-select .btn:hover {
	color: #111;
}

.bootstrap-select a {
	color: #111;
	padding: 10px 14px;
	font-size: 15px;
	border-bottom: 1px solid #f5f5f5;
	display: block;
	transition: all var(--transition-speed) ease;
}

.bootstrap-select a:hover {
	background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
	padding-left: 18px;
}

/* === UTILITY CLASSES === */
.fade-in {
	animation: fadeIn 0.6s ease;
}

.slide-in-right {
	animation: slideInRight 0.6s ease;
}

.pulse-animate {
	animation: pulse 2s infinite;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991px) {
	:root {
		--border-radius: 10px;
	}

	body {
		font-size: 14px;
	}

	.cookiealert {
		font-size: 14px;
		padding: 16px;
	}

	.cookiealert .acceptcookies {
		font-size: 12px;
		margin: 8px 0 0;
		display: block;
		width: 100%;
	}

	.menu-icon,
	#menu-opener {
		width: 28px;
		height: 25px;
		margin-left: 10px;
	}

	.report-icon {
		width: 24px;
	}

	.random-icon {
		width: 24px;
	}

	.share-icon {
		width: 22px;
	}

	.heart-icon {
		width: 24px;
	}

	.station-data {
		font-size: 15px;
	}

	.description {
		font-size: 15px;
		line-height: 1.7;
	}

	.jp-controls svg {
		width: 56px;
		height: 56px;
		padding: 20px;
		margin-bottom: 4px;
	}

	.jp-current-time {
		font-size: 15px;
	}

	.container {
		padding: 0 16px;
	}

	.player {
		padding: 20px;
	}

	.section-title {
		font-size: 18px;
	}

	.letter {
		font-size: 24px;
	}

	#notificationsContainer {
		max-width: 300px;
	}

	#notificationsContainer .notification {
		width: 100%;
	}

	.modal-body {
		padding: 20px;
	}
}

@media (max-width: 576px) {
	.player .station-name h1 {
		font-size: 20px;
	}

	.section-title {
		font-size: 16px;
	}

	.jp-controls svg {
		width: 50px;
		height: 50px;
		padding: 17px;
	}

	.form-control,
	.form-select {
		padding: 10px 14px;
	}

	.btn {
		padding: 8px 20px;
	}
}

/* === PRINT STYLES === */
@media print {
	.top-menu,
	.footer-container,
	.cookiealert,
	#notificationsContainer {
		display: none !important;
	}
}

/* === DARK MODE SUPPORT === */
@media (prefers-color-scheme: dark) {
	/* Add dark mode styles here if needed */
}

/* === ACCESSIBILITY === */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
	outline: 3px solid var(--primary-color);
	outline-offset: 2px;
}

/* === END OF ENHANCED CSS === */