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

body {
    background: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Consolas', 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
}

h1 {
    color: #e94560;
    font-size: 3rem;
    letter-spacing: 12px;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 48px;
}

#game-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 550px;
}

.game-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #16213e;
    border: 2px solid #0f3460;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    border-color: #e94560;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.15);
}

.game-card-wip {
    opacity: 0.45;
    pointer-events: none;
}

.game-icon {
    font-size: 3rem;
    font-weight: bold;
    color: #e94560;
    min-width: 60px;
    text-align: center;
    line-height: 1;
}

.game-card-wip .game-icon {
    color: #f1fa8c;
}

.game-info h2 {
    color: #f8f8f2;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.game-info p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.game-tags {
    display: flex;
    gap: 8px;
}

.tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-action {
    background: #e9456022;
    color: #e94560;
    border: 1px solid #e9456044;
}

.tag-roguelike {
    background: #50fa7b22;
    color: #50fa7b;
    border: 1px solid #50fa7b44;
}

.tag-idle {
    background: #f1fa8c22;
    color: #f1fa8c;
    border: 1px solid #f1fa8c44;
}

.tag-factory {
    background: #DEB88722;
    color: #DEB887;
    border: 1px solid #DEB88744;
}

.tag-rpg {
    background: #6a4c9322;
    color: #8a6cb3;
    border: 1px solid #6a4c9344;
}

.tag-wip {
    background: #88888822;
    color: #888;
    border: 1px solid #88888844;
}
