body {
    background-color: #0b0b0e; /* Deep midnight blue/black */
    color: #d1d1d1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    padding: 50px 20px;
    margin: 0;
}

.blog-container {
    max-width: 750px;
    margin: 0 auto;
}

h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

h2 {
    color: #a29bfe; /* Soft aesthetic purple */
    margin-top: 40px;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Subtle fade-in for the whole article */
article {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}