:root {
	--bg: #ffffff;
	--text: #000;
	--accent: #ffbb00;
	--border: #eee;
	--header-bg: #fff;
	--muted: #888;
	--sb-thumb: #ccc;
}
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #121212;
		--text: #fff;
		--border: #2a2a2a;
		--header-bg: #121212;
		--muted: #a0a0a0;
		--sb-thumb: #444;
	}
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--bg); color: var(--text); overflow-x: hidden; }
html { scrollbar-width: thin; scrollbar-color: var(--sb-thumb) transparent; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--sb-thumb); border-radius: 10px; }
.header { position: fixed; top: 0; left: 0; width: 100%; height: 70px; background: var(--header-bg); border-bottom: 1px solid var(--border); z-index: 10001; display: flex; align-items: center; }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; width: 100%; padding: 0 5%; }
.logo-img { max-height: 32px; width: auto; }
.nav { display: flex; gap: 30px; }
.nav-link { text-decoration: none; color: var(--text); font-weight: 800; font-size: 13px; opacity: 0.5; transition: 0.2s; padding: 5px 0; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link.active { color: var(--accent); opacity: 1; }
.nav-link.active { border-bottom-color: var(--accent); }
.announcements { width: 100%; margin-top: 70px; height: 400px; background: #ff4040; overflow: hidden; position: relative; }
.slides { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); height: 100%; }
.slide { 
	min-width: 100%; 
	height: 100%; 
	background-size: contain; 
	background-repeat: no-repeat;
	background-position: center; 
	text-decoration: none; 
	background-color: #000;
}
.slide-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.2); border: none; color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; transition: 0.2s; display: flex; align-items: center; justify-content: center; }
.slide-nav:hover { background: var(--accent); color: #000; }
.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--accent); width: 24px; border-radius: 10px; }
.main-layout { max-width: 1200px; margin: 0 auto; padding: 40px 5%; }
.section-title { font-size: 22px; font-weight: 900; margin: 40px 0 25px; text-transform: uppercase; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 20px; }
.news-item { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; transition: 0.4s; background: var(--border); }
.news-item:hover { transform: scale(1.02); }
.news-item.size-1x1 { grid-column: span 1; grid-row: span 1; }
.news-item.size-2x1 { grid-column: span 2; grid-row: span 1; }
.news-item.size-2x2 { grid-column: span 2; grid-row: span 2; }
.news-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.5s; }
.news-item:hover .news-img { transform: scale(1.1); }
.news-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; }
.news-overlay h3 { font-size: 18px; font-weight: 800; line-height: 1.3; }
.footer-player { position: fixed; bottom: 0; left: 0; width: 100%; height: 90px; background: var(--header-bg); border-top: 1px solid var(--border); z-index: 9000; padding: 0 5%; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; height: 100%; }
.fp-left { display: flex; align-items: center; gap: 20px; }
.fp-controls { color: var(--accent); font-size: 24px; cursor: pointer; width: 30px; text-align: center; }
.fp-meta-clickable { display: flex; align-items: center; gap: 15px; cursor: pointer; }
.fp-img-mini { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.fp-track-info { display: flex; flex-direction: column; }
.fp-artist { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; }
.fp-title { font-size: 15px; font-weight: 900; color: var(--text); }
.fp-right { display: flex; align-items: center; gap: 30px; }
.volume-container { display: flex; align-items: center; gap: 15px; }
.volume-slider { height: 5px; background: var(--border); border-radius: 10px; position: relative; cursor: pointer; }
.v-slider-mini { width: 100px; }
.v-slider-full { width: 200px; }
.v-level { position: absolute; height: 100%; background: var(--accent); border-radius: 10px; }
.v-icon-sync { color: var(--accent); cursor: pointer; font-size: 18px; width: 22px; text-align: center; }
.fp-expand-btn { color: var(--accent); cursor: pointer; font-size: 18px; opacity: 0.5; transition: 0.3s; }
.fp-expand-btn:hover { opacity: 1; }
.full-player { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg); z-index: 10002; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.full-player.active { transform: translateY(0); }
.fp-container { display: flex; height: 100%; width: 100%; }
.fp-main { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 60px; }
.fp-close-icon { position: absolute; top: 40px; left: 40px; font-size: 28px; cursor: pointer; opacity: 0.5; transition: 0.3s; }
.fp-close-icon:hover { opacity: 1; transform: translateY(5px); }
.fp-hero-content { display: flex; align-items: center; gap: 80px; max-width: 1000px; width: 100%; }
.fp-album-art { position: relative; width: 450px; height: 450px; flex-shrink: 0; }
.fp-big-cover { width: 100%; height: 100%; border-radius: 30px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.fp-play-btn-large { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #000; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 30px rgba(255,187,0,0.4); }
.fp-play-btn-large:hover { transform: translate(-50%, -50%) scale(1.1); }
.fp-track-meta { flex: 1; }
.fp-label { color: var(--accent); font-weight: 900; font-size: 12px; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.fp-artist-name { font-size: 32px; color: var(--muted); margin-bottom: 10px; font-weight: 700; }
.fp-song-title { font-size: 58px; font-weight: 900; line-height: 1.1; text-transform: uppercase; margin-bottom: 40px; }
.fp-volume-row { display: flex; align-items: center; gap: 20px; }
.fp-scroll-side { width: 450px; overflow-y: auto; padding: 80px 40px; border-left: 1px solid var(--border); }
.fp-sidebar-title { font-size: 20px; font-weight: 900; margin-bottom: 30px; }
.history-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; opacity: 0.8; transition: 0.3s; }
.history-item:hover { opacity: 1; }
.h-thumb { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.h-info { flex: 1; }
.h-title { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.h-artist { font-size: 13px; color: var(--muted); font-weight: 600; }
.h-time { font-size: 12px; color: var(--muted); font-weight: 700; }
.news-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 20000; display: none; align-items: center; justify-content: center; padding: 40px; }
.news-modal.active { display: flex; }
.nm-content { background: var(--bg); width: 100%; max-width: 1000px; max-height: 90vh; border-radius: 30px; overflow-y: auto; position: relative; }
.nm-close { position: absolute; top: 30px; right: 30px; font-size: 24px; color: #fff; cursor: pointer; z-index: 10; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.nm-header { height: 450px; background-size: cover; background-position: center; }
.nm-body { padding: 60px; }
.nm-body h1 { font-size: 42px; font-weight: 900; margin-bottom: 30px; line-height: 1.1; }
.nm-body div { font-size: 18px; line-height: 1.8; color: var(--muted); }
.site-footer { border-top: 1px solid var(--border); padding: 60px 0 150px; }
.footer-logos-centered { display: flex; align-items: center; justify-content: center; gap: 50px; opacity: 0.4; }
.f-logo-partner { height: 40px; }
.f-logo-station { height: 35px; }
@media (max-width: 1100px) {
	.fp-container { flex-direction: column; }
	.fp-scroll-side { width: 100%; border-left: none; border-top: 1px solid var(--border); }
	.fp-hero-content { flex-direction: column; gap: 40px; text-align: center; }
	.fp-volume-row { justify-content: center; }
	.news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.nav { display: none; }
	.fp-album-art { width: 280px; height: 280px; }
	.fp-song-title { font-size: 32px; }
	.news-grid { grid-template-columns: 1fr; }
	.fp-right .volume-container { display: none; }
}
.tabs-scroll { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 15px; scrollbar-width: none; }
.tabs-scroll::-webkit-scrollbar { display: none; }
.tab-btn { background: var(--header-bg); border: 1px solid var(--border); color: var(--text); padding: 12px 25px; border-radius: 30px; font-weight: 800; font-size: 13px; cursor: pointer; transition: 0.3s; white-space: nowrap; }
.tab-btn:hover { border-color: var(--accent); }
.tab-btn.active { background: var(--accent); border-color: var(--accent); color: #000; }
.day-content { display: none; animation: fadeIn 0.4s ease; }
.day-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sched-item { display: flex; align-items: center; padding: 20px; background: var(--header-bg); border: 1px solid var(--border); border-radius: 15px; margin-bottom: 15px; gap: 20px; }
.sched-time { font-size: 18px; font-weight: 900; color: var(--accent); min-width: 70px; }
.sched-info h4 { font-size: 16px; font-weight: 800; }
.sched-info p { font-size: 12px; color: var(--muted); text-transform: uppercase; font-weight: 700; margin-top: 4px; }

.site-footer {
    padding: 40px 20px 100px 20px; 
    background: var(--header-bg);
    border-top: 1px solid var(--border);
}

.footer-logos-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logos-centered img {
    height: 40px; 
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.footer-logos-centered a:hover img {
    opacity: 1;
    transform: scale(1.05); 
}

.footer-bottom-line {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.tg-footer-link {
    font-size: 24px;
    color: var(--text);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.tg-footer-link:hover {
    color: #0088cc; 
    transform: translateY(-3px);
}

.f-bottom-right {
    display: flex;
    gap: 20px;
}

.legal-link {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent); 
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-bottom-line {
        flex-direction: column; 
        gap: 15px;
        text-align: center;
    }
    
    .f-bottom-right {
        justify-content: center;
    }
}

.contacts-hero {
	text-align: center;
	padding: 60px 20px;
}
.page-title {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 10px;
	letter-spacing: -1px;
}
.page-subtitle {
	color: var(--muted);
	font-size: 18px;
}
.contacts-grid {
	max-width: 1200px;
	margin: 0 auto 100px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	padding: 0 20px;
}
.contact-card {
	background: var(--header-bg);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 40px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contact-card:hover {
	border-color: var(--accent);
	transform: translateY(-5px);
}
.card-icon {
	font-size: 40px;
	color: var(--accent);
	margin-bottom: 20px;
}
.contact-card h3 {
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 900;
}
.contact-card p {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.card-link {
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}

.site-footer {
	padding: 60px 20px 120px 20px;
	background: var(--header-bg);
	border-top: 1px solid var(--border);
}
.footer-logos-centered {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-bottom: 40px;
}
.f-logo-partner, .f-logo-station {
	height: 40px;
	width: auto;
	transition: 0.3s;
	opacity: 0.8;
}
.footer-bottom-line {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border);
	padding-top: 25px;
}
.tg-footer-link {
	font-size: 24px;
	color: var(--text);
	transition: 0.3s;
}
.f-bottom-right {
	display: flex;
	gap: 25px;
}
.legal-link {
	font-size: 13px;
	color: var(--muted);
	text-decoration: none;
}

.announcements {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.slider {
    width: 100%;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%; 
    height: 400px;   
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    text-decoration: none;
    position: relative;
    background-color: #ff4040;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}
@media (max-width: 768px) {
	.header-inner {
		padding: 0 15px;
	}
	.logo-img {
		max-height: 24px;
	}
	.nav {
		gap: 15px;
	}
	.nav-link {
		font-size: 11px;
	}

	.announcements {
		height: 250px;
		margin-top: 70px;
	}
	.slide {
		height: 250px;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.slide-overlay {
		padding: 20px;
	}
	.slide-overlay h2 {
		font-size: 18px;
	}
	.slide-nav {
		width: 40px;
		height: 40px;
		display: none; 
	}

	.main-layout {
		padding: 20px 15px;
	}
	.section-title {
		font-size: 18px;
		margin: 20px 0 15px;
	}
	.news-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		gap: 15px;
	}
	.news-item.size-1x1, 
	.news-item.size-2x1, 
	.news-item.size-2x2 {
		grid-column: span 1;
		grid-row: span 1;
		height: 200px;
	}

	.footer-player {
		height: 80px;
		padding: 0 15px;
	}
	.fp-img-mini {
		width: 44px;
		height: 44px;
	}
	.fp-title {
		font-size: 13px;
	}
	.fp-right .volume-container {
		display: none; 
	}
	.fp-controls {
		font-size: 20px;
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.fp-main {
		padding: 40px 20px;
		flex-direction: column;
	}
	.fp-hero-content {
		gap: 30px;
		flex-direction: column;
		text-align: center;
	}
	.fp-album-art {
		width: 260px;
		height: 260px;
	}
	.fp-play-btn-large {
		width: 80px;
		height: 80px;
		font-size: 28px;
	}
	.fp-song-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.fp-artist-name {
		font-size: 20px;
	}
	.fp-volume-row {
		justify-content: center;
		width: 100%;
	}
	.v-slider-full {
		width: 100%;
		max-width: 250px;
	}
	.fp-scroll-side {
		width: 100%;
		border-left: none;
		border-top: 1px solid var(--border);
		padding: 40px 20px;
	}

	.nm-content {
		max-height: 95vh;
		border-radius: 20px 20px 0 0;
	}
	.nm-header {
		height: 250px;
	}
	.nm-body {
		padding: 30px 20px;
	}
	.nm-body h1 {
		font-size: 24px;
	}
	.nm-body div {
		font-size: 16px;
	}

	.footer-logos-centered {
		gap: 20px;
		flex-wrap: wrap;
	}
	.f-logo-partner, .f-logo-station {
		height: 30px;
	}
	.footer-bottom-line {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	.f-bottom-right {
		flex-direction: column;
		gap: 10px;
	}

	.page-title {
		font-size: 32px;
	}
	.contacts-grid {
		grid-template-columns: 1fr;
	}
	.contact-card {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	.nav {
		display: none; 
	}
	.header-inner {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.nav {
		display: none; 
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: var(--header-bg);
		flex-direction: column;
		gap: 0;
		border-bottom: 1px solid var(--border);
		box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	}

	.nav.mobile-active {
		display: flex;
	}

	.nav-link {
		width: 100%;
		padding: 20px 25px;
		border-bottom: 1px solid var(--border);
		font-size: 14px;
		opacity: 1; 
	}

	.header-inner {
		cursor: pointer;
	}
}
