body {
    background: black;
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-size: 1em;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

a {
    color: rgb(116, 133, 170);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: white;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.main-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 600px;
}

.main-list-item {
    border: 1px solid #444;
    border-radius: 8px;
    padding: 24px 20px 16px 20px;
    margin-bottom: 24px;
    background: #000000;
    transition: background 0.3s;
}

.main-list-item:hover {
    background: #050505;
}

.item-title {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.item-description {
    font-size: 1em;
    color:#aaa;
}

.footer {
    text-align: center;
    padding: 24px 0 12px 0;
    font-size: 1em;
    color: #aaa;
    background: transparent;
}

.footer a {
    text-decoration: underline;
}

.download-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 0px;
    color: rgb(116, 133, 170);
    text-decoration: none;
    transition: color 0.3s;
}

.download-link:hover {
    color: #aaa;
}

@media (max-width: 640px) {
    .main-list {
        width: 90%;
    }
}
