
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 0;
    max-width: 420px;
    width: 90%;
}

.logo {
    width: 180px;
    height: auto;
    image-rendering: pixelated;
    margin-bottom: 1rem;
}

h1 {
    margin: 0.5rem 0;
    font-size: 2rem;
}

.tagline {
    margin-bottom: 1.5rem;
    color: #333333;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.links a {
    text-decoration: none;
    color: #000000;
    background: #f2f2f2;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background 0.2s, transform 0.1s;
    font-weight: bold;
}

.links a:hover {
    background: #e0e0e0;
    transform: scale(1.02);
}

footer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #666666;
}
