/* Enhanced styling with more detailed design */
body {
    background: linear-gradient(135deg, #000000, #111111);
    color: #e0e0e0;
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #333;
}

.logo-container {
    display: flex;
    align-items: center;
}

#logo {
    width: 300px;
    height: auto;
}

.site-title {
    margin-left: 20px;
}

.site-title h1 {
    color: #ff4444;
    margin: 0;
    font-size: 2em;
    /* Adjust margin or padding if needed after removing the paragraph */
    padding-bottom: 0; /* Ensure no extra space below h1 */
    /* This rule is now effectively unused but kept for safety */
    display: none;
}

.site-title p {
    color: #888;
    margin: 0;
    font-size: 0.9em;
    /* This rule is now effectively unused but kept for safety */
    display: none;
}

nav {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.nav-section {
    background: rgba(68, 68, 68, 0.5);
    padding: 15px;
    border-radius: 8px;
}

.nav-section h3 {
    color: #ff4444;
    margin-bottom: 10px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

nav button {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 8px 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

nav button:hover {
    background-color: #ff4444;
}

main {
    padding: 20px;
}

footer {
    background: rgba(34, 34, 34, 0.8);
    color: #888;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ff4444;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.anomaly-item {
    background: #222;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.anomaly-item:hover {
}

.anomaly-item img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.anomaly-item h3 {
    color: #ff4444;
    margin-top: 0;
}