:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --nav-bg: #1e1e1e;
    --banner-bg: #d32f2f;
    --banner-text: #ffffff;
    --accent: #ff9800;
    --link-color: #64b5f6;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Banner */
.top-banner {
    background-color: var(--banner-bg);
    color: var(--banner-text);
    text-align: center;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-btn {
    background-color: #ffffff;
    color: var(--banner-bg) !important;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.banner-btn:hover {
    background-color: #f0f0f0;
}

/* Header & Navbar */
.navbar {
    background-color: var(--nav-bg);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-left h2 {
    margin: 0;
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 15px;
}

.nav-right .header-badge {
    height: 32px;
    display: block;
}

/* Main Content Containers */
.container {
    max-width: 900px; /* Slightly wider for the data table */
    margin: 40px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.notice-box {
    border-left: 5px solid var(--accent);
    padding: 15px 20px;
    background-color: #2a2a2a;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

/* Table Styles for Copyright Page */
.copyright-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
}

.copyright-table th, .copyright-table td {
    border: 1px solid #333;
    padding: 12px;
    text-align: left;
}

.copyright-table th {
    background-color: #2a2a2a;
    color: var(--accent);
}

.copyright-table tr:nth-child(even) {
    background-color: #1a1a1a;
}

.status-shutdown { color: #4caf50; font-weight: bold; }
.status-warning { color: #ff9800; font-weight: bold; }
.status-waiting { color: #f44336; font-weight: bold; }

/* Markdown specific styles */
#readme-content img {
    max-width: 100%;
}
#readme-content h1, #readme-content h2 {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #888;
    border-top: 1px solid #333;
}
