@import url('https://fonts.googleapis.com/css2?family=Comme:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Metal+Mania&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root{
	--primeColor: #111;
	--secondaryColor: #333;
	--textColor: #999;
	--borderLightColor: #c71c1c;
	--borderDarkColor: #631b1b;
	--fontColor: #fff;
	--linkNormalColor: #c71c1c;
	--linkHoverColor: #ff5454;
	--borderRadius: 8px;
	}

*{
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

body{
	background: var(--primeColor);
	background-image: url('./data/images/background.jpg'); 
	background-size: cover; 
	background-position: center center; 
	background-repeat: no-repeat; 
	background-attachment: fixed; 
	min-height: 100vh;	
	color: var(--fontColor);	
}
a{
	text-decoration: none;
	color: var(--linkNormalColor);
}
a:hover{
	color: var(--linkHoverColor);
}


.headerFont {
	font-family: "Metal Mania", system-ui;
	font-weight: 400;
	font-style: normal;
}

.menuFont{
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;	
}

.bodyFont{
	font-family: "Elms Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;	
}

#mainPageWrapper {
	margin: 16px auto;
	border: 1px solid var(--borderDarkColor);
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
	background-clip: border-box;
	background-image: url('./data/images/page-bg.jpg'); 
	background-position: center center fixed; 	
	overflow: hidden;
	transition: opacity 0.3s ease;
	min-width: 960px;
	max-width: 1366px;
}

#primaryHeaders{
	display: block;
	height: 262px;
	text-align: center;
	justify-content: center;
	align-content: center;
	align-items: center;	
}

#headersHolder{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;	
}

#headerAvatar, #headerTexts{
	height: 262px;
}

#headerAvatar{
	width: 192px;
	justify-content: center;
	align-content: center;
	align-items: center;		
}

#headerTexts{
	width: 584px;
	justify-content: center;
	align-content: center;
	align-items: center;		
}

#headerAvatar img{
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid var(--borderDarkColor);
}

.mainHeaderPrimary{
	font-size: 64px;
	margin: 16px 16px;
	text-shadow: 0 0 10px white;
}

.mainHeaderSecondary{
	font-size: 48px;
	margin: 16px 16px;
	text-shadow: 0 0 10px white;
}

#mainMenuWrapper{
	display: flex;
	width: 100%;
	height: 76px;
	text-align: center;
	background: var(--primeColor);
	border-top: 1px solid var(--borderDarkColor);
	border-bottom: 1px solid var(--borderDarkColor);
	transition: opacity 240ms ease, visibility 240ms ease;
}

#topMenu, #mainMenuHolder{
	margin: auto;
	display: flex;
	text-align: center !important;
	margin: auto;	
}

#topMenu ul, #topMenu li{
	list-style: none;
}

#topMenu li{
	display: inline !important;
}

#topMenu a{
	justify-content: center;
	align-content: center;
	align-items: center;
	text-align: center !important;
	padding: 22px 32px !important;
	width: 206px;
	font-weight: 400;
}

#topMenu a:hover{
	font-weight: 400;
}

.menu-link {
	font-size: 18px;
	color: var(--linkNormalColor);
	font-family: inherit;
	cursor: pointer;
	position: relative;
	border: none;
	background: none;
	text-transform: uppercase;
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-duration: 400ms;
	transition-property: color;
	padding: 64px 64px !important;
}

.menu-link:focus,
.menu-link:hover {
	color: var(--linkHoverColor);
}

.menu-link:focus:after,
.menu-link:hover:after {
	width: 100%;
	left: 0%;
}

.menu-link:after {
	content: "";
	pointer-events: none;
	bottom: 0px;
	left: 50%;
	position: absolute;
	width: 0%;
	height: 2px;
	background-color: var(--linkHoverColor);
	transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-duration: 400ms;
	transition-property: width, left;
}

#primaryBodyContent{
	display: block;
	width: 100%;
	border-bottom: 1px solid var(--borderDarkColor);
}

.innerContent{
	display: flex;
	transition: opacity 0.3s ease;
	margin: 8px !important;
	align-content: start;
}

.leftBlockContent, .rightBlockContent{
	flex: 1;
	justify-content: center;
	align-content: start;
	text-align: justify !important;
	margin: 16px !important;
}

#mainFooter{
	display: flex;
	height: 192px;
	width: 100%;
}

#pageFooter{
	display: flex;
	color: #666;
	text-align: center;
	margin: auto;	
}

#flexFooter{
	flex: 1;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-weight: 400;
}

#pinned {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 64px;
	height: 64px;
	color: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease; /* płynne pokazywanie/ukrywanie */
	opacity: 0; /* domyślnie ukryty */
	pointer-events: none;
	z-index: 9999;
	font-size: 64px;
}

#recentReleaseFrame{
	width: 512px;
	border: 1px solid var(--borderDarkColor);
	display: block;
	background-color: #111;
	border-radius: var(--borderRadius);
	text-align: center;
	margin: auto;
}

#recentReleaseText, #recentReleaseLicense{
	text-align: center;
	line-height: 2.2em;
	margin: 8px 8px;
}

#recentReleaseLicense{
	font-weight: 700;
}

#recentReleaseDataParent{
	display: flex;
	margin: 8px 8px;
	text-align: left;
}

#recentlyReleasedThumb, #recentlyReleasedData{
	flex: 0;
	margin: 4px 4px;
	justify-content: center;
	align-content: center;
	align-items: center;	
}
#recentlyReleasedData{
	flex: 1;
}
#recentlyReleasedThumb{
	margin: 12px 12px;
	padding: 12px 12px;
}

#recentlyReleasedThumb img{
	border-radius: var(--borderRadius);
	border: 1px solid var(--borderDarkColor);
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;	
	width: 192px;
	height: 108px;
}

.innerContent img,
.leftBlockContent img,
.rightBlockContent img{
	border-radius: var(--borderRadius);
	border: 1px solid var(--borderDarkColor);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;		
	box-sizing: border-box;
	align-content: start;
	align-items: start;
	justify-content: start;
	display: flex;
	width: 100%;
}

.dataCell{
	font-size: 14px;
	font-weight: 500;
	height: 32px;
	line-height: 32px;
}

/* From Uiverse.io by NorthFishHasNa */ 
.front-button {
	display: inline-block;
	border-radius: 4px;
	background-color: var(--linkNormalColor);
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-size: 12px;
	padding: 2px 2px;
	width: 96px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
}

.front-button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	color: #fff;
}

.front-button span:after {
	content: '»';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -15px;
	transition: 0.5s;
	color: #fff;
}

.front-button:hover span {
	padding-right: 16px;
	color: #fff;
}

.front-button:hover span:after {
	opacity: 1;
	right: 0;
	color: #fff;
}

.pageMainText{
	line-height: 1.8em;
	font-size: 18px;
	text-align: justify;
	width: 90%;
	display: block;
	margin: auto;
}

.pageMainText p{
	margin: 16px;
	margin-bottom: 46px;
	font-weight: 600;
	color: var(--textColor);
}

.songMainFrame{
	display: flex;
	font-weight: 600;
	background-color: #0e0e0e;
	border-bottom: 1px solid var(--borderDarkColor);
}

.songMainFrame:last-child{
	border: none;
}

.songDataParent{
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.songThumb{
	width: 192px;
	margin-left: 16px;
}

.songThumb img{
	width: 80%;
}

.songYoutube, 
.songDownload, 
.songDuration,
.songGenre,
.songTitle{
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: auto;
	height: 112px;
}

.songYoutube, 
.songDownload{
	width: 146px;
}

.songTitle{
	width: 728px;
	text-align: left;
}

.songGenre{
	width: 132px;
	text-align: left;
}

.songDuration{
	width: 126px;
	text-align: center;
}

.seasonIndex{
	border-radius: 50%;
	border: 1px solid var(--linkNormalColor);
	display: inline-table;
	width: 48px;
	height: 48px;
	line-height: 48px;
	font-weight: 600;
	font-size: 18px;
}

.seasonIndex:hover{
	color: #000;
	background-color: var(--linkHoverColor);
}

.songBrowser select,
.songBrowser option{
	border: 1px solid var(--linkNormalColor);
	border-radius: var(--borderRadius);
	display: inline-table;
	width: 460px;
	height: 48px;	
	background-color: #111;
	color: var(--linkColor);
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	line-height: 3em;
}

.error {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	padding: 12px;
	align-items: center;
	justify-content: start;
	background: #EF665B;
	border-radius: 8px;
	box-shadow: 0px 0px 5px -3px #111;
	display: block;
	text-align: center !important;
	margin: 12px 12px !important;
	margin-left: 27% !important;
	width: 626px;
}

.download-button {
	padding: 8px 8px;
	border-radius: 5px;
	font-weight: 600;
	border: 1px solid var(--linkNormalColor);
	font-size: 18px;
}

.download-button:hover {
	background-color: var(--linkHoverColor);
	color: white;
	transform: scale(1.1);
	font-weight: 600;
}

#randomYTVideo {
    transition: opacity 0.2s ease;
}

.divider{
	background-image: url('./data/images/divider.png');
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 96px;
}