/* ══════════════════════════════════════════════════
   VARIABLEN
══════════════════════════════════════════════════ */
:root {
    --borderSize: 45px;
}

#footer,
.footer_footer {
    width: 1150px !important;
    max-width: calc(100vw - (var(--borderSize) * 2)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* ══════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════ */
html {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    height: 100% !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-attachment: scroll !important;
    scrollbar-width: thin;
    scrollbar-color: #a08cb8 transparent;
}

html::-webkit-scrollbar {
 width: 8px;
}

html::-webkit-scrollbar-track {
 background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #a08cb8;
    border: 1px solid rgba(0,0,0,.2);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,.1);
    border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   CONTAINER
══════════════════════════════════════════════════ */

#container {
	width: 1150px !important;
	height: auto !important;
	margin: 0 auto !important;
	padding-top: var(--borderSize) !important;
	max-width: calc(100vw - (var(--borderSize) * 2)) !important;
	box-sizing: border-box !important;
	display: block !important;
}

/* ══════════════════════════════════════════════════
   FULLNAVI WRAPPER
══════════════════════════════════════════════════ */
.whole_navi {
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════════════
   OBERE LEISTE
══════════════════════════════════════════════════ */
.top-navi {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--borderSize) !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid #a08cb8;
    background: rgba(128, 108, 154, 0.43);
    z-index: 100 !important;
    padding: 0;
    box-sizing: border-box;
}

.top-navi__line {
    flex: 0 0 60px !important;
    height: 1px;
    background: #ffb8be99;
}

.top-navi {
    justify-content: center !important;
    gap: 12px;
}

.header_navi_buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px;
    padding: 0 8px;
}

.top-navi__alerts,
.top-navi__admincp,
.top-navi__modcp {
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ══════════════════════════════════════════════════
   SEITENLEISTEN – BASIS
══════════════════════════════════════════════════ */
.side-navi {
    position: fixed !important;
    top: var(--borderSize) !important;
    bottom: 0 !important;
    width: var(--borderSize) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99 !important;
    box-sizing: border-box;
}

.side-navi--left {
    left: 0 !important;
    padding-left: 8px;
    border-right: 1px solid #a08cb8;
    background: rgba(128, 108, 154, 0.43);
}

.side-navi--right {
    right: 0 !important;
    padding-right: 8px;
    border-left: 1px solid #a08cb8;
    background: rgba(128, 108, 154, 0.43);
}

/* ══════════════════════════════════════════════════
   INNERER WRAPPER
══════════════════════════════════════════════════ */
.side-navi__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    flex: 1;
    width: 100%;
}

/* ══════════════════════════════════════════════════
   TRENNLINIEN
══════════════════════════════════════════════════ */
.side-navi__hr {
    display: block !important;
    width: 1px !important;
    height: 60px !important;
    background: #ffb8be99 !important;
    border: none !important;
    margin: 0 !important;
    flex-shrink: 0;
    color: transparent;
}

/* ══════════════════════════════════════════════════
   LINKS IN DEN LEISTEN
══════════════════════════════════════════════════ */
.side-navi__links-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.side-navi__links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px;
}

.side-navi__links li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.side-navi__links a {
    writing-mode: vertical-rl !important;
	transform: rotate(180deg) !important;
    text-orientation: mixed !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #f0e8ff !important;
    text-decoration: none !important;
    transition: color 0.2s;
    font-weight: bold !important;
    font-family: Tahoma, Verdana, Arial, sans-serif !important;
    background: none !important;
    padding: 0 !important;
    display: block !important;
}

.side-navi__links a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    background: none !important;
}

/* ══════════════════════════════════════════════════
   BUTTONS OBEN (Login/Register)
══════════════════════════════════════════════════ */
.side-navi__buttons--top {
    position: absolute !important;
    top: 20px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px;
}

/* ══════════════════════════════════════════════════
   BUTTONS UNTEN (Haus, Hoch, Runter)
══════════════════════════════════════════════════ */
.side-navi__buttons--bottom {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px;
}

/* ══════════════════════════════════════════════════
   SIDE BUTTONS ALLGEMEIN
══════════════════════════════════════════════════ */
.side-btn {
    background: none !important;
    border: 1px solid #f0e8ff !important;
    color: #f0e8ff !important;
    width: 28px !important;
    height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    line-height: 1 !important;
    border-radius: 0 !important;
    position: relative;
    padding: 0 !important;
    font-family: Tahoma, Verdana, Arial, sans-serif !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.side-btn:hover {
    background: rgba(240, 232, 255, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.side-btn__counter {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    background-color: #ffffff;
    color: #000;
    padding: 2px;
}

/* ══════════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════════ */
.dust_logo {
    padding: 100px;
    margin: 150px 100px;
    border: 1px solid #f0e8ff;
    height: 450px;
}

.logo_befor {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 60px;
    font-weight: bold;
    background: linear-gradient(135deg, #c4607a, #3d2060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 100px;
}

.logo_fading {
    font-family: "DMSerifDisplay-Regular", serif;
    font-size: 60px;
    font-weight: bold;
    padding-left: 180px;
    margin-top: -40px;
    background: linear-gradient(135deg, #c4607a, #3d2060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo_dust {
    display: inline-block;
    float: right;
    font-size: 160px;
    font-family: 'Amalfi Coast', serif;
    margin-top: -160px;
    margin-right: 60px;
    padding: 80px 40px;
    line-height: 1.2;
    overflow: visible;
    background: linear-gradient(135deg, #c4607a, #3d2060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo_rating {
    font-family: 'AlegreyaSansSC-Medium', serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 11px;
    padding-right: 500px;
}

.logo_befor, .logo_fading, .logo_dust {
 transition: filter 0.3s ease;
}

.logo_befor:hover, .logo_fading:hover, .logo_dust:hover {
    filter: drop-shadow(0 0 4px rgba(255,200,210,0.8))
            drop-shadow(0 0 10px rgba(240,180,195,0.7))
            drop-shadow(0 0 20px rgba(220,160,175,0.5))
            drop-shadow(0 0 35px rgba(180,120,140,0.3));
}

/* ══════════════════════════════════════════════════
   HANDY
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .whole_navi {
 display: none !important;
}

#container {
 padding: 0 !important;
}

html {
 overflow-y: auto !important; height: auto !important;
}

body {
 overflow: auto !important; height: auto !important;
}


}