body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    color: #1c1e21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem 0;
}

.container {
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
}

h1 {
    font-size: 2rem;
    color: #0d1117;
    margin-bottom: 2rem;
}

.app-list {
    list-style: none;
    padding: 0;
    min-width: 300px;
}

.app-list li {
    margin-bottom: 1rem;
}

.app-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    word-break: break-all;
}

.app-list a:hover {
    background-color: #34495e;
}
