@charset "utf-8";
/* CSS Document */

html {
    height:100%;
}

html::-webkit-scrollbar {
	width:14px;
}

html::-webkit-scrollbar-track {
    background:#444;
} 

html::-webkit-scrollbar-thumb {
    background:#333;
}

html {
    scrollbar-color: #333 #444;
    scrollbar-width: auto;
}

body {
	height:100%;
	width:100%;
	background-color:#171717;
	background:url(/images/main-bg.png);
}

a {
	outline: none; 
}

a img {
    border: 0;
}

header {
	width:100%;
	max-width:1300px;
	height: auto;
	margin:0 auto;
	padding-top:10px;
	display:flex;
	flex-direction:column;
	align-items:center;
	position:relative;
}

header a img {
	height:50px;
	vertical-align:bottom;
}

header p {
	font-family: "Inter Tight", sans-serif;
	font-weight:600;
	font-size:16px;
	color:#AAA;
	padding-top:5px;
}

.search-link img {
	position:absolute;
	top:15px;
	right:20px;
	height:36px;
	filter: invert(50%);
	opacity:0.4;
	transition:opacity 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
.search-link img:hover {
	opacity:0.5;
}
}

#dpn-box {
	width:100%;
	height: auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	padding:10px 0 30px 0;
}

.dropdown {
	position:relative;
}

.dropdown button {
	all:unset;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #DDD;
	border:2px solid #333;
	border-radius:30px;
	padding:5px 18px;
	margin-top: 20px;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
	transition:color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.dropdown button:hover {
	color: #EEE;
}
}

.dropdown button::after {
	content:"";
	background-image: url("/images/dpn-icon.png");
	background-size: 18px 18px;
	width:18px;
	height:18px;
	margin-left:7px;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 10;
    background-color:#222;
}

#genres-dpn {
    width:710px;
    height:auto;
	top:70px;
    left: 50%;
    transform: translateX(-50%);
    border-radius:7px;
    flex-wrap:wrap;
    align-content: flex-start;
    padding:5px;
    box-sizing:border-box;
}

#genres-dpn::before {
	content: "";
    position: absolute;
    top:-20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #222 transparent;
}

#genres-dpn a {
	width: 90px;
	height: auto;
	background-color: #1D1D1D;
	margin: 5px;
	padding:6px 0 5px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

#genres-dpn a img {
	width:40px;
	filter: grayscale(1);
	opacity:0.4;
	padding-bottom:5px;
	vertical-align:bottom;
}

#genres-dpn a span {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #DDD;
	transition:color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
#genres-dpn a:hover span {
	color: #00D5FF;
}
}

.show-dpn {
  display: flex;
}

.dropdown:has(.show-dpn).dropdown button::after {
	transform: rotate(180deg);
}