body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: #f1f1f1;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
h1 {
    text-align: center;
    color: #eabf00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5em;
    margin-bottom: 30px;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    background: #1e1e1e;
    margin: 10px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}
a {
    text-decoration: none;
    color: #eabf00;
    font-weight: bold;
}
a:hover {
    color: #ffcc33;
}
