/* --- SECURITY & GLOBAL --- */
* {
    cursor: none !important;
    user-select: none !important;
    -webkit-user-drag: none;
}

body {
    margin: 0; padding: 0;
    background-color: #020205;
    color: #b19cd9;
    font-family: 'Red Hat Mono', 'Courier New', monospace;
    overflow: hidden;
    height: 100vh;
}

/* GLOBAL ANNOUNCEMENT BAR */
#global-announcement {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 35px;
    background: rgba(255, 0, 85, 0.95);
    color: white;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    border-bottom: 1px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.6);
    font-size: 0.8rem;
}

/* --- DISCORD UI --- */
.status-bar {
    position: fixed !important;
    top: 50px !important; /* Clears the announcement bar perfectly */
    left: 20px !important;
    background: rgba(10, 5, 20, 0.9);
    border: 1px solid #4b0082;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

#vibe-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #020205; z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}

#bg-canvas { position: fixed; top: 0; left: 0; z-index: -1; }

#custom-cursor {
    width: 12px; height: 12px; background: #ff0055;
    position: fixed; pointer-events: none; z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px #ff0055, 0 0 30px #ff0055;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

/* --- VOLUME SLIDER --- */
.volume-container { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.vol-icon { font-size: 0.6rem; color: #4b0082; font-weight: bold; }
#volume-control { -webkit-appearance: none; width: 60px; height: 2px; background: #4b0082; outline: none; }
#volume-control::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 8px; height: 8px; background: #ff0055; box-shadow: 0 0 5px #ff0055; }

#current-activity { font-size: 0.7rem; color: #ff0055; animation: vibe-breath 3s infinite ease-in-out; }
@keyframes vibe-breath { 0%, 100% { opacity: 0.6; transform: translateX(0); } 50% { opacity: 1; transform: translateX(2px); } }

.profile-pic { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ff0055; background-size: cover; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #555; }

/* --- ARCHIVE LAYOUT --- */
.archive-container { display: flex; justify-content: center; align-items: center; height: 100vh; }

.archive-box { 
    background: rgba(10, 5, 20, 0.85); 
    padding: 35px; 
    border: 1px solid #4b0082; 
    width: 750px; /* Made it wider for images */
    max-width: 90vw;
    height: 75vh; 
    display: flex; 
    flex-direction: column; 
    backdrop-filter: blur(10px); 
}

.glitch-text { font-family: 'Orbitron', sans-serif; color: #ff0055; letter-spacing: 5px; }

.news-scroll { flex-grow: 1; overflow-y: auto; text-align: left; margin: 20px 0; padding-right: 10px; }
.news-scroll::-webkit-scrollbar { width: 3px; }
.news-scroll::-webkit-scrollbar-thumb { background: #ff0055; }

article { 
    border-left: 1px solid #ff0055; 
    padding-left: 20px; 
    margin-bottom: 40px; 
    display: flex;
    flex-direction: column;
}

article h3 { font-size: 1rem; color: #ff0055; margin-bottom: 5px; }
article p { line-height: 1.5; font-size: 0.9rem; color: #d1c4e9; margin-bottom: 10px; }

/* --- ARCHIVE IMAGES --- */
.archive-img {
    width: 100%;
    max-height: 350px;
    object-fit: contain; /* Shows whole image without cropping */
    border: 1px solid #ff0055;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.separator { height: 1px; background: #4b0082; margin: 10px 0; opacity: 0.5; }
.footer-note { font-size: 0.7rem; color: #4b0082; letter-spacing: 2px; }

/* --- EFFECTS --- */
.click-ripple { position: fixed; border: 2px solid #ff0055; border-radius: 50%; pointer-events: none; z-index: 9998; animation: ripple-out 0.5s ease-out forwards; }
@keyframes ripple-out { 0% { width: 0; height: 0; opacity: 1; } 100% { width: 50px; height: 50px; opacity: 0; margin-left: -25px; margin-top: -25px; } }
