

/* © 2025 LenCraft Studios */

:root {
	--header: linear-gradient(45deg, rgba(70,70,70,1) 0%, rgba(50,50,50,1) 100%);
        --bg: rgba(30,30,30,1);
	--bg2: rgba(40,40,40,1);
	--accent: rgba(100,100,100,1);
	--text: rgba(255,255,255,1);
	--text2: rgba(200,200,200,1);
}

* {
	transition: 200ms all ease;
}

a {
	color: var(--text2);
}

@font-face {
  font-family: offstream;
  src: url(https://api.datanet.lencraftserver.de/fonts/offstream.woff2);
}

html {
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-family: "offstream", sans-serif;
	font-weight: 600;
	font-size: 16pt;
	color: var(--text);
	background: var(--bg);
	display: block;
	max-width: device-width;
}

body::-webkit-scrollbar {
  display: none;
}

body {
margin: 0;
padding: 0;
}

/* DESKTOP */

.only-mobile {
display: none;
}

.header {
	z-index: 2;
	position: fixed;
	display: inline-block;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: var(--header);
}

.header.scrolled {
	box-shadow: 0 0 1vh 1vh rgba(0,0,0,.5);
}

.header img {
	height: 100%;
	margin: 0 2vh;
	cursor: pointer;
}

.header img:hover {
	transform: scale(1.1);
	filter: brightness(.8);
}

#navbar {
        position: fixed;
        top: 0;
        left: -50vh;
        width: 150px;
        height: 100%;
        padding: 30px;
        background-color: var(--bg);
        overflow-x: hidden;
        transition: 0.3s ease-in-out;
        opacity: 0;
        z-index: 4;
	box-shadow: 0 0 10px 1px rgba(0,0,0,.5);
}

#overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        background: rgba(0, 0, 0, .7);
	backdrop-filter: blur(1vh);
	z-index: 3;
	opacity: 0;	
	pointer-events: none;
	overflow: hidden;
}

#navbar #a {
	display: inline-block;
	text-align: center;
	background-color: var(--bg2);
	text-decoration: none;
	color: white;
	width: 100%;
	border-radius: .3vh;
	padding: 10px 0;
	margin: 6px 0;
	font-size: 20px;
}

#navbar a:hover {
	filter: brightness(1.2) saturate(1.2);
}

#navbar p {
	position: fixed;
	bottom: 0;
	font-size: 50%;
	text-align: center;
	color: #80989c;
}

main {
	margin: 70px 2vh;
}

.login {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	max-width: 70vw;
	background-color: var(--bg2);
	padding: 2vh 7vw;
	border-radius: .5rem;
	box-shadow: 0 0 2vh .1vh rgba(0,0,0,.5);
}

.login h2 {
	margin: 2vh 0 5vh;
}

.input {
	border: none;
	border-radius: 1vh;
	width: 100%;
	height: 5vh;
	padding: 10px;
	background-color: rgba(255,255,255,.1);
	color: white;
	box-sizing: border-box;
	font-size: 1.7vh;
}

.submit {
	width: 100%;
	height: 5vh;
	padding: 5px;
	box-sizing: border-box;
	border: none;
	border-radius: 1vh;
	cursor: pointer;
	font-size: 1.7vh;
}

.submit:hover {
	filter: brightness(.5);
	}

.teaser-mobile {
	display: none;
}

.teaser {
	display: flex;
	width: 100%;
}

.panel {
	transition: 500ms all ease-in-out, 200ms box-shadow ease-in-out;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 50vh;
	border-radius: 2vh;
	color: white;
	cursor: pointer;
	flex: 0.5;
	filter: blur(2px) brightness(.7) saturate(.5);
	margin: 1vh;
	position: relative;
	box-shadow: 0px 0px 2vh .1vh rgba(0,0,0,.5);
}

.panel:hover {
	box-shadow: 0px 0px 2vh .1vh rgba(50,50,50,.5);
}

.panel.active {
	flex: 2;
	filter: none;
}

.panel h3 {
	position: absolute;
	bottom: 2vh;
	left: 2vh;
	opacity: 0;
	font-size: 3vh;
}

.panel a {
	opacity: 0;
	position: absolute;
        bottom: 2vh;
        right: 2vh;
	padding: 1vh;
	border-radius: 1vh;
	font-weight: 700;
	font-size: 3vh;
	background-color: white;
	color: black;
	text-decoration: none;
	box-shadow: 0px 0px 1vh .1vh rgba(0,0,0,.5);
	display: none;
	overflow: hidden;
	width: 20vh;
	text-align: center;
}

.panel a:hover {
	box-shadow: 0px 0px 1vh .1vh rgba(255,255,255,0.5);
}

.panel.active h3 {
	opacity: 1;
	text-shadow: 0 0 5px black, 0 0 10px black;
}

.panel.active > a {
	opacity: 1;
	display: block;
}

.categorys {
	display: flex;
	margin: 2vh 0;
}

.categorys .category {
	flex: 1;
	display: inline-block;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 30vh;
	font-size: 4vh;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(0,0,0,1);
	border-radius: 1vh;
	margin: 1vh;
	text-decoration: none;
	cursor: pointer;
}

.categorys .category:hover {
	box-shadow: 0 0 1vh .1vh rgba(0,0,0,.3);
	transform: scale(1.05);
}

.categorys .category:hover p {
	backdrop-filter: blur(.5vh) contrast(100%) brightness(80%);
}

.categorys .category p {
	box-sizing: border-box;
	margin: 0;
	position: relative;
	padding: 2vh;
	backdrop-filter: blur(.5vh) contrast(70%) brightness(50%);
	height: 100%;
	border-radius: 1vh;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

.video {
	position: relative;
	padding-top: 56.25%;
	background-size: cover;
	background-position: center;
	border-radius: 1rem;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.video:hover {
	transform: scale(1.02);
}

.video img#lcs {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	width: 15%;
	height: auto;
	opacity: 0.9;
}

.video img:not(#lcs) {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: auto;
	transform: translate(-50%, -50%);
	opacity: 0.8;
	transition: 0.2s ease;
	filter: invert(1);
}

    .video:hover img:not(#lcs) {
      transform: translate(-50%, -50%) scale(1.2);
	opacity: 1;
    }

    .video h3 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0;
      padding: 0.75rem;
      font-size: .8rem;
      background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
      color: #fff;
    }

.modal {
	z-index: 3;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
	overflow: auto;
}

.modal::-webkit-scrollbar {
  display: none;
}

.content {
	position: absolute;
	max-width: 50%;
	max-height: 50%;
	top: 5vh;
}

video {
	box-shadow: 0 0 4px 1px black;
	width: 100%;
	border-radius: 1vh;
}

.modal.content {
	position: relative;
	top: 10vh;
	font-size: 2vh;
	margin: auto;
	height: 100%;
	width: 50%;
}

.info img#info {
	left: 0;
	transform: translate(0,-50%);
	position: relative;
	width: 10vh;
	top: 5vh;
	border-radius: 1vh;
	filter: none;
	cursor: pointer;
}

.info img#info:hover {
	filter: contrast(.5);
}

#logo {
width: 200px;
position: absolute;
left: 50%;
transform: translate(-50%,0);
}

#hd, #fourk {
font-family: Arial;
font-size: 15px;
margin-left: 10px;
}

#hd {
color: rgba(0,150,255,1);
}

#fourk {
color: red;
}

.close {
	position: fixed;
	top: 10px;
	right: 20px;
	font-size: 7vh;
	color: white;
	cursor: pointer;
}

.close:hover {
	transform: scale(1.2);
}

#footer {
	position: relative;
	text-align: center;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 8pt;
	color: #5e6d6e;
	text-decoration: none;
}

#footer a {
	color: #5e6d6e;
	text-decoration: none;
}

#footer a:hover {
	filter: brightness(1.2);
}

#footer #brand {
	display: block;
	width: 5%;
}

/* MOBILE */

@media (max-width: 600px) {

.non-mobile {
display: none !important;
}

.only-mobile {
display: block !important;
}

main {
	margin: 70px 10px 0 11px;
}

.header {
	height: 50px;
}

#navbar #a {
	font-size: 2.5vh;
	font-weight: 600;
}

.teaser {
display: none;
}

.categorys {
	display: grid;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

.video h3 {
font-size: 1.5rem;
}

.content {
top: 100px;
max-width: 90%;
}

.info img#info {
width: 20%;
}

#logo {
width: 150px;
}

.close {
font-size: 8vh;
}

.close:hover {
transform: none;
}

}

.categorys .category {
	background-image: url(/icons/lcs/resources/offstream_playback.jpg);
}

.categorys .category#live {
	background-image: url(/icons/lcs/resources/lcs_twitch.jpg);
	color: red;
}

.categorys .category#films {
	background-image: url(/icons/lcs/resources/thumbnail/the_dealer.png);
	color: teal;
}

.categorys .category#dokus {
	background-image: url(/icons/lcs/resources/thumbnail/C002.jpg);
	color: #ffee7d;
}

.categorys .category#all {
	background-image: url(/icons/lcs/resources/cogito_ergo_sum.jpg);
	color: white;
}

.categorys .category#other {
	background-image: url(/icons/lcs/resources/dienste.jpg);
	color: pink;
}

.categorys .category#lutzenberger {
	background-image: url(/icons/lcs/resources/lutzenberger_clean.jpg);
	color: #7375bf;
}

.categorys .category#lutzenbergerclips {
	background-image: url(/icons/lcs/resources/lutzenberger_clips.jpg);
	color: #00ffee;
}

.categorys .category#tagesshow {
	background-image: url(/icons/lcs/resources/thumbnail/F.jpg);
	color: blue;
}

.categorys .category#ttg {
	background-image: url(/icons/lcs/resources/thumbnail/G.jpg);
	color: rgba(0,255,0,1);
}

.categorys .category#jingcoins {
	background-image: url(/icons/lcs/resources/thumbnail/B.png);
	color: gold;
}

.categorys .category#quizduell {
	background-image: url(/icons/lcs/resources/thumbnail/D.png);
	color: #1985e0;
}
