/* ============================================
   RADIO SHOW WEBSITE - ZONA.PLANKTON STYLE
   ============================================ */

/* FONT IMPORTS */
@font-face {
	font-family: bpdotssquare;
	src: url("/fonts/bpdotssquareSquare.woff2") format("woff2");
}

@font-face {
	font-family: "MS PGothic";
	src: local("MS PGothic"), local("MS Gothic");
}

/* THEME VARIABLES */
body {
	--basic-gap: 21px;
}

.radio-light {
	--text-color: #000000;
	--hr-border: #c0c4c0;
	--nav-border: #c0c4c0;
	--page-pattern: url("/backgrounds/stars5.png");
	--sidebar-pattern: url("/backgrounds/sidebar-pattern-default.png");
	--sidebar-border: #c0c4c0;
	--sidebar-table-bg: #ffffff;
	--sidebar-table-border: #c0c4c0;
	--underline: #c0c4c0;
	--post-bg: #ffffff;
	--post-border: #c0c4c0;
	--marquee-color: #c0c4c0;
	--thumb-border: #c0c4c0;
	--sidebar-icon: 0%;
	--scroll-color: light;
	--alert-color: #ffa700;
	--link-hover-color: #FF2164;
	--link-click-color: #0394fc;
	--banner-filter: invert(0%) hue-rotate(0turn);
	--textarea-bg: #ffffff;
	--textarea-border: #c0c4c0;
	--link-none-color: #0394fc;
	--post-title-color: #fcfcfc;
	--post-title-font: "bpdotssquare", "MS Gothic", Sans-serif;
	--post-title-weight: normal;
	--default-font: "MS PGothic", "MS Gothic", Sans-serif;
	--default-font-spacing: 1px;
	--sidebar-font: "MS PGothic", "MS Gothic", Sans-serif;
	--subtitle-color: #888888;
	--selection-color: #FFFFFF;
	--selection-bg-color: #0394fc;
	--cursor-default-color: auto;
	--cursor-click-color: pointer;
	background-color: #fcfcfc;
	--hl: #FF2164;
	--background-title-color: #fe3a74;
	--color-code-blog: #ff9000;
	--color-code-episodes: #4166e5;
	--color-code-music: #4da190;
	--color-code-updates: #8e9195;
	--color-code-webline: #672eea;
	--color-code-nowplaying: #3ab6fe;
	--color-code-downloads: #37c340;
	--color-code-aboutme: #fe3a74;
	--nav-btn-color: var(--sidebar-table-bg);
}

.radio-dark {
	--text-color: #D2CA9C;
	--hr-border: #555555;
	--nav-border: #555555;
	--page-pattern: url("/backgrounds/sidebar-pattern-pxtone.png");
	--sidebar-pattern: url("/backgrounds/sidebar-pattern-pxtone.png");
	--sidebar-border: #555555;
	--sidebar-table-bg: #000010;
	--sidebar-table-border: #00003E;
	--underline: #555555;
	--post-bg: #312f40;
	--post-border: #555555;
	--marquee-color: #69656D;
	--thumb-border: #333333;
	--sidebar-icon: 100%;
	--scroll-color: #4E4B61 #343255;
	--link-hover-color: #01F080;
	--link-click-color: #F08000;
	--banner-filter: invert(100%) hue-rotate(0turn);
	--textarea-bg: #333333;
	--textarea-border: #555555;
	--link-none-color: #f00000;
	--alert-color: #f00000;
	--post-title-color: #D2CA9C;
	--post-title-font: "bpdotssquare", "MS PGothic", Sans-serif;
	--post-title-weight: light;
	--default-font: "MS PGothic", "MS Gothic", Sans-serif;
	--sidebar-font: "CourierPrime", Sans-serif;
	--default-font-spacing: 1px;
	--subtitle-color: #888888;
	--selection-color: #D2CA9C;
	--selection-bg-color: #343255;
	--cursor-default-color: auto;
	--cursor-click-color: pointer;
	background-color: #1c1b22;
	--hl: #F08000;
	--nav-btn-color: #312f40;
	--background-title-color: #0c0c1f;
	--color-code-blog: #0c0c1f;
	--color-code-episodes: #0c0c1f;
	--color-code-music: #0c0c1f;
	--color-code-updates: #0c0c1f;
	--color-code-webline: #0c0c1f;
	--color-code-nowplaying: #0c0c1f;
	--color-code-aboutme: #0c0c1f;
	--color-code-downloads: #0c0c1f;
}

/* GLOBAL STYLES */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scrollbar-width: thin;
	scrollbar-color: var(--scroll-color);
}

::selection {
	background: var(--selection-bg-color);
	color: var(--selection-color);
}

body {
	font-family: var(--default-font);
	letter-spacing: var(--default-font-spacing);
	background-color: var(--background-color);
	background-image: var(--page-pattern);
	background-attachment: fixed;
	color: var(--text-color);
	line-height: 1.6;
	margin: 0;
	width: 100vw;
	overflow-x: hidden;
	text-align: center;
	cursor: var(--cursor-default-color);
	min-height: 100vh;
}

/* LAYOUT */
.main-container {
	max-width: 98vw;
	width: 1205px;
	margin: auto;
}

.fixedbg-holder {
	min-height: 100vh;
}

.sidebarcontainer {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

/* SIDEBAR */
#sidebar {
	box-sizing: border-box;
	background-attachment: local;
	text-align: center;
	margin: auto;
	min-height: auto;
}

#header-tv-text {
	padding: 3px 0;
	margin-bottom: 5px;
	font-size: 12px;
	font-family: "MS PGothic", Sans-serif;
	letter-spacing: 2px;
	color: var(--text-color);
	background-image: none;
	opacity: 0;
}

#header-banner {
	filter: var(--banner-filter);
	margin-bottom: 20px;
}

#header-banner img {
	max-height: 215px;
	transition: all 0.3s;
	border-radius: 15px;
	max-width: 100%;
	height: auto;
}

#tv-text {
	font-family: "MS PGothic", Sans-serif;
	font-size: 13px;
	font-weight: 700;
	position: relative;
	text-align: center;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: var(--post-bg);
	border: 1px solid var(--post-border);
	border-radius: 15px;
	max-width: 400px;
	margin: auto auto 5px;
	display: none;
}

.tv-marquee {
	overflow: hidden;
	white-space: nowrap;
	color: var(--marquee-color);
	font-family: "MS PGothic", Sans-serif;
}

.tv-marquee span {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 15s linear infinite;
}

/* NAVIGATION */
#content-table {
	background: var(--sidebar-table-bg);
	border: 1px solid var(--sidebar-table-border);
	padding: 12px 12px 7px;
	padding-top: 12px;
	overflow: auto;
	font-family: var(--sidebar-font);
	letter-spacing: default;
	margin-bottom: 4px;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

nav {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.nav-content-button {
	width: auto;
	border: 1px solid var(--nav-border);
	border-collapse: collapse;
	border-radius: 5px;
	display: grid;
	margin-bottom: 5px;
	margin-right: 10px;
	box-sizing: border-box;
	padding: 7px 5px;
	background: var(--nav-btn-color);
	min-height: 39px;
	transition: all 0.1s;
}

.nav-content-button:last-child {
	margin-bottom: 5px;
}

.nav-content-button:hover {
	transform: translateY(-2px);
}

.nav-content-button > a {
	display: flex;
	justify-content: flex-start;
	gap: 14px;
	padding: 0 5px;
	align-items: center;
	color: var(--text-color);
	text-decoration: none;
	cursor: var(--cursor-click-color);
}

.nav-content-button > a:hover {
	color: var(--link-hover-color);
}

.nav-content-button a span {
	display: inline-block;
	transition: all 0.05s;
	font-size: 15px;
	letter-spacing: 2px;
}

.sidebar-icon {
	display: inline;
	filter: invert(var(--sidebar-icon));
}

.sidebar-icon img {
	max-width: 22px;
}

.nav-content-button .sidebar-icon:last-of-type {
	display: none;
}

.nav-content-button a.active {
	color: var(--subtitle-color);
}

.home-nav {
	display: none;
}

/* THEME SELECTOR */
#theme-select {
	margin: auto;
}

#toggleTheme {
	height: 30px;
	margin-top: 5px;
	width: 100%;
	padding: 8px;
	border: 1px solid var(--sidebar-border);
	border-radius: 5px;
	background-color: var(--post-bg);
	color: var(--text-color);
	font-family: var(--default-font);
	cursor: pointer;
	font-size: 12px;
	font-family: "MS PGothic", Sans-serif;
	text-align: center;
}

/* MARQUEE */
.marquee {
	overflow: hidden;
	white-space: nowrap;
	color: var(--marquee-color);
	font-family: "bpdotssquare", Sans-serif;
	padding-bottom: 5px;
	padding: 10px;
	margin: 20px auto;
	border-radius: 5px;
}

.marquee span {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 15s linear infinite;
}

@keyframes marquee {
	0% { transform: translate(0); }
	100% { transform: translate(-100%); }
}

/* MAIN GRID */
.main-grid {
	margin: auto;
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: var(--basic-gap);
}

.basic-grid {
	display: flex;
	flex-direction: column;
	gap: var(--basic-gap);
}

#sidebar-container {
	display: flex;
	flex-direction: column;
	gap: var(--basic-gap);
}

/* BOX CONTAINERS */
.box-container {
	border: 1px solid var(--post-border);
	box-sizing: border-box;
	background-color: var(--post-bg);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	height: fit-content;
}

.box-container-inner {
	padding: 16px 20px 10px;
}

.box-container-title {
	background: var(--background-title-color);
	top: 0;
	left: 0;
	color: var(--post-title-color);
	width: 100%;
	padding: 3px;
}

.box-container-title h2 {
	margin: 0;
	font-family: var(--post-title-font);
	font-weight: var(--post-title-weight);
	line-height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	font-size: 14px;
}

.box-container-title a {
	color: inherit;
}

/* COLOR CODES */
.color-code-blog { background: var(--color-code-blog) !important; }
.color-code-episodes { background: var(--color-code-episodes) !important; }
.color-code-music { background: var(--color-code-music) !important; }
.color-code-updates { background: var(--color-code-updates) !important; }
.color-code-webline { background: var(--color-code-webline) !important; }
.color-code-nowplaying { background: var(--color-code-nowplaying) !important; }
.color-code-downloads { background: var(--color-code-downloads) !important; }
.color-code-aboutme { background: var(--color-code-aboutme) !important; }

/* BLOG POST STYLES */
.blog-post {
	margin-bottom: 20px;
	text-align: center;
	border: 1px solid var(--post-border);
	box-sizing: border-box;
	padding: 13px 15px 10px;
	width: 100%;
	margin: auto;
	background-color: var(--post-bg);
	border-radius: 10px;
	font-size: 14px;
	text-align: left;
	color: var(--text-color);
}

.homeposts-container .blog-post,
.sidebar-container___blog .blog-post {
	border: 0px;
	padding: 0;
	background-color: inherit;
	border-radius: 0;
}

.blog-post-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	position: relative;
}

.pfp {
	margin-right: 10px;
	min-width: 53px;
	width: 53px;
}

.pfp img {
	border-radius: 3px;
	max-width: 100%;
	height: auto;
}

.news-text {
	text-align: justify;
	font-family: var(--default-font);
	letter-spacing: var(--default-font-spacing);
	color: var(--text-color);
	display: flex;
	justify-content: center;
	flex-direction: column;
	font-size: 16px;
}

.news-text h1 {
	font-size: 16px;
	margin-bottom: 2px;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-decoration-color: var(--underline);
}

a[href]:hover .news-text h1 {
	color: var(--link-hover-color);
	transition: all 0.2s;
}

.blog-date {
	font-family: var(--default-font);
	letter-spacing: var(--default-font-spacing);
	font-weight: 400;
	font-size: 14px;
	text-align: left;
	color: var(--subtitle-color);
	max-width: 220px;
}

.post-number {
	text-align: justify;
	font-family: "MS PGothic", Sans-serif;
	color: var(--marquee-color);
	margin-top: 4px;
	user-select: none;
	align-self: baseline;
	letter-spacing: 1px;
	position: absolute;
	right: 0;
	top: -5px;
}

.blogpost-text {
	text-align: justify;
	font-family: var(--default-font);
	letter-spacing: var(--default-font-spacing);
	padding: 15px 0;
}

.blogpost-text p {
	margin-bottom: 15px;
}

.blogpost-text a {
	text-decoration: underline;
	color: var(--link-hover-color);
}

.blogpost-text a:hover {
	color: var(--link-click-color);
}

.blogpost-text a:active {
	color: var(--link-none-color);
}

.blogpostspreview {
	font-size: 14px;
	text-align: left;
	margin-top: 10px;
}

#signature {
	text-align: right;
	margin-top: 30px;
	font-style: italic;
	color: var(--subtitle-color);
}

/* MUSIC PLAYER */
.muzak-player {
	text-align: center;
}

.muzak-player > img {
	max-width: 120px;
	image-rendering: pixelated;
	border-radius: 5px;
	border: 1px solid var(--thumb-border);
	margin-bottom: 10px;
}

.muzak-player span {
	padding-top: 2px;
	padding-bottom: 5px;
}

.marquee-muzak {
	color: var(--marquee-color);
	font-family: "MS Mincho", Sans-serif;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	max-width: 274px;
	margin: auto;
}

.marquee-muzak span {
	white-space: nowrap;
	display: inline-block;
	animation: marquee 15s linear infinite;
}

audio {
	width: 100%;
	margin-top: 10px;
}

.lowvolume {
	border-radius: 20px;
	margin: auto !important;
}

/* CHANGELOG */
.changelog-side {
	text-align: left;
	padding: 0;
	font-size: 15px;
	font-family: var(--default-font);
	color: var(--text-color);
}

.changelog-side p {
	margin: 5px;
	font-weight: bold;
}

.changelog-side ul {
	margin-bottom: 15px;
	padding: 0 20px;
}

.changelog-side ul li {
	list-style: none;
}

.changelog-side ul li::before {
	content: "• ";
}

/* BUTTONS / WEBRING */
.webring-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.webring-buttons img {
	margin: 0 2px;
	image-rendering: pixelated;
}

.button-card {
	margin: 15px auto;
	text-align: center;
}

/* UTILITY CLASSES */
hr {
	border: 1px dashed;
	border-color: var(--hr-border);
	margin: 15px 0;
}

a {
	color: var(--text-color);
	text-decoration: none;
	cursor: var(--cursor-click-color);
	transition: color 0.2s;
}

a:hover {
	color: var(--link-hover-color);
}

a:active {
	color: var(--link-click-color);
}

p {
	color: var(--text-color);
}

ul, li {
	padding: 0;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

.img-float-right {
	float: right;
	margin-left: 1em;
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 300px;
}

.img-float-left {
	float: left;
	margin-right: 1em;
	margin-top: 5px;
	margin-bottom: 5px;
	max-width: 300px;
}

.text-center {
	text-align: center;
}

.hidden {
	display: none;
}

/* SIDEBAR ART GRID */
.sidebar_art_grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 15px;
	margin-bottom: 8px;
}

.sidebar_art_grid_main {
	grid-row: span 2;
}

.sidebar_art_grid img {
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* BUTTONS/PAGERS */
.blogpost-pager {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}

.blogpost-pager a,
.buttonarrow {
	text-decoration: none !important;
	color: var(--text-color) !important;
	border: 1px solid var(--nav-border);
	border-collapse: collapse;
	border-radius: 5px;
	display: inline-block;
	box-sizing: border-box;
	padding: 8px 16px;
	background: var(--nav-btn-color);
	cursor: var(--cursor-click-color);
	transition: all 0.1s;
}

.blogpost-pager a:hover,
.buttonarrow:hover {
	color: var(--link-hover-color) !important;
	transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
	.main-grid {
		grid-template-columns: 1fr;
	}
	
	.sidebar_art_grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 15px;
		max-width: 320px;
		margin: auto;
	}

	.sidebar_art_grid img {
		max-height: 100px;
		max-width: 100px;
	}
}

@media (max-width: 765px) {
	.post-number {
		grid-column: span 3;
	}
	
	.img-float-left,
	.img-float-right {
		float: none;
		display: block;
		max-width: 100%;
		text-align: center;
		margin: 5px auto;
	}
}

@media (max-width: 400px) {
	.news-text {
		grid-column: span 3;
	}
}

/* HIDE ELEMENTS ON SPECIFIC PAGES */
#index-page .sidebar-container___blog,
#blog-page .sidebar-container___blog,
#latest-blogpost-page .sidebar-container___blog,
#art-page .sidebar-container___lastestart,
#changelog-page .sidebar-container___siteupdates {
	display: none;
}

#title {
	display: none;
}

.blog-list .blog-post {
  margin-bottom: 25px;
}

.blogpostspreview {
  font-style: italic;
  opacity: 0.85;
}

.post-meta {
  font-size: 13px;
  color: var(--subtitle-color);
  text-align: center;
}

/* from spinitron */

element.style {
}
.main.wrapper.clearfix {
}
body.public .wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 65rem;
    width: 98%;
}
user agent stylesheet
div {
    display: block;
    unicode-bidi: isolate;
}
body.public {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
body.public {
    color: #000;
    font-family: sans-serif;
}
body.member, body.public {
    font-size: 1em;
    line-height: 1.5;
}
body.public .wrapper:after {
    clear: both;
    content: "";
    display: block;
}

