﻿/* Copyright © beginning at 2026 - BlackDevilCreations
* Author: Patrick Wenzel
* All rights reserved.
* This file is property of Patrick Wenzel and is only to be used by him! 
*/
@font-face {
    font-family: 'Silkscreen';
    src: url('../Font/Silkscreen-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Silkscreen';
    src: url('../Font/Silkscreen-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../Font/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../Font/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'OpenDyslexic3';
    src: url('../Font/OpenDyslexic3-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenDyslexic3';
    src: url('../Font/OpenDyslexic3-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
body.font-clean, body.font-clean * { font-family: 'Roboto', sans-serif !important; }
body.font-dyslexic, body.font-dyslexic * { font-family: 'OpenDyslexic3', sans-serif !important; }
body.font-pixel, body.font-pixel * { font-family: 'Silkscreen', sans-serif !important; }
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
}
:root {
    --font-base: 24px;
    --font-offset: 0px;
    --font-line-height: 1.2;
    --font-size-body: 24px;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 30px;
    --font-size-small: 18px;
    --font-size-button: 24px;
    --font-size-author: 20px;
    --font-size-interpreter: 20px;
    --font-size-timestamp: 16px;
    font-size: var(--font-size-body);
}
body {
    font-size: calc(var(--font-size-body) + var(--font-offset)) !important;
    line-height: var(--font-line-height) !important;
}
h1 { font-size: calc(var(--font-size-h1) + var(--font-offset)) !important; }
h2 { font-size: calc(var(--font-size-h2) + var(--font-offset)) !important; }
h3 { font-size: calc(var(--font-size-h3) + var(--font-offset)) !important; }
small, .text-small { font-size: calc(var(--font-size-small) + (var(--font-offset) * 0.7)) !important; }
p, li, span, div, input, textarea, button, select { font-size: inherit; }
body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Silkscreen', sans-serif;
    color: #fff;
    background-color: transparent;
}
.bg-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    overflow: hidden;
    z-index: -1;
}
.bg-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    transform-origin: center center;
}
.bg-0 { background-image: url('../Img/UI_Backdrop_0.png'); z-index: 1; }
.bg-1 { background-image: url('../Img/UI_Backdrop_1.png'); z-index: 2; }
.bg-2 { background-image: url('../Img/UI_Backdrop_2.png'); z-index: 3; }
.bg-3 { background-image: url('../Img/UI_Backdrop_3.png'); z-index: 4; }
.bg-4 { background-image: url('../Img/UI_Backdrop_4.png'); z-index: 5; }
.bg-5 { background-image: url('../Img/UI_Backdrop_5.png'); z-index: 6; }
.fog-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('../Img/UI_Backdrop_1.png');
    background-repeat: repeat-x;
    background-size: 50% 100%;
    pointer-events: none;
    opacity: 0.3;
    mix-blend-mode: screen;
}
.fog-1 { z-index: 2.5; animation: fog-ltr 60s linear infinite; }
.fog-2 { z-index: 3.5; animation: fog-rtl 80s linear infinite; }
.fog-3 { z-index: 6.5; animation: fog-rtl 150s linear infinite; }
@keyframes fog-ltr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
}
@keyframes fog-rtl {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}
.ui-root {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: transparent;
    overflow: hidden;
}
.content-frame-container {
    flex: 1;
    width: 100%;
    min-height: 0;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
}
.content-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: transparent;
}
.ui-box { }
.ui-button { }
.ui-slider { }
.ui-scrollbox { }
