/* Global Dark Theme */
body {
    background-color: #0e0e10;
    color: #c5bcc5;
    font-family: 'Fira Code', monospace; /* Hacker-style, readable */
    text-transform: none; /* Allows uppercase and lowercase */
    margin: 0;
    padding: 0;
}

/* Background Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 22, 0.85);
    z-index: -1;
}

/* Header */
header {
    background: #18181c;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #8c6a91;
}

header h1 {
    color: #c99ec9;
    font-size: 2.2rem;
    font-weight: bold;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #c5bcc5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}

nav ul li a:hover {
    color: #8c6a91;
}

/* Main Log Container */
.log-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #1e1e28;
    border-left: 4px solid #8bb8d9;
    color: #c5bcc5;
}

/* Log Entry (Terminal-Like) */
.log-entry {
    background: rgba(35, 35, 45, 0.95);
    padding: 15px;
    border-left: 4px solid #c99ec9;
    margin-bottom: 20px;
    color: #c5bcc5;
    cursor: pointer; /* Makes it feel interactive */
    transition: background 0.3s, border-color 0.3s;
}

.log-entry:hover {
    background: #292938;
    border-left: 4px solid #8bb8d9;
}

/* Expandable Log */
.log-entry.expanded {
    background: #2d2d3a;
    border-left: 4px solid #bba0ff;
    padding: 20px;
}

/* Footer */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #18181c;
    text-align: center;
    padding: 8px 0;
    border-top: 2px solid #8c6a91;
}

.fixed-footer p {
    color: #b4a5b4;
    font-size: 0.9rem;
    margin: 5px 0;
}

.fixed-footer a {
    color: #c99ec9;
    text-decoration: none;
    font-size: 0.9rem;
}

.fixed-footer a:hover {
    color: #8bb8d9;
}

/* Small Logo */
.small-logo {
    width: 40px; /* Small and clean */
    height: auto;
    margin-top: 5px;
}
