ui/lobbyboard.razor.scss
LobbyBoard {
    .board {
        flex-direction: column;
        justify-content: flex-start;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        font-family: Poppins;
        padding: 24px;
        width: 100%;
        height: 100%;
    }

    .message-banner {
        font-size: 168px;
        font-weight: 700;
        color: #ffcc33;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 16px;
        padding: 24px 32px;
        margin-bottom: 32px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .title {
        font-size: 180px;
        font-weight: 800;
        margin-bottom: 32px;
        width: 100%;
        justify-content: center;
    }

    .grid {
        flex-direction: column;
        width: 100%;
    }

    .cell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px 32px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        width: 100%;
        margin-bottom: 20px;
        overflow: hidden;

        &.ready {
            background-color: rgba(46, 204, 113, 0.35);
        }

        .name {
            font-size: 96px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-grow: 1;
            margin-left: 32px;
        }

        .avatar {
            width: 96px;
            height: 96px;
            border-radius: 16px;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .bot-avatar {
            justify-content: center;
            align-items: center;
            font-size: 64px;
            font-weight: 700;
            color: white;
        }

        .wins {
            flex-direction: row;
            align-items: center;
            font-size: 96px;
            font-weight: 700;
            color: #ffcc33;
            min-width: 120px;
            justify-content: flex-end;

            .trophy {
                font-size: 80px;
                margin-right: 16px;
            }

            .count {
                min-width: 60px;
                justify-content: flex-end;
            }
        }
    }

    .launch-number {
        font-size: 1200px;
        font-weight: 900;
        color: #2ecc71;
        width: 100%;
        flex-grow: 1;
        justify-content: center;
        align-items: center;
    }
}