/* Global Dark Theme */
body {
    background-color: #0e0e10;
    color: #c5bcc5;
    font-family: 'Fira Code', monospace; /* Clean, readable, hacker-style */
    text-transform: none; /* Allows mix of 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 Content */
.terminal-intro, .log-container, .tag-container {
    text-align: center;
    padding: 50px;
}

.terminal-intro h2 {
    color: #8c6a91;
}

.terminal-intro p {
    color: #8bb8d9;
}

/* Log Entries */
.log-entry {
    background: rgba(35, 35, 45, 0.95);
    padding: 20px;
    border-left: 4px solid #c99ec9;
    margin-bottom: 20px;
    color: #c5bcc5;
}

/* A-Tags */
.tag-list {
    list-style: none;
    font-size: 1.2rem;
}

.tag-list li {
    padding: 5px 0;
    color: #c5bcc5;
}

/* 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;  /* Shrinking the logo */
    height: auto;
    margin-top: 5px;
}

/* Terms Page Styling */
.terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #1e1e28;
    border-left: 4px solid #8bb8d9;
    color: #c5bcc5;
}

.terms-container h2 {
    color: #c99ec9;
    font-size: 1.5rem;
    font-weight: bold;
}

.terms-container p {
    font-size: 1rem;
    color: #b4a5b4;
    margin-bottom: 15px;
}
