@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0c0f16;
    color: #e2e8f0;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #111827;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    color: #a78bfa;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    color: #8b5cf6;
    margin-top: 30px;
    margin-bottom: 15px;
}

p, ul {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

a {
    color: #93c5fd;
    text-decoration: underline;
}

a:hover {
    color: #60a5fa;
}

.update-date {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #9ca3af;
}