/* =============================================================
   MAGIC MOON - LIVE CLEAN CUSTOM CSS
   ============================================================= */

/* 1. BASIS & VIDEO */
* { box-sizing: border-box !important; }

body { 
    margin: 0; padding: 0; 
    font-family: "sans serif ms", Arial, Sans-Serif; 
    background: #000; color: #fff; 
    overflow-x: hidden;
}

#video-bg { 
    position: fixed; top: 0; left: 0; 
    min-width: 100%; min-height: 100%; 
    z-index: -1000;
    object-fit: cover;
}

/* 2. LAYOUT GERÜST */
.site-wrapper {
    width: 1215px !important;
    max-width: 1215px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    padding-bottom: 30px !important;
    position: relative !important;
    overflow: visible !important;
    z-index: 10;
}

/* 3. HEADER & NAVI */
.header-banner { 
    width: 1215px !important;
    height: 308px !important;
    background-size: 100% 100% !important;
    display: block !important;
}

.nav-container { 
    height: 57px !important;
    margin-top: -80px !important; /* Zieht Navi ins Banner */
    position: relative !important;
    z-index: 1000 !important;
    background: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 4. DAS GRID */
.main-grid {
    display: flex !important;
    width: 1215px !important; 
    margin: 20px 0 0 0 !important;
    gap: 20px !important;
    align-items: stretch !important;
    flex-grow: 1 !important;
}

.side-col { 
   flex: 0 0 240px !important; 
   width: 240px !important;
   display: flex !important;
   flex-direction: column !important;
   gap: 20px !important;
}

.center-col { 
   flex: 1 !important; 
   display: flex !important;
   flex-direction: column !important;
   gap: 20px !important;
}

/* 5. BOXEN DESIGN */
.box-header, .content-header {
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-weight: bold !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    text-transform: uppercase;
}

.magic-box, .content-box-middle {
    width: 100% !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(0, 150, 255, 0.2);
    display: flex !important;
    flex-direction: column !important;
}

.magic-box::after, .content-box-middle::after {
    content: "" !important;
    display: block !important;
    height: 25px !important;
    background-size: 100% 100% !important;
    margin-top: auto !important;
    flex-shrink: 0 !important;
}

/* 6. FOOTER & STATS */
.main-footer {
    width: 1215px !important;
    min-height: 100px !important; 
    margin-top: -30px !important; 
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    position: relative !important; 
    display: block !important;
    z-index: 50;
}

#stat-left, #stat-right {
    display: flex !important;
    width: 240px !important;
    height: 32px !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid #0096ff !important;
    box-shadow: 0 0 10px #0096ff !important;
    position: fixed !important;
    bottom: 10px !important;
    z-index: 999999 !important;
    color: #ffffff !important;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

#stat-left { left: 10px !important; }
#stat-right { right: 10px !important; }

.footer-copyright-clean {
    margin-top: 38px; 
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}