body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1f1f1f;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    color: #a2c3db;
}

section {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.back-button {
    background-color: #a2c3db;
    color: #1f1f1f;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.back-button:hover {
    background-color: #8db5cf;
}

.subsection {
    margin-left: 20px;
    margin-top: 10px;
}

.date {
    color: #a2c3db;
    font-style: italic;
    margin-bottom: 20px;
}

a {
    color: #a2c3db;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6b6b;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

a:hover {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}