/* * ==========================================
 * CENTER COLUMN (MAIN CONTENT SHELL)
 * ========================================== */
.main-content {
    margin: 15vh auto 50px auto; width: 50%; padding: 0; box-sizing: border-box; overflow: hidden;
    background-color: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--glass-border); border-radius: var(--border-radius-main); box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* * ==========================================
 * CAROUSEL SECTION
 * ========================================== */
.carousel-area {
    width: 100%; height: 250px; position: relative; background-size: cover; background-position: center center;
    background-repeat: no-repeat; transition: background-image 0.8s ease-in-out;
    border-bottom: 1.5px solid var(--glass-border);
}
.carousel-indicators { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 15px; z-index: 5; pointer-events: none; }
.indicator-number { font-size: 16px; color: rgba(255,255,255,0.6); cursor: pointer; pointer-events: auto; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.indicator-number:hover { color: rgba(255,255,255,0.9); transform: scale(1.1); font-weight: bold; }
.indicator-number.active { color: #fff; font-weight: bold; text-shadow: 0 0 10px var(--color-accent); }

/* * ==========================================
 * SPLIT COLUMNS (FLEXBOX)
 * ========================================== */
.content-split { display: flex; gap: 30px; padding: 30px; }
.column-left, .column-right { 
    background-color: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255,255,255,0.05); 
    padding: 25px; border-radius: var(--border-radius-main); 
}
.column-left { flex: 2; }
.column-right { flex: 1; height: fit-content; }

/* * ==========================================
 * NEWS FEED STYLING (LEFT COLUMN)
 * ========================================== */
.section-title { font-size: 20px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; margin-bottom: 20px; color: var(--color-accent); }
.news-item { margin-bottom: 25px; }
.news-item h3 { margin-bottom: 5px; font-size: 18px; }
.news-item p { margin: 0; color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }
.news-date { font-size: 12px; color: var(--color-accent); text-transform: uppercase; letter-spacing: 1px; }

/* * ==========================================
 * LOGIN BOX STYLING (RIGHT COLUMN)
 * ========================================== */
.login-placeholder { display: flex; flex-direction: column; gap: 15px; }
.forgot-link { font-size: 12px; color: var(--color-text-muted); text-align: center; text-decoration: none; margin-top: 5px; }
.forgot-link:hover { color: var(--color-text-main); text-decoration: underline; }

/* Flexible line separator between login and discord */
.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 11px;
    margin: 5px 0;
}
.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.login-separator span {
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* * ==========================================
 * FOOTER STYLING (STICKY BOTTOM)
 * ========================================== */
.site-footer {
    text-align: center;
    
    /* ADDED: Consumes all empty vertical space above it, pushing it to the bottom */
    margin-top: auto; 
    
    /* CHANGED: Removed the bottom margin so it sits perfectly flush with the screen edge */
    margin-bottom: 0; 
    
    /* Adjusted padding to look balanced at the bottom of the screen */
    padding: 30px 0 15px 0; 
    
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 5px;
}

.site-footer a:hover {
    color: #ffffff;
}