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

body {
    font-family: sans-serif;
    background: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
}

.subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1920px;
}

.container a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid #888888;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #1a1a2e;
}

.container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.15);
    border-color: #1a73e8;
    color: #1a73e8;
}
