@font-face {
    font-family: 'Press Start 2P';
    src: url('/assets/fonts/PressStart2P-Regular.ttf') format('truetype');
}

html body {
    color            : white !important;
    min-height       : 100vh;
    background-color : #00081C !important;
    /*background : linear-gradient(#5f00a8, #ff00cc);*/
    position         : relative;
    font-size        : 20px;
    overflow-y       : scroll;
}

.noselect {
    -webkit-touch-callout : none; /* iOS Safari */
    -webkit-user-select   : none; /* Safari */
    -khtml-user-select    : none; /* Konqueror HTML */
    -moz-user-select      : none; /* Old versions of Firefox */
    -ms-user-select       : none; /* Internet Explorer/Edge */
    user-select           : none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

body a,
body a:hover {
    text-decoration : none !important;
    color           : cyan;
}

/* Header */
header {
    border-bottom : white solid 3px;
    height        : 100px;
}

.header-logo {
    margin-left : 20px;
    font-size   : 45px;
}

.header-logo a {
	font-family : 'Press Start 2P';
    color       : #fff;
}

.header-logo a {display : flex;}

.letter {
    display   : inline-block;
    animation : bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from {
        transform : translateY(0);
    }
    to {
        transform : translateY(-5px);
    }
}

.letter:nth-child(odd) {animation-delay : 0s;}
.letter:nth-child(even) {animation-delay : 0.2s;}

/* Header Navigation */
.nav-menu {
    font-size     : 30px;
    padding-right : 20px !important;
}

.mobile-nav-icon {
    font-size    : 50px;
    margin-right : 30px;
}

.nav-menu a:not(:last-of-type) {
    margin-right : 10px;
}

.nav-menuitem {
    color : #fff;
}

/* Mobile modal for navigation */
.nav-menu-mobile .modal-body {
    display               : grid;
    grid-template-columns : 50% 50%;
}

.nav-menu-mobile .modal-body .nav-menuitem {
    margin-top    : 15px;
    margin-bottom : 15px;
    font-size     : 35px;
}

.nav-menu-mobile .modal-body .nav-menuitem i {
    margin-right : 5px;
    min-width    : 35px;
}

/* Footer */
footer {
    text-align    : center;
    margin-bottom : 10px;
}

/* Content */
.main-container {
    padding-top    : 30px;
    padding-bottom : 30px;
}

.headline {
    text-align : center;
}

h1.headline,
h2.headline {
    font-size     : 50px;
    margin-top    : 10px;
    margin-bottom : 30px;

}

h3.headline {
    margin-top    : 50px;
    margin-bottom : 30px;
}

.desc {
}

/* Userscripts */
.userscript:not(:last-of-type) {
    padding-bottom : 30px !important;
    border-bottom  : solid #fff 3px;
}

.userscript:not(:first-of-type) {
    padding-bottom : 30px !important;
    padding-top    : 30px !important;
}

.userscript.deprecated,
.userscript.deprecated a {
    color : red;
}

.userscript-title {
    font-size   : 30px;
    font-weight : bold;
}

.userscript-desc {}


/* Projects */
.projects {margin-bottom : 50px;}

.project-title {font-size : 40px; margin-bottom : 30px;}

.project-desc {}

.project-img {width : 100%; margin-bottom : 30px;}


/* YouTube / Soundtracks */
.soundtracks {
    margin-top      : 30px;
    display         : flex;
    flex-wrap       : wrap;
    justify-content : space-between;
}

.soundtrack {
    margin-left       : auto;
    margin-right      : auto;
    margin-bottom     : 30px;
    padding           : 10px;
    border            : #fff solid 1px;
    border-radius     : 25px;
    width             : 300px;
    height            : 200px;
    background-size   : cover;
    background-repeat : no-repeat;
    position          : relative;
}

.soundtrack-title {
    font-weight      : bold;
    padding          : 10px;
    border-radius    : 25px;
    background-color : rgba(0, 0, 0, .5);
    backdrop-filter  : blur(3px);
}

.soundtrack-title a {
    color     : #fff;
    font-size : 25px;
}

.soundtrack-download {
    color             : #fff;
    border            : #fff solid 1px;
    border-radius     : 25px;
    padding           : 10px 25px;
    font-weight       : bold;
    text-transform    : uppercase;
    backdrop-filter   : blur(5px);
    position          : absolute;
    bottom            : 10px;
    left              : 50%;
    background-color  : rgba(0, 0, 0, .5);
    transform         : translateX(-50%);
    -moz-transform    : translateX(-50%);
    -webkit-transform : translateX(-50%);
}


/* Anime  */
.anime {
    margin-top    : 30px !important;
    margin-bottom : 30px;
}

.anime-col {
    margin-bottom : 30px;
}

.anime-title {
    font-size   : 30px;
    font-weight : bold;
    text-align  : center;
}

.anime-img {
    text-align : center;
    height     : 340px;
}

.anime-img > img {
    text-align : center;
    width      : auto;
}

#hentai-section {
    position: relative;
}

/* Blurring-Effekt für die Hentai-Sektion */
#hentai-section .blurred {
    filter: blur(15px);
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}

/* Container für den Button */
#confirm-button-container {
    position: absolute;
    height: 100%;
}

/* Styling für den Button */
#confirm-button {
    position: sticky;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid cyan;
    background-color: #00081C;
    color: cyan;
    border-radius: 5px;
    transition: all 0.7s ease;
	margin-top: 150px;
	top: 50%;
    left: 50%;
    transform: translateX(-50%);
	z-index: 1;
}

/* Hover-Effekt für den Button */
#confirm-button:hover {
    background-color: cyan;
    color: #00081C;
}









/* Imprint */
.imprint p {
    font-size : 15px;
}



/* Games component */
.games-container {
    display         : flex;
    justify-content : center;
    width           : 100%;
}

.games-container a {
    position: relative;
}

.games-container #games-img {
    display      : block;
    margin-left  : auto;
    margin-right : auto;
}


#bored-bubble {
    pointer-events : none;
    position       : absolute;
    top            : 20%;
    left           : 100%;
    transform      : translateX(-50%);
    opacity        : 0; /* Unsichtbar zu Beginn */
    visibility     : hidden; /* Verhindert die Interaktion */
    transition     : opacity 0.5s, visibility 0.5s; /* Übergangsanimation */
}

#bored-bubble.show {
    opacity    : 1; /* Sichtbar */
    visibility : visible; /* Interaktionsfähig */
    animation  : pop 0.5s; /* Aufpopp-Animation */
}

@keyframes pop {
    0% {
        transform: translateX(-50%) scale(0);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}