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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #1a1a1e;
    color: #c4c4c8;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2a2e;
}

h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e4e4e8;
}

.subtitle {
    font-size: 0.85rem;
    color: #6a6a6e;
    margin-top: 0.25rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.game-card {
    background: #222226;
    border: 1px solid #2a2a2e;
    border-radius: 6px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background-color 0.2s;
}

.game-card:hover {
    border-color: #3a3a3e;
    background: #262629;
}

.game-info h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #e4e4e8;
    margin-bottom: 0.5rem;
}

.tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7a7a8e;
    background: #2a2a2e;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.game-info p {
    font-size: 0.85rem;
    color: #8a8a8e;
}

footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2e;
    text-align: center;
}

footer p {
    font-size: 0.75rem;
    color: #4a4a4e;
}
