* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
    text-align: center;
}

h1 {
    color: #e8e8e8;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links a {
    color: #888;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.2s;
}

.links a:hover {
    color: #e8e8e8;
    border-color: #555;
    background: #252525;
}
