body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: Georgia, serif;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 30px 40px 30px;
}

h1 {
    color: #d4af37;
    font-size: 4rem;
    margin-bottom: 15px;
}

h2 {
    color: #d4af37;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.card {
    background-color: #1b1b1b;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #d4af37;
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

a {
    color: #d4af37;
}

ul {
    line-height: 2;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 20px;

    padding: 20px;
    margin-bottom: 30px;

    background-color: #1b1b1b;
    border: 1px solid #333;
    border-radius: 10px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav a:hover {
    color: white;
}

.update-card {
    border-left: 5px solid #d4af37;
}

.update-time {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 15px;
}

th {
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 12px;
    text-align: left;
    border: 1px solid #444;
}

td {
    padding: 10px;
    border: 1px solid #444;
}

tr:nth-child(even) {
    background-color: #202020;
}

tr:hover {
    background-color: #2d2d2d;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 15px;
}

th {
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 12px;
    text-align: left;
    border: 1px solid #444;
}

td {
    padding: 10px;
    border: 1px solid #444;
}

tr:nth-child(even) {
    background-color: #202020;
}

tr:hover {
    background-color: #2d2d2d;
}

table a {
    font-weight: bold;
    transition: color 0.3s ease;
}

table a:hover {
    color: white;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    color: #888;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

footer p {
    margin: 5px 0;
}