/* GLOBAL STYLES */
html { overflow-y: scroll; scroll-behavior: smooth; }
body {
    padding: 180px 20px 100px 20px; 
    background: #05070a url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin: 0;
    overflow-x: hidden;
}

/* GRADIENT OVERLAY */
.bg-blur-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10, 25, 60, 0.7) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(8px);
    z-index: -1;
}

/* ANIMATIONS */
@keyframes pageIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.page-wrapper { animation: pageIn 0.8s ease-out forwards; margin-top: 40px; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: 60px;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(77, 239, 255, 0.2);
}
.navbar a {
    color: white; text-decoration: none; margin: 0 15px;
    font-weight: bold; font-size: 1rem; transition: 0.3s;
    text-transform: uppercase;
}
.navbar a:hover, .navbar a.active { 
    color: #4defff; 
    text-shadow: 0 0 10px rgba(77, 239, 255, 0.8);
}

/* CONTAINERS */
.content-container {
    max-width: 850px; margin: 0 auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 35px; border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(77, 239, 255, 0.15);
}

/* NEON TEXT GLOW */
h1 { 
    font-size: 2.8rem; color: #4defff; 
    text-shadow: 0 0 10px rgba(77, 239, 255, 0.7), 0 0 20px rgba(77, 239, 255, 0.4), 2px 2px 5px rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
}
h2 { color: #4defff; text-shadow: 0 0 8px rgba(77, 239, 255, 0.5); }
p { color: #d0d0d0; line-height: 1.6; }

/* FIXED DISCORD BUTTON - UPDATED LOGO FIX */
.discord-fixed {
    position: fixed; bottom: 70px; right: 20px;
    width: 60px; height: 60px;
    background: #5865F2;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 3000;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4), 0 10px 20px rgba(0,0,0,0.6);
}
.discord-fixed img { 
    width: 32px; 
    height: auto; 
    display: block; 
}
.discord-fixed:hover { transform: scale(1.1); background: #4752C4; border-color: white; }

/* STAFF GRID & MODALS (FOR STAFF.HTML) */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.staff-card { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 12px; border: 1px solid rgba(77, 239, 255, 0.2); cursor: pointer; transition: 0.3s; }
.staff-card:hover { transform: translateY(-5px); border-color: #4defff; background: rgba(77, 239, 255, 0.1); }
.modal { display: none; position: fixed; z-index: 5000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(15px); align-items: center; justify-content: center; }
.modal-content { background: #0a0e1a; padding: 40px; border: 2px solid #4defff; border-radius: 20px; display: flex; position: relative; max-width: 500px; box-shadow: 0 0 30px rgba(77, 239, 255, 0.3); }
.close-btn { position: absolute; top: 10px; right: 20px; color: #4defff; font-size: 30px; cursor: pointer; }

/* FOOTER */
.footer {
    position: fixed; left: 0; bottom: 0; width: 100%; height: 50px; 
    line-height: 49px; background-color: rgba(0, 0, 0, 0.9); 
    color: #666; text-align: center; font-size: 0.85rem;
}
