html { 
    height: 100%; 
}

body {
    margin: 0; padding: 0;
    background-color: #000;
    background-image: url('../../assets/login/fantasyhg.webp');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
    transition: background-image 0.5s ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    overflow-x: hidden !important; 
    overflow-y: auto !important;
}

.landing-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    min-height: 100vh; 
    padding: 20px; 
    padding-bottom: 30px; 
    box-sizing: border-box; 
    background: transparent; 
}

.logo-container { 
    margin-top: 10px; 
    margin-bottom: 15px; 
    width: 100%; 
    max-width: 800px; 
    text-align: center; 
    transition: transform 0.2s;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-container img { 
    width: 100%; 
    height: auto; 
    max-height: 150px; 
    object-fit: contain; 
}

.gallery-container { 
    margin-bottom: 20px; 
    width: 100%; 
    max-width: 650px; 
    height: 140px; 
    position: relative; 
    overflow: hidden;
    border-radius: 8px; 
    border: 2px solid #555; 
    box-shadow: 0 0 20px rgba(0,0,0,0.8); 
    background: #111; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: pointer;
}

.gallery-container:hover {
    border-color: var(--primary, #d4af37);
}

.carousel-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1s ease-in-out;
    object-fit: cover; 
}

.carousel-slide.active { 
    opacity: 1; 
}

.main-content-split { 
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    gap: 20px; 
    width: 100%; 
    max-width: 1400px; 
    margin-bottom: 20px; 
}

.info-section { 
    flex: 1;
    min-width: 300px; 
    max-width: 450px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.epica-btn { 
    background-image: url('../../assets/login/button.png'); 
    background-size: cover; 
    background-position: center;
    width: 100%; 
    max-width: 350px; 
    height: 80px; 
    border: none; 
    cursor: pointer; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 24px; 
    font-weight: bold;
    color: #fff; 
    text-transform: uppercase; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
    transition: transform 0.2s, filter 0.2s; 
    border-radius: 8px;
}

.epica-btn:hover { 
    transform: scale(1.05); 
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.login-section { 
    width: 1250px !important; 
    height: 800px !important; 
    max-width: 100%;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    border: none !important; 
    padding: 0 !important; 
    background-image: url('../../assets/login/umrandung_fantasy.png'); 
    background-color: transparent !important;
    background-repeat: no-repeat !important; 
    background-position: center !important; 
    background-size: 100% 100% !important; 
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
}

.login-inner-content { 
    width: 100%; 
    max-width: 280px; 
    margin-top: 20px; 
    margin-left: 35px;
    position: relative; 
    z-index: 100; 
}

.theme-tabs { 
    display: flex; 
    margin-bottom: 20px; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); 
    padding-bottom: 10px;
}

.theme-tab { 
    flex: 1; 
    padding: 10px; 
    text-align: center; 
    font-weight: 900; 
    cursor: pointer; 
    background: transparent; 
    color: #222; 
    border: none;
    border-bottom: 3px solid transparent;
    text-transform: uppercase; 
    font-size: 16px; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.theme-tab:hover { 
    color: #000; 
}

.theme-tab.active.fantasy-tab { 
    color: #000;
    border-bottom: 3px solid #d4af37;
}

.theme-tab.active.scifi-tab { 
    color: #000;
    border-bottom: 3px solid #00f2ff;
}

.auth-form { 
    display: none; 
}

.auth-form.active { 
    display: block;
}

.form-group { 
    margin-bottom: 15px; 
    position: relative;
}

.form-group input { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #555; 
    background: rgba(0,0,0,0.8);
    color: white; 
    border-radius: 4px; 
    box-sizing: border-box; 
    transition: border-color 0.3s; 
    font-family: inherit; 
}

.form-group input:focus { 
    outline: none; 
    border-color: #d4af37;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #ccc;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary, #d4af37);
    text-decoration: none;
    font-weight: bold;
}

.form-checkbox a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

.submit-btn { 
    width: 100%; 
    padding: 15px; 
    background: linear-gradient(180deg, #d4af37, #8b6508); 
    color: #000; 
    font-weight: bold; 
    border: none; 
    border-radius: 4px;
    cursor: pointer; 
    text-transform: uppercase; 
    font-size: 16px; 
    margin-top: 10px; 
    transition: background 0.5s ease; 
    font-family: inherit; 
    letter-spacing: 1px; 
    position: relative; 
    z-index: 105;
}

.submit-btn:hover { 
    filter: brightness(1.2); 
}

.form-toggle { 
    text-align: center; 
    margin-top: 12px; 
    font-size: 13px; 
    color: #222; 
    cursor: pointer; 
    text-decoration: underline;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.form-toggle:hover { 
    color: #000; 
}

.footer-banner { 
    margin-top: auto; 
    width: 100%; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
    padding-top: 20px; 
}

.visitor-stats {
    background: rgba(0, 0, 0, 0.7);
    color: #aaa;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 5px;
    border: 1px solid #333;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.visitor-stats span {
    color: #fff;
    font-weight: bold;
}

.social-banner { 
    display: flex; 
    gap: 25px; 
    justify-content: center; 
    flex-wrap: wrap;
}

.social-icon { 
    color: #fff; 
    text-decoration: none; 
    font-size: 18px; 
    font-weight: bold; 
    opacity: 0.6; 
    transition: opacity 0.2s, transform 0.2s; 
    text-transform: uppercase;
    letter-spacing: 1px; 
}

.social-icon:hover { 
    opacity: 1; 
    transform: translateY(-3px); 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.legal-links { 
    display: flex; 
    gap: 20px; 
    font-size: 12px; 
}

.legal-links a { 
    color: #888; 
    text-decoration: none; 
    transition: color 0.2s;
}

.legal-links a:hover { 
    color: #fff; 
    text-decoration: underline; 
}