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

body {
    font-family: Arial, sans-serif;
    background: #1a1a2e;
    color: #eee;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#launcher {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #e94560;
}

.card {
    background: #16213e;
    border-radius: 12px;
    padding: 30px;
    margin: 20px auto;
    max-width: 400px;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #0f3460;
    color: #eee;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #e94560;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #c73652;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-card {
    background: #16213e;
    border-radius: 12px;
    padding: 30px 20px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.game-card:hover {
    transform: scale(1.05);
    background: #0f3460;
}

.game-card span {
    font-size: 3rem;
}

.game-card h3 {
    margin: 10px 0 5px;
    color: #e94560;
}

.game-card p {
    font-size: 0.85rem;
    color: #aaa;
}

.hidden {
    display: none;
}
